*, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        :root {
            --primary: #4a4a4a;
            --secondary: #8b7355;
            --gold: #c4a876;
            --light: #f8f8f6;
            --border: #e5e5e5;
            --text: #666;
            --text-dark: #4a4a4a;
            --dark-green: #2d3b35;
        
            /* Added for Sales filter UI parity */
            --navy-blue: #1a2332;
            --gold-hover: #b89952;
            --forest-green: #1e3a2f;
            --cream: #f8f6f3;
            --light-gray: #f5f5f5;
            --footer-gray: #f0eeeb;
            --border-gray: #d1d5db;
            --white: #ffffff;
            --text-medium: #6b7280;
            --text-light: #9ca3af;
            
            /* Mobile-specific spacing */
            --mobile-padding: 16px;
            --mobile-header-height: 60px;
            --touch-target-min: 44px;
            
            /* Smooth scrolling for better UX */
            scroll-behavior: smooth;
        }
        
        /* Prevent horizontal scroll on mobile */
        html, body {
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
        }
        
        /* Improved touch behavior */
        @media (hover: none) and (pointer: coarse) {
            * {
                -webkit-tap-highlight-color: rgba(139, 115, 85, 0.2);
            }
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary);
            background: #fff;
            line-height: 1.6;
            font-size: 14px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }
        
        /* Prevent body scroll when modal/menu is open */
        body.no-scroll {
            overflow: hidden;
            position: fixed;
            width: 100%;
            height: 100%;
        }
        
        a { 
            color: inherit; 
            text-decoration: none;
            /* Better touch targets */
            -webkit-touch-callout: none;
        }
        img { 
            max-width: 100%; 
            height: auto;
            /* Prevent image drag on mobile */
            -webkit-user-drag: none;
            user-select: none;
        }
        
        /* Fixed Side Tab - Book Valuation */
        .side-tab {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            background: var(--secondary);
            color: #fff;
            padding: 25px 14px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease, padding 0.3s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            /* Improved touch target */
            min-width: var(--touch-target-min);
            touch-action: manipulation;
        }
        
        .side-tab:hover {
            background: #7a6347;
            padding: 25px 18px;
        }
        
        /* Better touch feedback on mobile */
        @media (hover: none) and (pointer: coarse) {
            .side-tab:active {
                background: #7a6347;
                transform: translateY(-50%) scale(0.98);
            }
        }
        
        /* Hide side tab on very small screens to avoid clutter */
        @media (max-width: 480px) {
            .side-tab {
                padding: 18px 10px;
                font-size: 9px;
                letter-spacing: 1.5px;
            }
        }
        
        /* ==================== HEADER ==================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(30,35,40,0.85);
            z-index: 1000;
            height: 70px;
            transition: background 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        
        /* Prisma partner page: transparent header over hero (OB-style) */
        .header.is-transparent:not(.scrolled) {
            background: transparent;
            border-bottom: 1px solid rgba(255,255,255,0.18);
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

.header.scrolled {
            background: #fff;
            border-bottom: 1px solid var(--border);
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }
        
        .header-left {
            display: flex;
            align-items: center;
            height: 100%;
        }
        
        .hamburger-btn {
            display: flex;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0 25px;
            height: 100%;
            align-items: center;
            justify-content: center;
            border-right: 1px solid rgba(255,255,255,0.25);
            transition: border-color 0.3s ease, background 0.2s ease;
            /* Improved touch target */
            min-width: var(--touch-target-min);
            touch-action: manipulation;
        }
        
        .hamburger-btn:hover {
            background: rgba(255,255,255,0.05);
        }
        
        .header.scrolled .hamburger-btn {
            border-right-color: #ccc;
        }
        
        .header.scrolled .hamburger-btn:hover {
            background: rgba(0,0,0,0.03);
        }
        
        .hamburger-btn span {
            
            width: 24px;
            height: 2px;
            background: #fff;
            transition: background 0.3s ease, transform 0.3s ease;
            border-radius: 1px;
        }
        
        .header.scrolled .hamburger-btn span {
            background: var(--primary);
        }
        
        /* Hamburger animation on active */
        @media (hover: none) and (pointer: coarse) {
            .hamburger-btn:active span {
                background: var(--secondary);
            }
        }
        
        .header-logo-section {
            display: flex;
            align-items: center;
            height: 100%;
            padding: 0 15px;
            border-right: 1px solid rgba(255,255,255,0.25);
            transition: border-color 0.3s ease, background 0.3s ease;
            cursor: pointer;
            touch-action: manipulation;
        }
        
        .header-logo-section:hover {
            background: rgba(255,255,255,0.05);
        }
        
        .header.scrolled .header-logo-section {
            border-right-color: #ccc;
        }
        
        .header.scrolled .header-logo-section:hover {
            background: rgba(0,0,0,0.02);
        }
.logo {
            width: 159.67px;
            height: 59.33px;
            object-fit: contain;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.02);
        }
        
        /* Dark background logo - shown on dark header (homepage) */
        .logo-dark {
            
        }
        
        /* Light background logo - hidden on dark header */
        .logo-light {
            display: none;
        }
        
        /* When scrolled (white header) - swap logos */
        .header.scrolled .logo-dark {
            display: none !important;
        }
        
        

/* Partners page: keep the colored logo on the transparent header (no swap) */
body.is-partners-context .header .logo-dark,
body.is-partners-context .header.scrolled .logo-dark { display: none !important; }

body.is-partners-context .header .logo-light,
body.is-partners-context .header.scrolled .logo-light {
            display: block !important;
        }

        /* FINAL logo swap overrides (wins over page-scoped styles) */
        .header .logo-light { display: none; }
        .header.scrolled .logo-light { display: block !important; }
        .header.scrolled .logo-dark { display: none !important; }
        body.is-partners-context .header .logo-dark { display: none !important; }
        body.is-partners-context .header .logo-light { display: block !important; }


body.is-partners-context .header.is-transparent .nav-links a,
body.is-partners-context .header.is-transparent.scrolled .nav-links a,
body.is-partners-context .header.is-transparent .get-in-touch,
body.is-partners-context .header.is-transparent.scrolled .get-in-touch {
  color: #fff !important;
}

.header.scrolled .logo-light {
            
        }
        
        .slide-menu-logo {
            height: 60px;
        }
        
        .footer-logo {
            height: 60px;
            opacity: 1;
        }
        
        .thank-you-logo {
            height: 90px;
        }
        
        .promo-logo {
            height: 50px;
            object-fit: contain;
        }
        
        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 35px;
            height: 100%;
            padding: 0 30px;
        }
        
        .nav-desktop span {
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 500;
            transition: color 0.3s;
            cursor: pointer;
        }
        
        .header.scrolled .nav-desktop span {
            color: var(--primary);
        }
        
        .nav-desktop span:hover { color: var(--secondary); }
        
        .header-right {
            display: flex;
            align-items: center;
            height: 100%;
            margin-left: auto;
        }
        
        .header-search {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 0 20px;
            border-left: 1px solid rgba(255,255,255,0.25);
            cursor: pointer;
            transition: border-color 0.3s;
        }
        
        .header.scrolled .header-search {
            border-left-color: #ccc;
        }
        
        .header-search svg {
            width: 18px;
            height: 18px;
            stroke: #fff;
            stroke-width: 2;
            fill: none;
            transition: stroke 0.3s;
        }
        
        .header.scrolled .header-search svg {
            stroke: var(--primary);
        }
        
        .header-right .get-in-touch {
            display: flex;
            align-items: center;
            height: 100%;
            padding: 0 25px;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s, border-color 0.3s;
            cursor: pointer;
            border-left: 1px solid rgba(255,255,255,0.25);
        }
        
        .header.scrolled .header-right .get-in-touch {
            color: var(--primary);
            border-left-color: #ccc;
        }
        
        .header-right .get-in-touch:hover {
            color: var(--secondary);
        }
        
        .header-icons {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 20px;
        }
        
        .header-icon {
            position: relative;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .header-icon.email-icon { background: var(--secondary); }
        .header-icon.whatsapp-icon { background: #888; }
        .header-icon:hover { transform: scale(1.05); }
        .header-icon svg { width: 18px; height: 18px; fill: #fff; }
        
        .header-icon .tooltip {
            position: absolute;
            top: 50px;
            right: 0;
            background: #fff;
            border: 1px solid var(--border);
            padding: 10px 15px;
            font-size: 12px;
            color: var(--secondary);
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            z-index: 100;
        }
        
        .header-icon:hover .tooltip {
            opacity: 1;
            visibility: visible;
        }
        
        .lang-toggle {
            font-size: 11px;
            color: #fff;
            cursor: pointer;
            padding: 5px 10px;
            border: 1px solid rgba(255,255,255,0.3);
            background: transparent;
            font-family: inherit;
            transition: all 0.3s;
            margin-right: 20px;
        }
        
        .header.scrolled .lang-toggle {
            color: var(--text);
            border-color: var(--border);
        }

        /* ==================== SLIDE-OUT MENU ==================== */
        .slide-menu {
            position: fixed;
            top: 0;
            left: -450px;
            width: 450px;
            max-width: 90vw;
            height: 100vh;
            height: 100dvh; /* Dynamic viewport height for mobile */
            background: #fff;
            z-index: 3000;
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            overflow-x: hidden;
            box-shadow: 5px 0 30px rgba(0,0,0,0.15);
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
        }
        
        .slide-menu.active {
            left: 0;
        }
        
        .slide-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 2999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
        }
        
        .slide-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .slide-menu-header {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 30px;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            background: #fff;
            z-index: 10;
        }
        
        .slide-menu-close {
            display: flex;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 12px;
            margin: -12px;
            border-radius: 4px;
            transition: background 0.2s ease;
            /* Better touch target */
            min-width: var(--touch-target-min);
            min-height: var(--touch-target-min);
            align-items: center;
            justify-content: center;
            touch-action: manipulation;
        }
        
        .slide-menu-close:hover,
        .slide-menu-close:active {
            background: rgba(0,0,0,0.05);
        }
        
        .slide-menu-close span {
            
            width: 24px;
            height: 2px;
            background: var(--primary);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        
        /* X animation for close button */
        .slide-menu.active .slide-menu-close span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .slide-menu.active .slide-menu-close span:nth-child(2) {
            opacity: 0;
        }
        .slide-menu.active .slide-menu-close span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        
        .slide-menu-logo {
            height: 40px;
        }
        
        .slide-menu-content {
            padding: 30px;
        }
        
        .menu-section {
            margin-bottom: 25px;
        }
        
        .menu-section-title {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .menu-section-title.gold {
            color: var(--gold);
        }
        
        .menu-links span {
            
            padding: 14px 0 14px 20px;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text);
            transition: color 0.3s ease, background 0.2s ease, padding-left 0.3s ease;
            cursor: pointer;
            /* Better touch target */
            min-height: var(--touch-target-min);
            display: flex;
            align-items: center;
            margin: 0 -30px;
            padding-left: 50px;
            padding-right: 30px;
            touch-action: manipulation;
        }
        
        .menu-links span:hover {
            color: var(--secondary);
            background: rgba(139, 115, 85, 0.05);
            padding-left: 55px;
        }
        
        @media (hover: none) and (pointer: coarse) {
            .menu-links span:active {
                color: var(--secondary);
                background: rgba(139, 115, 85, 0.1);
            }
        }
        
        .menu-divider {
            height: 1px;
            background: var(--border);
            margin: 20px 0;
        }
        
        .menu-brand-links {
            margin-bottom: 20px;
        }
        
        .menu-brand-links span {
            
            padding: 10px 0;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
        }
        
        .menu-brand-links span.gold {
            color: var(--gold);
        }
        
        .menu-brand-links span.dark {
            color: var(--primary);
        }
        
        .menu-social {
            display: flex;
            gap: 12px;
            padding: 20px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        
        .menu-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        
        .menu-social a:hover {
            background: #7a6347;
        }
        
        .menu-social svg {
            width: 18px;
            height: 18px;
            fill: #fff;
        }
        
        /* Language Toggle in Menu */
        .menu-lang-toggle {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .lang-option {
            font-size: 13px;
            letter-spacing: 1px;
            color: var(--text);
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .lang-option.active {
            color: var(--text-dark);
            font-weight: 600;
        }
        
        .lang-option:hover {
            color: var(--secondary);
        }
        
        .lang-separator {
            color: var(--border);
        }
        
        .menu-promo {
            display: flex;
            margin-top: 25px;
            border: 1px solid var(--border);
        }
        
        .menu-promo-logo {
            width: 130px;
            min-height: 130px;
            background: var(--dark-green);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            flex-shrink: 0;
        }
        
        .menu-promo-logo.menu-promo-logo-light {
            background: #fff;
            border-right: 1px solid var(--border);
        }
        
        .menu-promo-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .menu-promo-content {
            padding: 15px 20px;
            flex: 1;
        }
        
        .menu-promo-title {
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--secondary);
            margin-bottom: 5px;
        }
        
        .menu-promo-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 3px;
        }
        
        .menu-promo-coming {
            font-style: italic;
            font-size: 13px;
            color: var(--text);
            margin-bottom: 10px;
        }
        
        .menu-promo-link {
            font-size: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--primary);
            text-decoration: underline;
        }

        /* ==================== HOME PAGE ==================== */
        .home-hero {
            position: relative;
            z-index: 0;
            height: 100vh;
            min-height: 700px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            overflow: hidden;
            padding: 0 60px;
            background-image: url("../images/hero-bg.jpg");
            background-size: cover;
            background-position: center;
            background-color: #000;
        }
        
        .home-hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 0;
            object-fit: cover;
            /* Improve video quality rendering */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
                    pointer-events: none;
        }

        
        .home-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }
        
        
        /* Mobile/autoplay fallback for hero video */
        .hero-video-play{
            position:absolute;
            inset:auto auto 30px 30px;
            z-index:3;
            display:none;
            align-items:center;
            justify-content:center;
            padding:12px 16px;
            border:1px solid rgba(255,255,255,0.55);
            background:rgba(0,0,0,0.35);
            color:#fff;
            font-size:14px;
            letter-spacing:0.02em;
            border-radius:10px;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            cursor:pointer;
        }
        body.hero-video-needs-play .hero-video-play{ display:flex; }
        @media (max-width: 768px){
            .hero-video-play{ display:flex; }
            body.hero-video-playing .hero-video-play{ display:none; }
        }
        
.home-hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
            max-width: 700px;
            padding-top: 70px;
        }
        
        .home-hero-welcome {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 5px;
        }
        
        .home-hero-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 300;
            font-style: italic;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
        }
        
        .home-hero-desc {
            font-size: 15px;
            line-height: 1.9;
            font-weight: 300;
            opacity: 0.95;
            max-width: 550px;
        }
        
        /* Search Bar */
        .search-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            padding: 25px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .search-bar-content {
            flex: 1;
        }
        
        .search-bar-label {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text);
            margin-bottom: 5px;
        }
        
        .search-bar-text {
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--primary);
            font-weight: 500;
        }
        
        .search-bar-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .search-bar-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary);
            stroke-width: 2;
            fill: none;
        }
        
        /* Home About Section */
        .home-about {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 100px 50px;
            align-items: center;
        }
        
        .home-about-content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 30px;
            line-height: 1.2;
        }
        
        .home-about-content p {
            font-size: 15px;
            line-height: 1.9;
            color: var(--text);
            margin-bottom: 30px;
        }
        
        .home-about-btn {
            display: inline-block;
            padding: 14px 35px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            border: 1px solid var(--primary);
            color: var(--primary);
            transition: all 0.3s;
        }
        
        .home-about-btn:hover {
            background: var(--primary);
            color: #fff;
        }
        
        .home-about-image {
            position: relative;
        }
        
        .home-about-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            mask-image: radial-gradient(ellipse 90% 90% at center, black 60%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 90% 90% at center, black 60%, transparent 100%);
        }
        
        /* DISCOVER Section - OB Private Style */
        .discover-section {
            padding: 0 50px 80px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .discover-header {
            padding: 60px 0 50px;
            position: relative;
        }
        
        .discover-header::after {
            content: '';
            position: absolute;
            top: 75px;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--border);
        }
        
        .discover-label {
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--secondary);
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        
        .discover-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .discover-card {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            transition: transform 0.3s ease;
            touch-action: manipulation;
        }
        
        .discover-card:hover {
            transform: translateY(-3px);
        }
        
        @media (hover: none) and (pointer: coarse) {
            .discover-card:hover {
                transform: none;
            }
            .discover-card:active {
                transform: scale(0.98);
            }
        }
        
        .discover-card-image {
            background: #f5f3f0;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 350px;
            margin-bottom: 25px;
            border-radius: 8px;
            overflow: hidden;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }
        
        .discover-card:hover .discover-card-image,
        .discover-card:active .discover-card-image {
            background: #e8e6e3;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .discover-card-image img {
            max-width: 100%;
            max-height: 280px;
            object-fit: contain;
            border-radius: 8px;
            mask-image: radial-gradient(ellipse 95% 95% at center, black 70%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 95% 95% at center, black 70%, transparent 100%);
            transition: filter 0.3s ease, transform 0.4s ease;
        }
        
        .discover-card:hover .discover-card-image img,
        .discover-card:active .discover-card-image img {
            filter: brightness(0.9) contrast(1.05);
            transform: scale(1.02);
        }
        
        .discover-card h3 {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }
        
        .discover-card:hover h3 {
            color: var(--secondary);
        }
        
        .discover-card p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text);
        }
        
        /* Home Services Section */
        .home-services {
            background: var(--light);
            padding: 100px 50px;
        }
        
        .home-services-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .home-services-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 15px;
        }
        
        .home-services-header p {
            font-size: 14px;
            color: var(--text);
            line-height: 1.7;
        }
        
        .home-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .service-card {
            background: #fff;
            padding: 50px 35px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
            border: 1px solid transparent;
            border-radius: 4px;
            touch-action: manipulation;
        }
        
        .service-card:hover {
            border-color: var(--secondary);
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        
        @media (hover: none) and (pointer: coarse) {
            .service-card:hover {
                transform: none;
                box-shadow: none;
            }
            .service-card:active {
                transform: scale(0.98);
                border-color: var(--secondary);
                box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            }
        }
        
        .service-card-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 25px;
            stroke: var(--secondary);
            stroke-width: 1.5;
            fill: none;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover .service-card-icon {
            transform: scale(1.1);
        }
        
        .service-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 15px;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }
        
        .service-card:hover h3 {
            color: var(--secondary);
        }
        
        .service-card p {
            font-size: 13px;
            line-height: 1.8;
            color: var(--text);
        }
        
        /* Home CTA Section */
        .home-cta {
            padding: 100px 50px;
            text-align: center;
            background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 100%);
            color: #fff;
        }
        
        .home-cta h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 400;
            margin-bottom: 20px;
        }
        
        .home-cta p {
            font-size: 14px;
            max-width: 600px;
            margin: 0 auto 30px;
            opacity: 0.9;
            line-height: 1.7;
        }
        
        .home-cta-btn {
            display: inline-block;
            padding: 16px 45px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            background: var(--secondary);
            color: #fff;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .home-cta-btn:hover {
            background: #a08567;
        }

        /* ==================== CONTACT PAGE ==================== */
        .hero {
            padding: 120px 30px 50px;
            background: #fff;
        }
        
        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 6vw, 52px);
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: -5px;
            line-height: 1.1;
        }
        
        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 300;
            font-style: italic;
            color: var(--text);
            margin-top: 0;
            line-height: 1.1;
        }
        
        .main-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 40px 30px 60px;
        }
        
        .form-section h2 {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text);
            margin-bottom: 25px;
        }
        
        .form { display: flex; flex-direction: column; gap: 0; }
        
        .form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 0;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 18px 20px;
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid var(--border);
            border-bottom: none;
            font-family: inherit;
            background: #fff;
            transition: border-color 0.3s;
            width: 100%;
            color: var(--text);
        }
        
        .form-group:last-of-type input,
        .form-group:last-of-type select,
        .form-group:last-of-type textarea {
            border-bottom: 1px solid var(--border);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text);
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 1px;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            position: relative;
            z-index: 1;
        }
        
        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 18px center;
            cursor: pointer;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
            border-bottom: 1px solid var(--border);
        }
        
        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 25px;
        }
        
        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 11px;
            color: var(--text);
            cursor: pointer;
            line-height: 1.6;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .checkbox-label input {
            width: 14px;
            height: 14px;
            margin-top: 2px;
            accent-color: var(--secondary);
            flex-shrink: 0;
        }
        
        .submit-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 500;
            background: var(--secondary);
            color: #fff;
            border: none;
            cursor: pointer;
            font-family: inherit;
            margin-top: 30px;
            transition: background 0.3s;
            width: fit-content;
        }
        
        .submit-btn:hover { background: #7a6347; }
        
        .office-section {
            background: var(--light);
            padding: 30px;
            height: fit-content;
        }
        
        .office-section h2 {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border);
        }
        
        .office-card {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border);
        }
        
        .office-image {
            width: 110px;
            height: 110px;
            object-fit: cover;
            flex-shrink: 0;
        }
        
        .office-details h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        
        .office-address {
            font-size: 13px;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 12px;
        }
        
        .office-contact a {
            
            font-size: 13px;
            color: var(--text-dark);
            margin-bottom: 5px;
            transition: color 0.3s;
            text-decoration: underline;
        }
        
        .office-contact a:hover { color: var(--secondary); }
        
        .office-hours {
            font-size: 12px;
            color: var(--text);
            margin-top: 12px;
        }

        /* ==================== VALUATION PAGE ==================== */
        .valuation-hero {
            position: relative;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 150px 30px 80px;
            background-size: cover;
            background-position: center top;
        }
        
        .valuation-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.65) 100%);
        }
        
        .valuation-hero-content {
            position: relative;
            z-index: 1;
            max-width: 750px;
        }
        
        .valuation-hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 500;
            margin-bottom: 10px;
            color: #2a2a2a;
            text-shadow: 0 1px 2px rgba(255,255,255,0.5);
        }
        
        .valuation-hero .valuation-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 400;
            font-style: italic;
            color: #5a4a3a;
            margin-bottom: 25px;
            text-shadow: 0 1px 2px rgba(255,255,255,0.5);
        }
        
        .valuation-hero p {
            font-size: 14px;
            line-height: 1.9;
            color: #3a3a3a;
            text-shadow: 0 1px 1px rgba(255,255,255,0.4);
        }
        
        .valuation-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 50px 30px;
        }
        
        .valuation-image-side img {
            width: 100%;
            max-width: 480px;
            position: sticky;
            top: 100px;
        }
        
        .valuation-intro {
            background: var(--light);
            padding: 25px;
            margin-bottom: 30px;
            font-size: 14px;
            font-style: italic;
            color: var(--text);
            line-height: 1.8;
            border-left: 3px solid var(--secondary);
        }

        /* Footer */
        .footer-newsletter {
            background: #fff;
            padding: 40px 50px;
            border-bottom: 1px solid var(--border);
        }
        
        .footer-newsletter-content {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }
        
        .footer-newsletter-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            color: var(--text-dark);
        }
        
        .footer-newsletter-btn {
            padding: 14px 40px;
            background: var(--secondary);
            color: #fff;
            font-size: 11px;
            letter-spacing: 1.5px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            white-space: nowrap;
            /* Better touch target */
            min-height: var(--touch-target-min);
        }
        
        .footer-newsletter-btn:hover {
            background: #7a6347;
        }
        
        @media (hover: none) and (pointer: coarse) {
            .footer-newsletter-btn:active {
                background: #7a6347;
                transform: scale(0.98);
            }
        }
        
        .footer {
            padding: 60px 50px 0;
            background: var(--light);
        }
        
        .footer-main {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 180px 1fr 180px;
            gap: 40px;
            padding-bottom: 40px;
        }
        
        .footer-logo-section {
            display: flex;
            flex-direction: column;
        }
        
        .footer-logo { 
            height: 80px; 
            width: auto;
            object-fit: contain;
        }
        
        .footer-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            border-left: 1px solid var(--border);
            padding-left: 40px;
        }
        
        .footer-column {
            text-align: left;
        }
        
        .footer-column-title {
            font-size: 12px;
            letter-spacing: 2px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .footer-column-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .footer-column-links span,
        .footer-column-links a {
            font-size: 12px;
            color: var(--text);
            cursor: pointer;
            transition: color 0.3s ease;
            text-decoration: none;
            
            /* Better touch target */
            padding: 4px 0;
        }
        
        .footer-column-links span:hover,
        .footer-column-links a:hover {
            color: var(--secondary);
        }
        
        .footer-social-row {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 25px 0;
            border-top: 1px solid var(--border);
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease, transform 0.2s ease;
            /* Better touch target */
            min-width: var(--touch-target-min);
            min-height: var(--touch-target-min);
        }
        
        .footer-social a:hover {
            background: #7a6347;
            transform: scale(1.05);
        }
        
        @media (hover: none) and (pointer: coarse) {
            .footer-social a:active {
                background: #7a6347;
                transform: scale(0.95);
            }
        }
        
        .footer-social svg {
            width: 18px;
            height: 18px;
            fill: #fff;
        }
        
        /* Partner Logos Inline (under GHDR PROPERTY SERVICES) */
        .footer-partners-inline {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-top: 25px;
            flex-wrap: wrap;
        }
        
        .footer-partner-logo {
            display: flex;
            align-items: center;
            transition: opacity 0.3s ease;
        }
        
        .footer-partner-logo:hover {
            opacity: 0.7;
        }
        
        .footer-partner-logo img {
            height: 35px;
            object-fit: contain;
        }
        
        .footer-acho {
            display: flex;
            align-items: center;
        }
        
        .footer-acho img {
            height: 35px;
            object-fit: contain;
        }
        
        /* ACHO logo language switching */
        .acho-logo.acho-es {
            display: none;
        }
        
        body.lang-es .acho-logo.acho-en {
            display: none;
        }
        
        body.lang-es .acho-logo.acho-es {
            
        }
        
        .footer-right {
            display: flex;
            flex-direction: column;
        }
        
        .footer-right .footer-column-title {
            text-align: left;
        }
        
        .footer-right .footer-column-links span {
            text-align: left;
        }
        
        .footer-bottom {
            max-width: 1300px;
            margin: 0 auto;
            padding: 20px 0;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-copyright {
            font-size: 11px;
            color: var(--text);
            letter-spacing: 0.5px;
        }
        
        .footer-made-by {
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            color: var(--text);
            font-size: 11px;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }
        
        .footer-made-by:hover {
            color: var(--text-dark);
        }
        
        .footer-made-by img {
            height: 16px;
            object-fit: contain;
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 3000;
            padding: 20px;
        }
        
        .modal-overlay.active { display: flex; }
        
        .modal {
            background: #fff;
            padding: 40px;
            max-width: 400px;
            width: 100%;
            text-align: center;
        }
        
        .modal-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            margin-bottom: 15px;
        }
        
        .modal-text {
            font-size: 13px;
            color: var(--text);
            margin-bottom: 20px;
        }
        
        .modal input {
            width: 100%;
            padding: 14px;
            font-size: 16px;
            text-align: center;
            letter-spacing: 3px;
            border: 1px solid var(--border);
            margin-bottom: 15px;
            font-family: inherit;
        }
        
        .modal-btn {
            width: 100%;
            padding: 14px;
            background: var(--secondary);
            color: #fff;
            border: none;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            font-family: inherit;
            margin-bottom: 10px;
        }
        
        .modal-cancel {
            background: none;
            border: none;
            color: var(--text);
            cursor: pointer;
            font-size: 12px;
        }
        
        .code-display {
            background: var(--light);
            padding: 15px;
            margin-bottom: 20px;
            font-family: monospace;
            font-size: 18px;
            letter-spacing: 4px;
            color: var(--secondary);
        }

        /* Thank You */
        .thank-you-page {
            min-height: 100vh;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 40px;
            text-align: center;
        }
        
        .thank-you-page.active { display: flex; }
        .thank-you-content { max-width: 500px; }
        .thank-you-logo { height: 70px; margin-bottom: 40px; }
        .thank-you-icon { margin-bottom: 30px; }
        
        .thank-you-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .thank-you-text {
            font-size: 14px;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .confirmation-box {
            background: var(--light);
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .return-btn {
            padding: 14px 35px;
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.3s;
        }
        
        .return-btn:hover {
            background: var(--primary);
            color: #fff;
        }

        /* Page visibility */
        .page { display: none; }
        .page.active { display: block; }

        /* Back to Top & Back Navigation Buttons */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            /* Better touch target */
            min-width: var(--touch-target-min);
            min-height: var(--touch-target-min);
            touch-action: manipulation;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: #7a6347;
            transform: translateY(-3px) scale(1.05);
        }
        
        @media (hover: none) and (pointer: coarse) {
            .back-to-top:hover {
                transform: none;
            }
            .back-to-top:active {
                transform: scale(0.95);
                background: #7a6347;
            }
        }
        
        .back-to-top svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }
        
        /* Back Navigation Button */
        .back-nav {
            position: fixed;
            bottom: 90px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .back-nav.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-nav:hover {
            background: #1a3a4a;
            transform: translateX(-3px);
        }
        
        .back-nav svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }

        /* ==================== COMPLIANCE PAGE ==================== */
        .compliance-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 140px 40px 80px;
        }
        
        .compliance-title {
            font-family: var(--font-heading);
            font-size: 38px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 15px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border);
        }
        
        .compliance-list {
            margin-top: 20px;
        }
        
        .compliance-item {
            padding: 35px 0;
            border-bottom: 1px solid var(--border);
        }
        
        .compliance-item h3 {
            font-size: 15px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 12px;
            line-height: 1.5;
        }
        
        .compliance-link {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--secondary);
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color 0.3s;
            cursor: pointer;
        }
        
        .compliance-link:hover {
            color: #7a6347;
        }
        
        /* Language-specific items */
        .compliance-en-only {
            
        }
        
        body.lang-es .compliance-en-only {
            display: none;
        }
        
        .compliance-es-only {
            display: none;
        }
        
        body.lang-es .compliance-es-only {
            
        }

        /* ==================== COOKIE CONSENT ==================== */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 380px;
            background: #fff;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            z-index: 10000;
            padding: 25px;
            display: none;
        }
        
        .cookie-banner.active {
            
        }
        
        .cookie-banner h4 {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        
        .cookie-banner p {
            font-size: 12px;
            line-height: 1.6;
            color: var(--text);
            margin-bottom: 18px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 10px 16px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: inherit;
        }
        
        .cookie-btn-outline {
            background: #fff;
            border: 1px solid #ccc;
            color: var(--text-dark);
        }
        
        .cookie-btn-outline:hover {
            border-color: var(--text-dark);
        }
        
        .cookie-btn-filled {
            background: var(--secondary);
            border: 1px solid var(--secondary);
            color: #fff;
        }
        
        .cookie-btn-filled:hover {
            background: #7a6347;
        }
        
        /* Cookie Modal */
        .cookie-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 10001;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .cookie-modal-overlay.active {
            display: flex;
        }
        
        .cookie-modal {
            background: #fff;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
        }
        
        .cookie-modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text);
        }
        
        .cookie-modal h3 {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--text-dark);
            margin-bottom: 20px;
            padding-right: 30px;
        }
        
        .cookie-modal-intro {
            font-size: 12px;
            line-height: 1.6;
            color: var(--text);
            margin-bottom: 10px;
        }
        
        .cookie-show-more {
            color: var(--primary);
            text-decoration: underline;
            cursor: pointer;
            font-weight: 500;
        }
        
        .cookie-category {
            border-top: 1px solid var(--border);
            padding: 15px 0;
        }
        
        .cookie-category-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .cookie-arrow {
            font-size: 14px;
            color: var(--text);
            cursor: pointer;
        }
        
        .cookie-category-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            flex: 1;
        }
        
        .cookie-always-active {
            font-size: 11px;
            font-weight: 600;
            color: #22c55e;
            letter-spacing: 0.5px;
        }
        
        .cookie-category-desc {
            font-size: 11px;
            line-height: 1.6;
            color: var(--text);
            padding-left: 20px;
        }
        
        /* Toggle Switch */
        .cookie-toggle {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
        }
        
        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .cookie-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.3s;
            border-radius: 24px;
        }
        
        .cookie-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }
        
        .cookie-toggle input:checked + .cookie-slider {
            background-color: var(--secondary);
        }
        
        .cookie-toggle input:checked + .cookie-slider:before {
            transform: translateX(20px);
        }
        
        .cookie-modal-buttons {
            display: flex;
            gap: 10px;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
        
        .cookie-powered {
            text-align: right;
            font-size: 10px;
            color: var(--text);
            margin-top: 15px;
        }
        
        @media (max-width: 768px) {
            .cookie-banner {
                left: 10px;
                right: 10px;
                bottom: 10px;
                width: auto;
            }
            
            .cookie-buttons {
                flex-wrap: wrap;
            }
            
            .cookie-btn {
                flex: 1;
                min-width: calc(50% - 5px);
            }
            
            .cookie-modal-buttons {
                flex-wrap: wrap;
            }
            
            .cookie-modal-buttons .cookie-btn {
                flex: 1;
                min-width: calc(50% - 5px);
            }
        }

        /* ==================== RESPONSIVE ==================== */
        .header-right-mobile {
            display: none;
        }
        
        @media (max-width: 1200px) {
            .nav-desktop { display: none; }
            .header-search { display: none; }
            .header-right .get-in-touch { display: none; }
            .header-icons { display: none; }
            
            .header-right-mobile {
                display: flex;
                align-items: center;
                height: 100%;
                margin-left: auto;
            }
            
            .get-in-touch-mobile {
                display: flex;
                align-items: center;
                height: 100%;
                padding: 0 20px;
                font-size: 11px;
                letter-spacing: 1.5px;
                text-transform: uppercase;
                color: #fff;
                font-weight: 500;
                text-decoration: none;
                border-left: 1px solid rgba(255,255,255,0.25);
                transition: color 0.3s ease, border-color 0.3s ease, background 0.2s ease;
                cursor: pointer;
                /* Better touch target */
                min-width: var(--touch-target-min);
                touch-action: manipulation;
            }
            
            .get-in-touch-mobile:hover,
            .get-in-touch-mobile:active {
                background: rgba(255,255,255,0.1);
            }
            
            .header.scrolled .get-in-touch-mobile {
                color: var(--primary);
                border-left-color: #ccc;
            }
            
            .header.scrolled .get-in-touch-mobile:hover,
            .header.scrolled .get-in-touch-mobile:active {
                background: rgba(0,0,0,0.05);
                color: var(--secondary);
            }
            
            .home-about {
                grid-template-columns: 1fr;
                gap: 50px;
                padding: 80px 30px;
            }
            
            .home-about-image {
                order: -1;
                text-align: center;
            }
            
            .home-services-grid { grid-template-columns: repeat(2, 1fr); }
            
            .discover-section {
                padding: 0 30px 60px;
            }
            
            .discover-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }
        
        @media (max-width: 1024px) {
            .main-content { grid-template-columns: 1fr; gap: 40px; }
            .valuation-content { grid-template-columns: 1fr; }
            .valuation-image-side { display: none; }
            
            /* Tablet footer - 2 columns instead of 3 */
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            
            .footer-logo-section {
                grid-column: 1 / -1;
                align-items: center;
                text-align: center;
                padding-bottom: 30px;
                border-bottom: 1px solid var(--border);
            }
            
            .footer-columns {
                border-left: none;
                padding-left: 0;
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-right {
                grid-column: 1 / -1;
                text-align: center;
                align-items: center;
                padding-top: 20px;
                border-top: 1px solid var(--border);
            }
        }
        
        /* ==================== MOBILE STYLES (768px and below) ==================== */
        @media (max-width: 768px) {
            .header { 
                height: var(--mobile-header-height);
            }
            
            .hamburger-btn {
                padding: 0 var(--mobile-padding);
                border-right: 1px solid rgba(255,255,255,0.25);
                /* Ensure minimum touch target */
                min-width: 50px;
            }
            
            .header.scrolled .hamburger-btn {
                border-right-color: #ccc;
            }
            
            .header-logo-section {
                padding: 0 12px;
                border-right: 1px solid rgba(255,255,255,0.25);
            }
            
            .header.scrolled .header-logo-section {
                border-right-color: #ccc;
            }
.logo {
            width: 159.67px;
            height: 59.33px;
            object-fit: contain;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
            
            .get-in-touch-mobile {
                padding: 0 var(--mobile-padding);
                font-size: 10px;
                border-left: 1px solid rgba(255,255,255,0.25);
                /* Minimum touch target */
                min-width: var(--touch-target-min);
            }
            
            .header.scrolled .get-in-touch-mobile {
                border-left-color: #ccc;
            }
            
            .home-hero { 
                padding: 0 var(--mobile-padding); 
                min-height: 100vh;
                min-height: 100dvh; /* Dynamic viewport for mobile */
            }
            
            /* Fix video background for mobile */
            .home-hero-video {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                transform: none;
            }
            
            .home-hero-content {
                padding-top: calc(var(--mobile-header-height) + 20px);
            }
            
            .home-hero-welcome {
                font-size: clamp(28px, 8vw, 36px);
            }
            
            .home-hero-tagline {
                font-size: clamp(20px, 6vw, 28px);
            }
            
            .home-hero-desc {
                font-size: 14px;
                line-height: 1.7;
            }
            
            .search-bar { 
                padding: 15px var(--mobile-padding);
                position: relative;
            }
            
            .discover-section {
                padding: 0 var(--mobile-padding) 40px;
            }
            
            .discover-header {
                padding: 40px 0 30px;
            }
            
            .discover-header::after {
                top: 55px;
            }
            
            .discover-card-image {
                padding: 25px;
                min-height: 220px;
            }
            
            .discover-card-image img {
                max-height: 180px;
            }
            
            /* Better touch feedback for discover cards */
            .discover-card {
                transition: transform 0.2s ease;
            }
            
            .discover-card:active {
                transform: scale(0.98);
            }
            
            .home-services { 
                padding: 50px var(--mobile-padding); 
            }
            .home-services-grid { 
                grid-template-columns: 1fr; 
                gap: 25px;
            }
            
            .service-card {
                padding: 35px 25px;
            }
            
            .home-cta { 
                padding: 50px var(--mobile-padding); 
            }
            
            .hero { 
                padding: calc(var(--mobile-header-height) + 30px) var(--mobile-padding) 30px; 
            }
            .main-content { 
                padding: 25px var(--mobile-padding); 
            }
            
            .office-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .office-image { 
                width: 140px; 
                height: 140px; 
                border-radius: 8px;
            }
            
            /* ==================== MOBILE FOOTER - OB PRIVATE STYLE ==================== */
            .footer-main { 
                grid-template-columns: 1fr;
                gap: 0;
                text-align: left;
            }
            
            /* Logo section on mobile */
            .footer-logo-section {
                align-items: flex-start;
                padding-bottom: 30px;
                margin-bottom: 0;
                border-bottom: 1px solid var(--border);
            }
            
            .footer-logo {
                height: 70px;
            }
            
            /* Footer columns - stacked on mobile like OB Private */
            .footer-columns {
                grid-template-columns: 1fr;
                gap: 0;
                border-left: none;
                padding-left: 0;
                border-top: none;
                padding-top: 0;
            }
            
            .footer-column {
                text-align: left;
                padding: 25px 0;
                border-bottom: 1px solid var(--border);
            }
            
            .footer-column:last-child {
                border-bottom: none;
            }
            
            .footer-column-title {
                font-size: 13px;
                letter-spacing: 1.5px;
                margin-bottom: 18px;
            }
            
            .footer-column-links {
                gap: 0;
            }
            
            .footer-column-links span,
            .footer-column-links a {
                font-size: 13px;
                padding: 10px 0;
                
                /* Ensure full-width touch target */
                margin: 0 -20px;
                padding-left: 20px;
                padding-right: 20px;
            }
            
            .footer-column-links span:active,
            .footer-column-links a:active {
                background: rgba(139, 115, 85, 0.05);
                color: var(--secondary);
            }
            
            /* Right column (GH Circle) on mobile */
            .footer-right {
                align-items: flex-start;
                padding: 25px 0;
                border-bottom: 1px solid var(--border);
            }
            
            .footer-right .footer-column-title,
            .footer-right .footer-column-links span {
                text-align: left;
            }
            
            .footer-right .footer-column-links span {
                padding: 10px 0;
                margin: 0 -20px;
                padding-left: 20px;
                padding-right: 20px;
            }
            
            /* Social icons row on mobile */
            .footer-social-row {
                flex-direction: column;
                gap: 0;
                padding: 30px 0;
            }
            
            .footer-social {
                gap: 15px;
            }
            
            .footer-social a {
                width: 44px;
                height: 44px;
            }
            
            .footer-social svg {
                width: 20px;
                height: 20px;
            }
            
            /* Partner logos on mobile */
            .footer-partners-inline {
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 20px;
                margin-top: 20px;
            }
            
            .footer-partner-logo img {
                height: 30px;
            }
            
            /* Newsletter section on mobile */
            .footer-newsletter-content {
                flex-direction: column;
                text-align: left;
                gap: 15px;
            }
            
            /* Footer bottom on mobile */
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
                padding: 25px 0;
            }
            
            .footer-copyright {
                font-size: 10px;
                order: 2;
            }
            
            .footer-made-by {
                order: 1;
            }
            
            /* Footer and newsletter section padding on mobile */
            .footer {
                padding: 40px var(--mobile-padding) 0;
            }
            
            .footer-newsletter {
                padding: 30px var(--mobile-padding);
            }
            
            .footer-newsletter-text {
                font-size: 18px;
                text-align: left;
            }
            
            .footer-newsletter-btn {
                width: 100%;
                text-align: center;
                padding: 16px 30px;
            }
            
            .valuation-hero { 
                min-height: 320px; 
                padding: calc(var(--mobile-header-height) + 50px) var(--mobile-padding) 50px; 
            }
            
            .side-tab { 
                padding: 18px 10px; 
                font-size: 9px; 
            }
            
            .back-to-top { 
                width: var(--touch-target-min); 
                height: var(--touch-target-min); 
                bottom: 20px; 
                left: 20px; 
            }
            .back-nav { 
                width: var(--touch-target-min); 
                height: var(--touch-target-min); 
                bottom: 75px; 
                left: 20px; 
            }
            
            .compliance-content { 
                padding: calc(var(--mobile-header-height) + 50px) var(--mobile-padding) 50px; 
            }
            .compliance-title { 
                font-size: clamp(26px, 7vw, 32px); 
            }
            
            .slide-menu { 
                width: 100%; 
                left: -100%; 
            }
            
            /* Form improvements for mobile */
            .form-group input,
            .form-group select,
            .form-group textarea {
                font-size: 16px; /* Prevents zoom on iOS */
                padding: 16px;
            }
            
            .submit-btn {
                width: 100%;
                padding: 16px 30px;
                font-size: 13px;
            }
        }
        
        /* Extra small screens (480px and below) */
        @media (max-width: 480px) {
            :root {
                --mobile-padding: 12px;
            }
            
            .home-hero-welcome {
                font-size: clamp(24px, 7vw, 30px);
            }
            
            .home-hero-tagline {
                font-size: clamp(18px, 5vw, 24px);
            }
            
            .home-hero-desc {
                font-size: 13px;
            }
            
            .home-cta h2 {
                font-size: clamp(22px, 6vw, 28px);
            }
            
            .service-card h3 {
                font-size: 20px;
            }
            
            .discover-card h3 {
                font-size: 11px;
            }
            
            .discover-card p {
                font-size: 13px;
            }
        }
        
        /* iOS video fix */
        @supports (-webkit-touch-callout: none) {
            .home-hero-video {
                position: absolute;
                top: 50%;
                left: 50%;
                min-width: 100%;
                min-height: 100%;
                width: auto;
                height: auto;
                transform: translate(-50%, -50%);
            }
        }
        
        .hidden { display: none !important; }
    

/* ==================== PARTNERS PAGE (OB PRIVATE STYLE) ==================== */
#partnersPage {
    background: #fff;
}

/* Featured Partner Hero - Full Width Image with Overlay */
.partners-featured-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.partners-featured-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partners-featured-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

.partners-featured-hero-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 3;
    color: #fff;
    max-width: 550px;
}

.partners-featured-hero-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.partners-featured-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.2;
}

.partners-featured-hero-desc {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 25px;
}

.partners-featured-hero-link {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 14px 35px;
    transition: all 0.3s;
    cursor: pointer;
}

.partners-featured-hero-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* Partners Intro Section - OB PARTNERS Header */
.partners-intro-section {
    text-align: left;
    padding: 60px 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.partners-intro-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 20px;
}

.partners-intro-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    max-width: 700px;
}

/* Partners Section Title */
.partners-section-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto 30px;
}

/* Partners Grid - Key Partners (3 columns like OB Private) */
.partners-key-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

@media (max-width: 1024px) {
    .partners-key-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .partners-key-grid { grid-template-columns: 1fr; }
}

/* Partner Card with Image - OB Private Style */
.partner-image-card {
    
    text-decoration: none;
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s;
}

.partner-image-card:hover {
    transform: translateY(-5px);
}

.partner-image-wrapper {
    position: relative;
    aspect-ratio: 5/6;
    overflow: hidden;
}

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

.partner-image-card:hover .partner-image-wrapper img {
    transform: scale(1.05);
}

.partner-card-content {
    padding: 25px 0 15px;
}

.partner-card-category {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 8px;
}

.partner-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.partner-card-desc {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.partner-card-link {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: underline;
    transition: color 0.3s;
}

.partner-card-link:hover {
    color: var(--secondary);
}

/* Video Feature Section - OB Private Style */
.partners-video-feature {
    position: relative;
    height: 500px;
    margin: 60px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.partners-video-feature video,
.partners-video-feature-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.partners-video-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.partners-video-content {
    position: relative;
    z-index: 3;
    padding: 0 60px;
    max-width: 550px;
    color: #fff;
}

.partners-video-category {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.partners-video-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    margin-bottom: 15px;
}

.partners-video-desc {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
}

.partners-video-link {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 14px 30px;
    transition: all 0.3s;
    cursor: pointer;
}

.partners-video-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* More Partners Grid - 3 columns like OB Private */
.partners-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

@media (max-width: 1024px) {
    .partners-more-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .partners-more-grid { grid-template-columns: 1fr; }
}

/* Simple Partner Card (same style as key partners) */
.partner-simple-card {
    
    text-decoration: none;
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s;
}

.partner-simple-card:hover {
    transform: translateY(-5px);
}

.partner-simple-image {
    aspect-ratio: 5/6;
    overflow: hidden;
}

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

.partner-simple-card:hover .partner-simple-image img {
    transform: scale(1.05);
}

.partner-simple-content {
    padding: 25px 0 15px;
}

.partner-simple-category {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 8px;
}

.partner-simple-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.partner-simple-desc {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 12px;
}

.partner-simple-link {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: underline;
    transition: color 0.3s;
    cursor: pointer;
}

.partner-simple-link:hover {
    color: var(--secondary);
}

/* Become a Partner CTA Section - OB Private Style */
.partners-cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 80px 0 0;
    background: var(--navy-blue);
    min-height: 450px;
}

.partners-cta-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.partners-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
}

.partners-cta-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}

.partners-cta-desc {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 500px;
}

.partners-cta-btn {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 16px 40px;
    transition: all 0.3s;
    cursor: pointer;
    background: none;
}

.partners-cta-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.partners-cta-image {
    position: relative;
    overflow: hidden;
}

.partners-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder for Partner Images */
.partner-placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    background: linear-gradient(135deg, #2d3b45 0%, #4a5d52 100%);
}

/* Partners Page Mobile Responsive */
@media (max-width: 1024px) {
    .partners-featured-hero-content {
        left: 40px;
        bottom: 40px;
        max-width: 450px;
    }
    
    .partners-intro-section,
    .partners-section-title,
    .partners-key-grid,
    .partners-more-grid {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .partners-video-content {
        padding: 0 40px;
    }
    
    .partners-cta-content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .partners-featured-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .partners-featured-hero-content {
        left: 20px;
        right: 20px;
        bottom: 30px;
        max-width: none;
    }
    
    .partners-featured-hero-title {
        font-size: 28px;
    }
    
    .partners-featured-hero-desc {
        font-size: 14px;
    }
    
    .partners-intro-section,
    .partners-section-title,
    .partners-key-grid,
    .partners-more-grid {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .partners-intro-section {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    
    .partners-video-feature {
        height: 400px;
    }
    
    .partners-video-content {
        padding: 0 20px;
    }
    
    .partners-video-title {
        font-size: 26px;
    }
    
    .partners-cta-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .partners-cta-content {
        padding: 50px 20px;
        text-align: center;
    }
    
    .partners-cta-btn {
        margin: 0 auto;
    }
    
    .partners-cta-image {
        aspect-ratio: 4/3;
        order: -1;
    }
}




/* ==================== PARTNER DETAIL PAGE ==================== */
/* Partner Detail Page - OB Private VOZA Style */
#prismaPage, #catrainVegaPage, #capCanaPage, #\32 ndHomePage {
    padding-top: 0;
    background: #fff;
    /* Used to align the contact card to the hero, OB Private-style */
    --partner-hero-h: clamp(400px, 60vh, 550px);
}

.partner-detail-hero {
    position: relative;
    width: 100%;
    height: var(--partner-hero-h);
    overflow: hidden;
}

.partner-detail-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.partner-detail-hero-content {
    position: absolute;
    bottom: 50px;
    left: 60px;
    z-index: 2;
    color: #fff;
}

.partner-detail-hero-category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.partner-detail-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
}


/* 2nd HOME: slightly smaller hero title */
#\32 ndHomePage .partner-detail-hero-title {
    font-size: clamp(30px, 1vw, 50px);
}
/* Partner Detail Content Section */
.partner-detail-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 80px;
}

.partner-detail-main {
    padding-top: 70px;
    padding-right: 20px;
}

.partner-detail-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 30px;
}

.partner-detail-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
}

.partner-detail-text p {
    margin-bottom: 20px;
}

/* Partner Contact Card - OB Private Style */
.partner-contact-card {
    background: #fff;
    padding: 0;
    position: sticky;
    top: var(--sticky-top, 95px);
    align-self: start;
    /* Pull the card up so it overlays the hero (matches OB Private layout) */
    margin-top: calc(-1 * var(--partner-hero-h) + 25px);
    z-index: 3;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Prisma page: header overlays hero, so lift card down to match OB spacing */
:is(#prismaPage, #catrainVegaPage, #capCanaPage, #\32 ndHomePage) .partner-contact-card {
    margin-top: calc(-1 * var(--partner-hero-h) + 95px);
}


/* ============================================
   PARTNER PAGES — RESPONSIVE (TABLET/MOBILE)
   Keeps the OB-style contact card consistent
   ============================================ */
@media (max-width: 1024px){
  .partner-detail-content{
    grid-template-columns: 1fr 360px;
    gap: 40px;
    padding: 0 40px 70px;
  }
}
@media (max-width: 900px){
  .partner-detail-content{
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 0 18px 60px;
  }
  /* Remove fixed-edge/tab padding on small screens so layout centers nicely */
  :is(#prismaPage, #catrainVegaPage, #capCanaPage, #\32 ndHomePage) .partner-detail-content{
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  /* Contact card becomes non-sticky and centered (same behavior across partners) */
  .partner-contact-card{
    position: relative;
    top: auto;
    margin-top: -32px; /* gentle overlap with hero like OB mobile */
    max-width: 560px;
    width: 100%;
    justify-self: center;
  }
}
@media (max-width: 520px){
  .partner-contact-card{
    margin-top: -22px;
    max-width: 100%;
  }
  .partner-detail-hero-title{
    font-size: clamp(28px, 7vw, 44px);
  }
}

/* Prisma partner page: keep BOOK A VALUATION fixed to the viewport edge,
   while making the Prisma contact column flush to it (OB-style). */
:root{ --side-tab-w: 52px; } /* JS will overwrite with the real rendered width */

:is(#prismaPage, #catrainVegaPage, #capCanaPage, #\32 ndHomePage) .partner-detail-content{
    /* Full-width layout so the right column reaches the viewport edge (minus the tab width) */
    max-width: none;
    width: 100%;
    margin: 0;
    padding-left: 60px;
    padding-right: var(--side-tab-w);
}
:is(#prismaPage, #catrainVegaPage, #capCanaPage, #\32 ndHomePage) .partner-detail-main{
    padding-right: 0 !important;
}


/* 2nd HOME: harden the flush alignment between the contact card column and the BOOK A VALUATION side tab */
#\32 ndHomePage .partner-detail-content{
    padding-right: var(--side-tab-w) !important;
}

#\32 ndHomePage .partner-contact-card{
    margin-right: 0 !important;
    /* Lift the card to align with the header line (match other partner pages) */
    margin-top: calc(-1 * var(--partner-hero-h) + 25px) !important;
}

/* Make the right column reach the very edge of the content area (no extra right gutter) */
#\32 ndHomePage .partner-detail-content > :last-child{
    justify-self: end;
}

/* Keep the tab fixed to the right edge on Prisma, and keep its width stable on hover */
body.is-partner-detail .side-tab{ right: 0; }
body.is-partner-detail .side-tab:hover{ padding: 25px 14px; }

/* Prisma: respect existing partner responsive paddings (override specificity) */
@media (max-width: 1024px){
    :is(#prismaPage, #catrainVegaPage, #capCanaPage, #\32 ndHomePage) .partner-detail-content{
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px 60px;
    }
}
@media (max-width: 768px){
    :is(#prismaPage, #catrainVegaPage, #capCanaPage, #\32 ndHomePage) .partner-detail-content{
        padding: 0 20px 50px;
    }
}

.partner-contact-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -45px auto 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.partner-contact-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.partner-contact-logo svg {
    width: 50px;
    height: 50px;
    color: #fff;
    fill: #fff;
}

.partner-contact-tagline {
    background: #f8f6f3;
    color: #333;
    padding: 25px 30px;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
    margin: 0;
    border-bottom: 1px solid #eee;
}

.partner-contact-cta {
    
    background: #b8a88a;
    color: #fff;
    padding: 18px 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
}

.partner-contact-cta:hover {
    background: #a09078;
}

.partner-contact-info {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
}

.partner-contact-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
}

.partner-contact-name {
    background: transparent;
    color: #1a1a1a;
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}

.partner-contact-website {
    background: transparent;
    color: #1a1a1a;
    padding: 0;
    font-size: 16px;
    margin-bottom: 0;
    
    text-decoration: none;
    transition: color 0.3s;
}

.partner-contact-website:hover {
    color: #b8a88a;
}

.partner-contact-divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin: 25px 0;
}

.partner-contact-cta {
    
    width: 100%;
    background: var(--secondary);
    color: #fff;
    text-align: center;
    padding: 16px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.partner-contact-cta:hover {
    background: #7a6347;
}

/* Partner Social Links */
.partner-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
}

.partner-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #b8a88a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    border: none;
}

.partner-social-link:hover {
    background: #a09078;
    color: #fff;
}

.partner-social-link svg {
    width: 16px;
    height: 16px;
}

.partner-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 30px;
    color: #666;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s;
}

.partner-share-link:hover {
    color: #b8a88a;
}

.partner-share-link svg {
    width: 16px;
    height: 16px;
}

/* Partner Back Navigation */
.partner-back-nav {
    padding: 20px 60px;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.partner-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s;
}

.partner-back-link:hover {
    color: var(--secondary);
}

.partner-back-link svg {
    width: 16px;
    height: 16px;
}

/* Partner Detail Mobile Responsive */
@media (max-width: 1024px) {
    .partner-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px 60px;
    }
    
    .partner-detail-main {
        padding-top: 50px;
        padding-right: 0;
    }
    
    .partner-contact-card {
        position: static;
        max-width: 460px;
        margin: 30px auto 0;
        z-index: auto;
    }
    
    .partner-detail-hero-content {
        left: 40px;
    }
    
    .partner-back-nav {
        padding: 15px 40px;
    }
}

@media (max-width: 768px) {
    .partner-detail-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .partner-detail-hero-content {
        left: 20px;
        bottom: 30px;
    }
    
    .partner-detail-content {
        padding: 0 20px 50px;
    }
    
    .partner-back-nav {
        padding: 15px 20px;
    }
    
    .partner-contact-card {
        padding: 0;
    }
}


/* ===== Properties Sales (scoped to #salesPage) ===== */
#salesPage a{ color: inherit; text-decoration: none; }
#salesPage img{ max-width: 100%; height: auto; }
#salesPage /* Fixed Side Tab - Book Valuation */
        .side-tab{
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            background: var(--secondary);
            color: #fff;
            padding: 25px 14px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s, padding 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
#salesPage .side-tab:hover{
            background: #7a6347;
            padding: 25px 18px;
        }
#salesPage /* ==================== HEADER ==================== */
        .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(30,35,40,0.85);
            z-index: 1000;
            height: 70px;
            transition: background 0.3s, border 0.3s;
            backdrop-filter: blur(5px);
        }
#salesPage .header.scrolled{
            background: #fff;
            border-bottom: 1px solid var(--border);
            backdrop-filter: none;
        }
#salesPage .header-left{
            display: flex;
            align-items: center;
            height: 100%;
        }
#salesPage .hamburger-btn{
            display: flex;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0 25px;
            height: 100%;
            align-items: center;
            justify-content: center;
            border-right: 1px solid rgba(255,255,255,0.25);
            transition: border-color 0.3s;
        }
#salesPage .header.scrolled .hamburger-btn{
            border-right-color: #ccc;
        }
#salesPage .hamburger-btn span{
            
            width: 24px;
            height: 2px;
            background: #fff;
            transition: background 0.3s;
        }
#salesPage .header.scrolled .hamburger-btn span{
            background: var(--primary);
        }
#salesPage .header-logo-section{
            display: flex;
            align-items: center;
            height: 100%;
            padding: 0 15px;
            border-right: 1px solid rgba(255,255,255,0.25);
            transition: border-color 0.3s, background 0.3s;
            cursor: pointer;
        }
#salesPage .header.scrolled .header-logo-section{
            border-right-color: #ccc;
        }
#salesPage .logo{ 
            height: 65px; 
            transition: opacity 0.3s;
        }
#salesPage /* Dark background logo - shown on dark header (homepage) */
        .logo-dark{
            
        }
#salesPage /* Light background logo - hidden on dark header */
        .logo-light{
            display: none;
        }
#salesPage /* When scrolled (white header) - swap logos */
        .header.scrolled .logo-dark{
            display: none;
        }
#salesPage .header.scrolled .logo-light{
            
        }
#salesPage .slide-menu-logo{
            height: 60px;
        }
#salesPage .footer-logo{
            height: 60px;
            opacity: 1;
        }
#salesPage .thank-you-logo{
            height: 90px;
        }
#salesPage .promo-logo{
            height: 50px;
            object-fit: contain;
        }
#salesPage .nav-desktop{
            display: flex;
            align-items: center;
            gap: 35px;
            height: 100%;
            padding: 0 30px;
        }
#salesPage .nav-desktop span{
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 500;
            transition: color 0.3s;
            cursor: pointer;
        }
#salesPage .header.scrolled .nav-desktop span{
            color: var(--primary);
        }
#salesPage .nav-desktop span:hover{ color: var(--secondary); }
#salesPage .header-right{
            display: flex;
            align-items: center;
            height: 100%;
            margin-left: auto;
        }
#salesPage .header-search{
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 0 20px;
            border-left: 1px solid rgba(255,255,255,0.25);
            cursor: pointer;
            transition: border-color 0.3s;
        }
#salesPage .header.scrolled .header-search{
            border-left-color: #ccc;
        }
#salesPage .header-search svg{
            width: 18px;
            height: 18px;
            stroke: #fff;
            stroke-width: 2;
            fill: none;
            transition: stroke 0.3s;
        }
#salesPage .header.scrolled .header-search svg{
            stroke: var(--primary);
        }
#salesPage .header-right .get-in-touch{
            display: flex;
            align-items: center;
            height: 100%;
            padding: 0 25px;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s, border-color 0.3s;
            cursor: pointer;
            border-left: 1px solid rgba(255,255,255,0.25);
        }
#salesPage .header.scrolled .header-right .get-in-touch{
            color: var(--primary);
            border-left-color: #ccc;
        }
#salesPage .header-right .get-in-touch:hover{
            color: var(--secondary);
        }
#salesPage .header-icons{
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 20px;
        }
#salesPage .header-icon{
            position: relative;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
        }
#salesPage .header-icon.email-icon{ background: var(--secondary); }
#salesPage .header-icon.whatsapp-icon{ background: #888; }
#salesPage .header-icon:hover{ transform: scale(1.05); }
#salesPage .header-icon svg{ width: 18px; height: 18px; fill: #fff; }
#salesPage .header-icon .tooltip{
            position: absolute;
            top: 50px;
            right: 0;
            background: #fff;
            border: 1px solid var(--border);
            padding: 10px 15px;
            font-size: 12px;
            color: var(--secondary);
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            z-index: 100;
        }
#salesPage .header-icon:hover .tooltip{
            opacity: 1;
            visibility: visible;
        }
#salesPage .lang-toggle{
            font-size: 11px;
            color: #fff;
            cursor: pointer;
            padding: 5px 10px;
            border: 1px solid rgba(255,255,255,0.3);
            background: transparent;
            font-family: inherit;
            transition: all 0.3s;
            margin-right: 20px;
        }
#salesPage .header.scrolled .lang-toggle{
            color: var(--text);
            border-color: var(--border);
        }
#salesPage /* ==================== SLIDE-OUT MENU ==================== */
        .slide-menu{
            position: fixed;
            top: 0;
            left: -450px;
            width: 450px;
            max-width: 90vw;
            height: 100vh;
            background: #fff;
            z-index: 3000;
            transition: left 0.4s ease;
            overflow-y: auto;
            box-shadow: 5px 0 30px rgba(0,0,0,0.15);
        }
#salesPage .slide-menu.active{
            left: 0;
        }
#salesPage .slide-menu-overlay{
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 2999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
#salesPage .slide-menu-overlay.active{
            opacity: 1;
            visibility: visible;
        }
#salesPage .slide-menu-header{
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 30px;
            border-bottom: 1px solid var(--border);
        }
#salesPage .slide-menu-close{
            display: flex;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }
#salesPage .slide-menu-close span{
            
            width: 24px;
            height: 2px;
            background: var(--primary);
        }
#salesPage .slide-menu-logo{
            height: 40px;
        }
#salesPage .slide-menu-content{
            padding: 30px;
        }
#salesPage .menu-section{
            margin-bottom: 25px;
        }
#salesPage .menu-section-title{
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 20px;
        }
#salesPage .menu-section-title.gold{
            color: var(--gold);
        }
#salesPage .menu-links span{
            
            padding: 12px 0 12px 20px;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text);
            transition: color 0.3s;
            cursor: pointer;
        }
#salesPage .menu-links span:hover{
            color: var(--secondary);
        }
#salesPage .menu-divider{
            height: 1px;
            background: var(--border);
            margin: 20px 0;
        }
#salesPage .menu-brand-links{
            margin-bottom: 20px;
        }
#salesPage .menu-brand-links span{
            
            padding: 10px 0;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
        }
#salesPage .menu-brand-links span.gold{
            color: var(--gold);
        }
#salesPage .menu-brand-links span.dark{
            color: var(--primary);
        }
#salesPage .menu-social{
            display: flex;
            gap: 12px;
            padding: 20px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
#salesPage .menu-social a{
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
#salesPage .menu-social a:hover{
            background: #7a6347;
        }
#salesPage .menu-social svg{
            width: 18px;
            height: 18px;
            fill: #fff;
        }
#salesPage /* Language Toggle in Menu */
        .menu-lang-toggle{
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }
#salesPage .lang-option{
            font-size: 13px;
            letter-spacing: 1px;
            color: var(--text);
            cursor: pointer;
            transition: color 0.3s;
        }
#salesPage .lang-option.active{
            color: var(--text-dark);
            font-weight: 600;
        }
#salesPage .lang-option:hover{
            color: var(--secondary);
        }
#salesPage .lang-separator{
            color: var(--border);
        }
#salesPage .menu-promo{
            display: flex;
            margin-top: 25px;
            border: 1px solid var(--border);
        }
#salesPage .menu-promo-logo{
            width: 130px;
            min-height: 130px;
            background: var(--dark-green);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            flex-shrink: 0;
        }
#salesPage .menu-promo-logo.menu-promo-logo-light{
            background: #fff;
            border-right: 1px solid var(--border);
        }
#salesPage .menu-promo-logo img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
#salesPage .menu-promo-content{
            padding: 15px 20px;
            flex: 1;
        }
#salesPage .menu-promo-title{
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--secondary);
            margin-bottom: 5px;
        }
#salesPage .menu-promo-subtitle{
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 3px;
        }
#salesPage .menu-promo-coming{
            font-style: italic;
            font-size: 13px;
            color: var(--text);
            margin-bottom: 10px;
        }
#salesPage .menu-promo-link{
            font-size: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--primary);
            text-decoration: underline;
        }
#salesPage /* ==================== HOME PAGE ==================== */
        .home-hero{
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            overflow: hidden;
            padding: 0 60px;
        }
#salesPage .home-hero-video{
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: -2;
            object-fit: cover;
            /* Improve video quality rendering */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
#salesPage .home-hero::before{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
            z-index: -1;
        }
#salesPage .home-hero-content{
            color: #fff;
            max-width: 700px;
            padding-top: 70px;
        }
#salesPage .home-hero-welcome{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 5px;
        }
#salesPage .home-hero-tagline{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 300;
            font-style: italic;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
        }
#salesPage .home-hero-desc{
            font-size: 15px;
            line-height: 1.9;
            font-weight: 300;
            opacity: 0.95;
            max-width: 550px;
        }
#salesPage /* Search Bar */
        .search-bar{
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            padding: 25px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
#salesPage .search-bar-content{
            flex: 1;
        }
#salesPage .search-bar-label{
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text);
            margin-bottom: 5px;
        }
#salesPage .search-bar-text{
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--primary);
            font-weight: 500;
        }
#salesPage .search-bar-icon{
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
#salesPage .search-bar-icon svg{
            width: 24px;
            height: 24px;
            stroke: var(--primary);
            stroke-width: 2;
            fill: none;
        }
#salesPage /* Home About Section */
        .home-about{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 100px 50px;
            align-items: center;
        }
#salesPage .home-about-content h2{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 30px;
            line-height: 1.2;
        }
#salesPage .home-about-content p{
            font-size: 15px;
            line-height: 1.9;
            color: var(--text);
            margin-bottom: 30px;
        }
#salesPage .home-about-btn{
            display: inline-block;
            padding: 14px 35px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            border: 1px solid var(--primary);
            color: var(--primary);
            transition: all 0.3s;
        }
#salesPage .home-about-btn:hover{
            background: var(--primary);
            color: #fff;
        }
#salesPage .home-about-image{
            position: relative;
        }
#salesPage .home-about-image img{
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            mask-image: radial-gradient(ellipse 90% 90% at center, black 60%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 90% 90% at center, black 60%, transparent 100%);
        }
#salesPage /* DISCOVER Section - OB Private Style */
        .discover-section{
            padding: 0 50px 80px;
            max-width: 1400px;
            margin: 0 auto;
        }
#salesPage .discover-header{
            padding: 60px 0 50px;
            position: relative;
        }
#salesPage .discover-header::after{
            content: '';
            position: absolute;
            top: 75px;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--border);
        }
#salesPage .discover-label{
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--secondary);
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
#salesPage .discover-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
#salesPage .discover-card{
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
#salesPage .discover-card-image{
            background: #f5f3f0;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 350px;
            margin-bottom: 25px;
            border-radius: 8px;
            overflow: hidden;
            transition: background-color 0.3s ease;
        }
#salesPage .discover-card:hover .discover-card-image, #salesPage .discover-card:active .discover-card-image{
            background: #c8c8c8;
        }
#salesPage .discover-card-image img{
            max-width: 100%;
            max-height: 280px;
            object-fit: contain;
            border-radius: 8px;
            mask-image: radial-gradient(ellipse 95% 95% at center, black 70%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 95% 95% at center, black 70%, transparent 100%);
            transition: filter 0.3s ease;
        }
#salesPage .discover-card:hover .discover-card-image img, #salesPage .discover-card:active .discover-card-image img{
            filter: brightness(0.75) contrast(1.1);
        }
#salesPage .discover-card h3{
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
#salesPage .discover-card p{
            font-size: 14px;
            line-height: 1.8;
            color: var(--text);
        }
#salesPage /* Home Services Section */
        .home-services{
            background: var(--light);
            padding: 100px 50px;
        }
#salesPage .home-services-header{
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
#salesPage .home-services-header h2{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 15px;
        }
#salesPage .home-services-header p{
            font-size: 14px;
            color: var(--text);
            line-height: 1.7;
        }
#salesPage .home-services-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
#salesPage .service-card{
            background: #fff;
            padding: 50px 35px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
#salesPage .service-card:hover{
            border-color: var(--secondary);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }
#salesPage .service-card-icon{
            width: 60px;
            height: 60px;
            margin: 0 auto 25px;
            stroke: var(--secondary);
            stroke-width: 1.5;
            fill: none;
        }
#salesPage .service-card h3{
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 15px;
            color: var(--text-dark);
        }
#salesPage .service-card p{
            font-size: 13px;
            line-height: 1.8;
            color: var(--text);
        }
#salesPage /* Home CTA Section */
        .home-cta{
            padding: 100px 50px;
            text-align: center;
            background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 100%);
            color: #fff;
        }
#salesPage .home-cta h2{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 400;
            margin-bottom: 20px;
        }
#salesPage .home-cta p{
            font-size: 14px;
            max-width: 600px;
            margin: 0 auto 30px;
            opacity: 0.9;
            line-height: 1.7;
        }
#salesPage .home-cta-btn{
            display: inline-block;
            padding: 16px 45px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            background: var(--secondary);
            color: #fff;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
#salesPage .home-cta-btn:hover{
            background: #a08567;
        }
#salesPage /* ==================== CONTACT PAGE ==================== */
        .hero{
            padding: 120px 30px 50px;
            background: #fff;
        }
#salesPage .hero-title{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 6vw, 52px);
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: -5px;
            line-height: 1.1;
        }
#salesPage .hero-subtitle{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 300;
            font-style: italic;
            color: var(--text);
            margin-top: 0;
            line-height: 1.1;
        }
#salesPage .main-content{
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 40px 30px 60px;
        }
#salesPage .form-section h2{
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text);
            margin-bottom: 25px;
        }
#salesPage .form{ display: flex; flex-direction: column; gap: 0; }
#salesPage .form-group{
            display: flex;
            flex-direction: column;
            margin-bottom: 0;
        }
#salesPage .form-group input, #salesPage .form-group select, #salesPage .form-group textarea{
            padding: 18px 20px;
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid var(--border);
            border-bottom: none;
            font-family: inherit;
            background: #fff;
            transition: border-color 0.3s;
            width: 100%;
            color: var(--text);
        }
#salesPage .form-group:last-of-type input, #salesPage .form-group:last-of-type select, #salesPage .form-group:last-of-type textarea{
            border-bottom: 1px solid var(--border);
        }
#salesPage .form-group input::placeholder, #salesPage .form-group textarea::placeholder{
            color: var(--text);
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 1px;
        }
#salesPage .form-group input:focus, #salesPage .form-group select:focus, #salesPage .form-group textarea:focus{
            outline: none;
            border-color: var(--secondary);
            position: relative;
            z-index: 1;
        }
#salesPage .form-group select{
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 18px center;
            cursor: pointer;
        }
#salesPage .form-group textarea{
            resize: vertical;
            min-height: 120px;
            border-bottom: 1px solid var(--border);
        }
#salesPage .checkbox-group{
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 25px;
        }
#salesPage .checkbox-label{
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 11px;
            color: var(--text);
            cursor: pointer;
            line-height: 1.6;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
#salesPage .checkbox-label input{
            width: 14px;
            height: 14px;
            margin-top: 2px;
            accent-color: var(--secondary);
            flex-shrink: 0;
        }
#salesPage .submit-btn{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 500;
            background: var(--secondary);
            color: #fff;
            border: none;
            cursor: pointer;
            font-family: inherit;
            margin-top: 30px;
            transition: background 0.3s;
            width: fit-content;
        }
#salesPage .submit-btn:hover{ background: #7a6347; }
#salesPage .office-section{
            background: var(--light);
            padding: 30px;
            height: fit-content;
        }
#salesPage .office-section h2{
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border);
        }
#salesPage .office-card{
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border);
        }
#salesPage .office-image{
            width: 110px;
            height: 110px;
            object-fit: cover;
            flex-shrink: 0;
        }
#salesPage .office-details h3{
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
#salesPage .office-address{
            font-size: 13px;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 12px;
        }
#salesPage .office-contact a{
            
            font-size: 13px;
            color: var(--text-dark);
            margin-bottom: 5px;
            transition: color 0.3s;
            text-decoration: underline;
        }
#salesPage .office-contact a:hover{ color: var(--secondary); }
#salesPage .office-hours{
            font-size: 12px;
            color: var(--text);
            margin-top: 12px;
        }
#salesPage /* ==================== VALUATION PAGE ==================== */
        .valuation-hero{
            position: relative;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 150px 30px 80px;
            background-size: cover;
            background-position: center top;
        }
#salesPage .valuation-hero::before{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.65) 100%);
        }
#salesPage .valuation-hero-content{
            position: relative;
            z-index: 1;
            max-width: 750px;
        }
#salesPage .valuation-hero h1{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 500;
            margin-bottom: 10px;
            color: #2a2a2a;
            text-shadow: 0 1px 2px rgba(255,255,255,0.5);
        }
#salesPage .valuation-hero .valuation-tagline{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 400;
            font-style: italic;
            color: #5a4a3a;
            margin-bottom: 25px;
            text-shadow: 0 1px 2px rgba(255,255,255,0.5);
        }
#salesPage .valuation-hero p{
            font-size: 14px;
            line-height: 1.9;
            color: #3a3a3a;
            text-shadow: 0 1px 1px rgba(255,255,255,0.4);
        }
#salesPage .valuation-content{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 50px 30px;
        }
#salesPage .valuation-image-side img{
            width: 100%;
            max-width: 480px;
            position: sticky;
            top: 100px;
        }
#salesPage .valuation-intro{
            background: var(--light);
            padding: 25px;
            margin-bottom: 30px;
            font-size: 14px;
            font-style: italic;
            color: var(--text);
            line-height: 1.8;
            border-left: 3px solid var(--secondary);
        }
#salesPage /* Footer */
        .footer-newsletter{
            background: #fff;
            padding: 40px 50px;
            border-bottom: 1px solid var(--border);
        }
#salesPage .footer-newsletter-content{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }
#salesPage .footer-newsletter-text{
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            color: var(--text-dark);
        }
#salesPage .footer-newsletter-btn{
            padding: 14px 40px;
            background: var(--secondary);
            color: #fff;
            font-size: 11px;
            letter-spacing: 1.5px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
        }
#salesPage .footer-newsletter-btn:hover{
            background: #7a6347;
        }
#salesPage .footer{
            padding: 60px 50px 0;
            background: var(--light);
        }
#salesPage .footer-main{
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 180px 1fr 180px;
            gap: 40px;
            padding-bottom: 40px;
        }
#salesPage .footer-logo-section{
            display: flex;
            flex-direction: column;
        }
#salesPage .footer-logo{ 
            height: 80px; 
            width: auto;
            object-fit: contain;
        }
#salesPage .footer-columns{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            border-left: 1px solid var(--border);
            padding-left: 40px;
        }
#salesPage .footer-column{
            text-align: left;
        }
#salesPage .footer-column-title{
            font-size: 12px;
            letter-spacing: 2px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
#salesPage .footer-column-links{
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
#salesPage .footer-column-links span{
            font-size: 12px;
            color: var(--text);
            cursor: pointer;
            transition: color 0.3s;
        }
#salesPage .footer-column-links span:hover{
            color: var(--text-dark);
        }
#salesPage .footer-social-row{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 0;
            border-top: 1px solid var(--border);
        }
#salesPage .footer-social{
            display: flex;
            gap: 10px;
        }
#salesPage .footer-social a{
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
#salesPage .footer-social a:hover{
            background: #7a6347;
        }
#salesPage .footer-social svg{
            width: 16px;
            height: 16px;
            fill: #fff;
        }
#salesPage /* Partner Logos Inline (under GHDR PROPERTY SERVICES) */
        .footer-partners-inline{
            display: flex;
            align-items: center;
            gap: 25px;
            margin-top: 25px;
        }
#salesPage .footer-partner-logo{
            display: flex;
            align-items: center;
            transition: opacity 0.3s;
        }
#salesPage .footer-partner-logo:hover{
            opacity: 0.7;
        }
#salesPage .footer-partner-logo img{
            height: 35px;
            object-fit: contain;
        }
#salesPage .footer-acho{
            display: flex;
            align-items: center;
        }
#salesPage .footer-acho img{
            height: 35px;
            object-fit: contain;
        }
#salesPage /* ACHO logo language switching */
        .acho-logo.acho-es{
            display: none;
        }
#salesPage body.lang-es .acho-logo.acho-en{
            display: none;
        }
#salesPage body.lang-es .acho-logo.acho-es{
            
        }
#salesPage .footer-right{
            display: flex;
            flex-direction: column;
        }
#salesPage .footer-right .footer-column-title{
            text-align: left;
        }
#salesPage .footer-right .footer-column-links span{
            text-align: left;
        }
#salesPage .footer-bottom{
            max-width: 1300px;
            margin: 0 auto;
            padding: 20px 0;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
#salesPage .footer-copyright{
            font-size: 11px;
            color: var(--text);
            letter-spacing: 0.5px;
        }
#salesPage .footer-made-by{
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            color: var(--text);
            font-size: 11px;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }
#salesPage .footer-made-by:hover{
            color: var(--text-dark);
        }
#salesPage .footer-made-by img{
            height: 16px;
            object-fit: contain;
        }
#salesPage /* Modal */
        .modal-overlay{
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 3000;
            padding: 20px;
        }
#salesPage .modal-overlay.active{ display: flex; }
#salesPage .modal{
            background: #fff;
            padding: 40px;
            max-width: 400px;
            width: 100%;
            text-align: center;
        }
#salesPage .modal-title{
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            margin-bottom: 15px;
        }
#salesPage .modal-text{
            font-size: 13px;
            color: var(--text);
            margin-bottom: 20px;
        }
#salesPage .modal input{
            width: 100%;
            padding: 14px;
            font-size: 16px;
            text-align: center;
            letter-spacing: 3px;
            border: 1px solid var(--border);
            margin-bottom: 15px;
            font-family: inherit;
        }
#salesPage .modal-btn{
            width: 100%;
            padding: 14px;
            background: var(--secondary);
            color: #fff;
            border: none;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            font-family: inherit;
            margin-bottom: 10px;
        }
#salesPage .modal-cancel{
            background: none;
            border: none;
            color: var(--text);
            cursor: pointer;
            font-size: 12px;
        }
#salesPage .code-display{
            background: var(--light);
            padding: 15px;
            margin-bottom: 20px;
            font-family: monospace;
            font-size: 18px;
            letter-spacing: 4px;
            color: var(--secondary);
        }
#salesPage /* Thank You */
        .thank-you-page{
            min-height: 100vh;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 40px;
            text-align: center;
        }
#salesPage .thank-you-page.active{ display: flex; }
#salesPage .thank-you-content{ max-width: 500px; }
#salesPage .thank-you-logo{ height: 70px; margin-bottom: 40px; }
#salesPage .thank-you-icon{ margin-bottom: 30px; }
#salesPage .thank-you-title{
            font-family: 'Cormorant Garamond', serif;
            font-size: 42px;
            margin-bottom: 20px;
        }
#salesPage .thank-you-text{
            font-size: 14px;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 30px;
        }
#salesPage .confirmation-box{
            background: var(--light);
            padding: 20px;
            margin-bottom: 30px;
        }
#salesPage .return-btn{
            padding: 14px 35px;
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.3s;
        }
#salesPage .return-btn:hover{
            background: var(--primary);
            color: #fff;
        }
#salesPage /* Page visibility */
        .page{ display: none; }
#salesPage .page.active{  }
#salesPage /* Back to Top & Back Navigation Buttons */
        .back-to-top{
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
#salesPage .back-to-top.visible{
            opacity: 1;
            visibility: visible;
        }
#salesPage .back-to-top:hover{
            background: #7a6347;
            transform: translateY(-3px);
        }
#salesPage .back-to-top svg{
            width: 20px;
            height: 20px;
            fill: #fff;
        }
#salesPage /* Back Navigation Button */
        .back-nav{
            position: fixed;
            bottom: 90px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
#salesPage .back-nav.visible{
            opacity: 1;
            visibility: visible;
        }
#salesPage .back-nav:hover{
            background: #1a3a4a;
            transform: translateX(-3px);
        }
#salesPage .back-nav svg{
            width: 20px;
            height: 20px;
            fill: #fff;
        }
#salesPage /* ==================== COMPLIANCE PAGE ==================== */
        .compliance-content{
            max-width: 900px;
            margin: 0 auto;
            padding: 140px 40px 80px;
        }
#salesPage .compliance-title{
            font-family: var(--font-heading);
            font-size: 38px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 15px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border);
        }
#salesPage .compliance-list{
            margin-top: 20px;
        }
#salesPage .compliance-item{
            padding: 35px 0;
            border-bottom: 1px solid var(--border);
        }
#salesPage .compliance-item h3{
            font-size: 15px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 12px;
            line-height: 1.5;
        }
#salesPage .compliance-link{
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--secondary);
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color 0.3s;
            cursor: pointer;
        }
#salesPage .compliance-link:hover{
            color: #7a6347;
        }
#salesPage /* Language-specific items */
        .compliance-en-only{
            
        }
#salesPage body.lang-es .compliance-en-only{
            display: none;
        }
#salesPage .compliance-es-only{
            display: none;
        }
#salesPage body.lang-es .compliance-es-only{
            
        }
#salesPage /* ==================== COOKIE CONSENT ==================== */
        .cookie-banner{
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 380px;
            background: #fff;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            z-index: 10000;
            padding: 25px;
            display: none;
        }
#salesPage .cookie-banner.active{
            
        }
#salesPage .cookie-banner h4{
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
#salesPage .cookie-banner p{
            font-size: 12px;
            line-height: 1.6;
            color: var(--text);
            margin-bottom: 18px;
        }
#salesPage .cookie-buttons{
            display: flex;
            gap: 10px;
        }
#salesPage .cookie-btn{
            padding: 10px 16px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: inherit;
        }
#salesPage .cookie-btn-outline{
            background: #fff;
            border: 1px solid #ccc;
            color: var(--text-dark);
        }
#salesPage .cookie-btn-outline:hover{
            border-color: var(--text-dark);
        }
#salesPage .cookie-btn-filled{
            background: var(--secondary);
            border: 1px solid var(--secondary);
            color: #fff;
        }
#salesPage .cookie-btn-filled:hover{
            background: #7a6347;
        }
#salesPage /* Cookie Modal */
        .cookie-modal-overlay{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 10001;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
#salesPage .cookie-modal-overlay.active{
            display: flex;
        }
#salesPage .cookie-modal{
            background: #fff;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
        }
#salesPage .cookie-modal-close{
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text);
        }
#salesPage .cookie-modal h3{
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--text-dark);
            margin-bottom: 20px;
            padding-right: 30px;
        }
#salesPage .cookie-modal-intro{
            font-size: 12px;
            line-height: 1.6;
            color: var(--text);
            margin-bottom: 10px;
        }
#salesPage .cookie-show-more{
            color: var(--primary);
            text-decoration: underline;
            cursor: pointer;
            font-weight: 500;
        }
#salesPage .cookie-category{
            border-top: 1px solid var(--border);
            padding: 15px 0;
        }
#salesPage .cookie-category-header{
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
#salesPage .cookie-arrow{
            font-size: 14px;
            color: var(--text);
            cursor: pointer;
        }
#salesPage .cookie-category-title{
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            flex: 1;
        }
#salesPage .cookie-always-active{
            font-size: 11px;
            font-weight: 600;
            color: #22c55e;
            letter-spacing: 0.5px;
        }
#salesPage .cookie-category-desc{
            font-size: 11px;
            line-height: 1.6;
            color: var(--text);
            padding-left: 20px;
        }
#salesPage /* Toggle Switch */
        .cookie-toggle{
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
        }
#salesPage .cookie-toggle input{
            opacity: 0;
            width: 0;
            height: 0;
        }
#salesPage .cookie-slider{
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.3s;
            border-radius: 24px;
        }
#salesPage .cookie-slider:before{
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }
#salesPage .cookie-toggle input:checked + .cookie-slider{
            background-color: var(--secondary);
        }
#salesPage .cookie-toggle input:checked + .cookie-slider:before{
            transform: translateX(20px);
        }
#salesPage .cookie-modal-buttons{
            display: flex;
            gap: 10px;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
#salesPage .cookie-powered{
            text-align: right;
            font-size: 10px;
            color: var(--text);
            margin-top: 15px;
        }
@media (max-width: 768px){#salesPage .cookie-banner{
                left: 10px;
                right: 10px;
                bottom: 10px;
                width: auto;
                max-height: 80vh;
                overflow-y: auto;
            }
#salesPage .cookie-buttons {
    flex-wrap: wrap;
    gap: 10px;
}
#salesPage .cookie-btn {
    flex: 1;
    min-width: calc(50% - 5px);
    padding: 14px 15px;
    font-size: 10px;
}
#salesPage .cookie-modal-buttons {
    flex-wrap: wrap;
}
#salesPage .cookie-modal-buttons .cookie-btn {
    flex: 1;
    min-width: calc(50% - 5px);
}}
#salesPage /* ==================== RESPONSIVE ==================== */
        .header-right-mobile{
            display: none;
        }
@media (max-width: 1200px){#salesPage .nav-desktop{ display: none; }
#salesPage .header-search{ display: none; }
#salesPage .header-right .get-in-touch{ display: none; }
#salesPage .header-icons{ display: none; }
#salesPage .header-right-mobile{
                display: flex;
                align-items: center;
                height: 100%;
                margin-left: auto;
            }
#salesPage .get-in-touch-mobile{
                display: flex;
                align-items: center;
                height: 100%;
                padding: 0 20px;
                font-size: 11px;
                letter-spacing: 1.5px;
                text-transform: uppercase;
                color: #fff;
                font-weight: 500;
                text-decoration: none;
                border-left: 1px solid rgba(255,255,255,0.25);
                transition: color 0.3s, border-color 0.3s;
                cursor: pointer;
            }
#salesPage .header.scrolled .get-in-touch-mobile{
                color: var(--primary);
                border-left-color: #ccc;
            }
#salesPage .home-about{
                grid-template-columns: 1fr;
                gap: 50px;
                padding: 80px 30px;
            }
#salesPage .home-about-image{
                order: -1;
                text-align: center;
            }
#salesPage .home-services-grid{ grid-template-columns: repeat(2, 1fr); }
#salesPage .discover-section{
                padding: 0 30px 60px;
            }
#salesPage .discover-grid{
                grid-template-columns: 1fr;
                gap: 50px;
            }}
@media (max-width: 1024px){#salesPage .main-content{ grid-template-columns: 1fr; gap: 40px; }
#salesPage .valuation-content{ grid-template-columns: 1fr; }
#salesPage .valuation-image-side{ display: none; }}
@media (max-width: 768px){#salesPage .header{ height: 60px; }
#salesPage .hamburger-btn{
                padding: 0 15px;
                border-right: 1px solid rgba(255,255,255,0.25);
            }
#salesPage .header.scrolled .hamburger-btn{
                border-right-color: #ccc;
            }
#salesPage .header-logo-section{
                padding: 0 10px;
                border-right: 1px solid rgba(255,255,255,0.25);
            }
#salesPage .header.scrolled .header-logo-section{
                border-right-color: #ccc;
            }
#salesPage .logo{ 
                height: 50px;
            }
#salesPage .get-in-touch-mobile{
                padding: 0 15px;
                font-size: 10px;
                border-left: 1px solid rgba(255,255,255,0.25);
            }
#salesPage .header.scrolled .get-in-touch-mobile{
                border-left-color: #ccc;
            }
#salesPage .home-hero{ 
                padding: 0 20px; 
                min-height: 100vh;
            }
#salesPage /* Fix video background for mobile */
            .home-hero-video{
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                transform: none;
            }
#salesPage .home-hero-content{
                padding-top: 80px;
            }
#salesPage .home-hero-welcome{
                font-size: 32px;
            }
#salesPage .home-hero-tagline{
                font-size: 24px;
            }
#salesPage .home-hero-desc{
                font-size: 14px;
            }
#salesPage .search-bar{ 
                padding: 15px 20px;
                position: relative;
            }
#salesPage .discover-section{
                padding: 0 20px 40px;
            }
#salesPage .discover-header{
                padding: 40px 0 30px;
            }
#salesPage .discover-header::after{
                top: 55px;
            }
#salesPage .discover-card-image{
                padding: 30px;
                min-height: 250px;
            }
#salesPage .discover-card-image img{
                max-height: 200px;
            }
#salesPage .home-services{ padding: 60px 20px; }
#salesPage .home-services-grid{ grid-template-columns: 1fr; }
#salesPage .home-cta{ padding: 60px 20px; }
#salesPage .hero{ padding: 100px 20px 30px; }
#salesPage .main-content{ padding: 30px 20px; }
#salesPage .office-card{
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
#salesPage .office-image{ width: 150px; height: 150px; }
#salesPage .footer-main{ 
                grid-template-columns: 1fr; 
                gap: 40px;
                text-align: center;
            }
#salesPage .footer-columns{
                grid-template-columns: 1fr;
                border-left: none;
                padding-left: 0;
                border-top: 1px solid var(--border);
                padding-top: 30px;
            }
#salesPage .footer-column{
                text-align: center;
            }
#salesPage .footer-logo-section{
                align-items: center;
            }
#salesPage .footer-right{
                align-items: center;
            }
#salesPage .footer-right .footer-column-title, #salesPage .footer-right .footer-column-links span{
                text-align: center;
            }
#salesPage .footer-social-row{
                flex-direction: column;
                gap: 30px;
            }
#salesPage .footer-partners-inline{
                flex-wrap: wrap;
                justify-content: center;
            }
#salesPage .footer-newsletter-content{
                flex-direction: column;
                text-align: center;
            }
#salesPage .footer-bottom{
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
#salesPage .valuation-hero{ min-height: 350px; padding: 120px 20px 60px; }
#salesPage .side-tab{ padding: 20px 10px; font-size: 10px; }
#salesPage .back-to-top{ width: 45px; height: 45px; bottom: 20px; left: 20px; }
#salesPage .back-nav{ width: 45px; height: 45px; bottom: 75px; left: 20px; }
#salesPage .compliance-content{ padding: 120px 20px 60px; }
#salesPage .compliance-title{ font-size: 30px; }
#salesPage .slide-menu{ width: 100%; left: -100%; }

/* Property Card Mobile Improvements */
#salesPage .property-card {
    grid-template-columns: 1fr;
}
#salesPage .property-details {
    padding: 25px 20px;
}
#salesPage .property-title {
    font-size: 24px;
}
#salesPage .property-location {
    font-size: 18px;
    margin-bottom: 15px;
}
#salesPage .property-description {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#salesPage .property-features {
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
#salesPage .property-image-nav {
    opacity: 1;
    width: 36px;
    height: 36px;
}

/* Filter Panel Full Screen Mobile */
#salesPage .filter-panel {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
    z-index: 2000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
#salesPage .filter-panel-body {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 25px 20px 120px;
}
#salesPage .filter-panel-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 2001;
}
#salesPage .filter-checkbox {
    min-height: 44px;
    padding: 10px 0;
}
#salesPage .filter-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
}
#salesPage .apply-filters-btn, 
#salesPage .clear-filters-btn {
    padding: 14px 20px;
    font-size: 12px;
}

/* Search Form Mobile Stacking */
#salesPage .search-form {
    flex-direction: column;
    padding: 20px;
    gap: 0;
}
#salesPage .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border-gray);
    padding: 15px 0;
}
#salesPage .search-field:last-of-type {
    border-bottom: none;
}
#salesPage .btn-search {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    padding: 16px;
}
#salesPage .search-controls {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}
#salesPage .search-options {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
#salesPage .filters-btn {
    padding: 12px 0;
    min-height: 44px;
}
#salesPage .view-toggle {
    display: none; /* Hide map/list toggle on mobile */
}
#salesPage .option-group {
    flex-wrap: nowrap;
}
#salesPage .option-group select {
    font-size: 12px;
    min-height: 44px;
    padding: 10px 25px 10px 0;
}

/* Mobile "Open Filters Panel" prominent button - OB Private style */
#salesPage .mobile-filters-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    margin-top: 15px;
    background-color: var(--light);
    border: 1px solid var(--border-gray);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}
#salesPage .mobile-filters-trigger:hover {
    background-color: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
}
#salesPage .mobile-filters-trigger svg {
    width: 16px;
    height: 16px;
}

/* Mobile Open Filters Button - always shown on mobile */
.mobile-open-filters {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-open-filters {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 16px 20px;
        margin-top: 15px;
        background-color: var(--light);
        border: 1px solid var(--border-gray);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--text-dark);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-open-filters:hover,
    .mobile-open-filters:active {
        background-color: var(--navy-blue);
        color: var(--white);
        border-color: var(--navy-blue);
    }
    
    .mobile-open-filters svg {
        flex-shrink: 0;
    }
}

/* Recently Viewed Carousel Mobile */
#salesPage .recently-card {
    flex: 0 0 160px;
}
#salesPage .recently-carousel {
    padding-left: 20px;
    padding-right: 20px;
}

/* Newsletter Mobile */
#salesPage .newsletter-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
}
#salesPage .newsletter-form {
    width: 100%;
    flex-direction: column;
}
#salesPage .newsletter-input {
    width: 100%;
}
#salesPage .newsletter-btn {
    width: 100%;
}

/* Pagination Mobile */
#salesPage .pagination {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
#salesPage .pagination-btn {
    min-width: 40px;
    height: 40px;
}
}
#salesPage /* iOS video fix */
        @supports (-webkit-touch-callout: none){
            .home-hero-video {
                position: absolute;
                top: 50%;
                left: 50%;
                min-width: 100%;
                min-height: 100%;
                width: auto;
                height: auto;
                transform: translate(-50%, -50%);
            }
        }
#salesPage .hidden{ display: none !important; }
#salesPage /* ==================== PARTNERS PAGE (OB PRIVATE STYLE) ==================== */
#partnersPage{
    background: #fff;
}
#salesPage /* Partners Hero - Full width with video/image background */
.partners-hero{
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2332 0%, #2d3b45 100%);
}
#salesPage .partners-hero-video{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
#salesPage .partners-hero::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}
#salesPage .partners-hero-content{
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
#salesPage .partners-hero-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}
#salesPage .partners-hero-subtitle{
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}
#salesPage /* Featured Partner Banner */
.partners-featured-banner{
    background: var(--light);
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
#salesPage .partners-featured-banner-content{
    max-width: 500px;
}
#salesPage .partners-featured-banner h3{
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
}
#salesPage .partners-featured-banner p{
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 15px;
}
#salesPage .partners-featured-banner-link{
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    cursor: pointer;
    transition: color 0.3s;
}
#salesPage .partners-featured-banner-link:hover{
    color: #7a6347;
}
#salesPage /* Partners Main Content Area */
.partners-main{
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}
#salesPage /* Partners Intro Section */
.partners-intro-section{
    text-align: center;
    margin-bottom: 50px;
}
#salesPage .partners-intro-label{
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 15px;
}
#salesPage .partners-intro-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}
#salesPage .partners-intro-desc{
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
}
#salesPage /* Partners Section Title */
.partners-section-title{
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
#salesPage /* Partners Grid - Key Partners with Images */
.partners-key-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}
@media (max-width: 1200px){#salesPage .partners-key-grid{ grid-template-columns: repeat(3, 1fr); }}
@media (max-width: 900px){#salesPage .partners-key-grid{ grid-template-columns: repeat(2, 1fr); }}
@media (max-width: 600px){#salesPage .partners-key-grid{ grid-template-columns: 1fr; }}
#salesPage /* Partner Card with Image */
.partner-image-card{
    background: #fff;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    overflow: hidden;
}
#salesPage .partner-image-card:hover{
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
#salesPage .partner-image-wrapper{
    position: relative;
    aspect-ratio: 5/6;
    overflow: hidden;
}
#salesPage .partner-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
#salesPage .partner-image-card:hover .partner-image-wrapper img{
    transform: scale(1.05);
}
#salesPage .partner-image-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: #fff;
}
#salesPage .partner-image-category{
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
#salesPage .partner-image-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
}
#salesPage .partner-image-desc{
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
}
#salesPage /* Video Feature Section */
.partners-video-feature{
    position: relative;
    height: 450px;
    margin: 60px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}
#salesPage .partners-video-feature video{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
#salesPage .partners-video-feature::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}
#salesPage .partners-video-content{
    position: relative;
    z-index: 3;
    padding: 0 60px;
    max-width: 600px;
    color: #fff;
}
#salesPage .partners-video-category{
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}
#salesPage .partners-video-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 15px;
}
#salesPage .partners-video-desc{
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
}
#salesPage .partners-video-link{
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 14px 30px;
    transition: all 0.3s;
}
#salesPage .partners-video-link:hover{
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}
#salesPage /* More Partners Grid */
.partners-more-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
@media (max-width: 1200px){#salesPage .partners-more-grid{ grid-template-columns: repeat(4, 1fr); }}
@media (max-width: 900px){#salesPage .partners-more-grid{ grid-template-columns: repeat(3, 1fr); }}
@media (max-width: 600px){#salesPage .partners-more-grid{ grid-template-columns: repeat(2, 1fr); }}
@media (max-width: 400px){#salesPage .partners-more-grid{ grid-template-columns: 1fr; }}
#salesPage /* Simple Partner Card (for More Partners section) */
.partner-simple-card{
    background: #fff;
    border: 1px solid var(--border);
    padding: 0;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    overflow: hidden;
}
#salesPage .partner-simple-card:hover{
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
#salesPage .partner-simple-image{
    aspect-ratio: 5/6;
    overflow: hidden;
}
#salesPage .partner-simple-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
#salesPage .partner-simple-card:hover .partner-simple-image img{
    transform: scale(1.05);
}
#salesPage .partner-simple-content{
    padding: 18px 15px;
}
#salesPage .partner-simple-category{
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 6px;
}
#salesPage .partner-simple-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 5px;
}
#salesPage .partner-simple-desc{
    font-size: 12px;
    color: var(--text);
    line-height: 1.5;
}
#salesPage .partner-simple-link{
    
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
}
#salesPage /* Become a Partner CTA Section */
.partners-cta-section{
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    padding: 80px 60px;
    background: var(--dark-green);
    color: #fff;
    margin-top: 60px;
    align-items: center;
}
@media (max-width: 900px){#salesPage .partners-cta-section{
        grid-template-columns: 1fr;
        padding: 60px 30px;
    }}
#salesPage .partners-cta-content h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 10px;
}
#salesPage .partners-cta-content .cta-subtitle{
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}
#salesPage .partners-cta-content p{
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}
#salesPage .partners-cta-btn{
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 16px 35px;
    transition: all 0.3s;
    cursor: pointer;
}
#salesPage .partners-cta-btn:hover{
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}
#salesPage .partners-cta-image{
    position: relative;
    aspect-ratio: 5/6;
    overflow: hidden;
}
#salesPage .partners-cta-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#salesPage /* Partner Category Pills */
.partner-category-pills{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}
#salesPage .partner-category-pill{
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
}
#salesPage .partner-category-pill:hover, #salesPage .partner-category-pill.active{
    background: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
}
#salesPage /* Placeholder image styling */
.partner-placeholder-img{
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
#salesPage /* Partners Page Mobile Adjustments */
@media (max-width: 768px){
    .partners-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .partners-featured-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .partners-main {
        padding: 40px 20px 60px;
    }
    
    .partners-video-feature {
        height: 350px;
    }
    
    .partners-video-content {
        padding: 0 30px;
    }
    
    .partners-cta-section {
        padding: 50px 20px;
    }
}
#salesPage /* Ensure anchor versions of menu/header elements inherit styling */
.menu-links a, #salesPage .menu-brand-links a{
    text-decoration: none;
    color: inherit;
    
}
#salesPage .menu-links a:hover{
    opacity: 0.9;
}
#salesPage .get-in-touch, #salesPage .get-in-touch-mobile, #salesPage .header-logo-section, #salesPage .side-tab{
    text-decoration: none;
    color: inherit;
}
#salesPage /* ============================================
           CSS RESET & ROOT VARIABLES
           ============================================ */
        

        

        

        

        h1, #salesPage h2, #salesPage h3, #salesPage h4, #salesPage h5, #salesPage h6{
            font-family: var(--font-display);
            font-weight: 500;
            line-height: 1.3;
        }
#salesPage a{
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
#salesPage img{
            max-width: 100%;
            height: auto;
            
        }
#salesPage button{
            font-family: var(--font-body);
            cursor: pointer;
            border: none;
            background: none;
        }
#salesPage /* ============================================
           HEADER - EXACT MATCH TO GREENHAUSDR.COM
           ============================================ */
        .header{
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--white);
            border-bottom: 1px solid var(--border-gray);
        }
#salesPage .header-container{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
            height: var(--header-height);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
#salesPage .header-left{
            display: flex;
            align-items: center;
            gap: 30px;
        }
#salesPage /* Hamburger Menu */
        .menu-toggle{
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 24px;
            height: 24px;
            cursor: pointer;
            padding: 4px 0;
        }
#salesPage .menu-toggle span{
            
            width: 100%;
            height: 2px;
            background-color: var(--text-dark);
            transition: all 0.3s ease;
        }
#salesPage .menu-toggle:hover span{
            background-color: var(--gold);
        }
#salesPage /* Logo */
.logo {
            width: 159.67px;
            height: 59.33px;
            object-fit: contain;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
#salesPage .logo-image{
            height: 55px;
            width: auto;
        }
#salesPage .logo-text{
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }
#salesPage .logo-text .brand-name{
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 500;
            font-style: italic;
            color: var(--dark-green);
            letter-spacing: 0.5px;
        }
#salesPage .logo-text .brand-tagline{
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 400;
            font-style: italic;
            color: var(--text-medium);
            letter-spacing: 0.3px;
        }
#salesPage /* Main Navigation */
        .main-nav{
            display: flex;
            align-items: center;
        }
#salesPage .nav-menu{
            display: flex;
            list-style: none;
            gap: 35px;
        }
#salesPage .nav-menu li a{
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark);
            padding: 8px 0;
            position: relative;
        }
#salesPage .nav-menu li a::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--gold);
            transition: width 0.3s ease;
        }
#salesPage .nav-menu li a:hover::after, #salesPage .nav-menu li a.active::after{
            width: 100%;
        }
#salesPage .nav-menu li a:hover, #salesPage .nav-menu li a.active{
            color: var(--gold);
        }
#salesPage /* Header Right - Search & Contact */
        .header-right{
            display: flex;
            align-items: center;
            gap: 20px;
        }
#salesPage .search-icon{
            width: 20px;
            height: 20px;
            cursor: pointer;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }
#salesPage .search-icon:hover{
            color: var(--gold);
        }
#salesPage .get-in-touch{
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark);
        }
#salesPage .get-in-touch:hover{
            color: var(--gold);
        }
#salesPage .contact-icons{
            display: flex;
            align-items: center;
            gap: 8px;
        }
#salesPage .contact-icons a{
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
#salesPage .contact-icons a:hover{
            background-color: var(--gold-hover);
            transform: translateY(-2px);
        }
#salesPage .contact-icons a svg{
            width: 16px;
            height: 16px;
            fill: var(--white);
        }
#salesPage /* ============================================
           SIDE NAVIGATION MENU
           ============================================ */
        .side-nav-overlay{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1100;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
#salesPage .side-nav-overlay.active{
            opacity: 1;
            visibility: visible;
        }
#salesPage .side-nav{
            position: fixed;
            top: 0;
            left: -350px;
            width: 350px;
            height: 100%;
            background-color: var(--white);
            z-index: 1200;
            transition: left 0.4s ease;
            overflow-y: auto;
        }
#salesPage .side-nav.active{
            left: 0;
        }
#salesPage .side-nav-header{
            padding: 25px 30px;
            border-bottom: 1px solid var(--border-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
#salesPage .side-nav-close{
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }
#salesPage .side-nav-close:hover{
            color: var(--gold);
        }
#salesPage .side-nav-menu{
            padding: 30px;
        }
#salesPage .side-nav-menu ul{
            list-style: none;
        }
#salesPage .side-nav-menu li{
            border-bottom: 1px solid var(--border-gray);
        }
#salesPage .side-nav-menu li a{
            
            padding: 18px 0;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }
#salesPage .side-nav-menu li a:hover, #salesPage .side-nav-menu li a.active{
            color: var(--gold);
            padding-left: 10px;
        }
#salesPage /* ============================================
           BOOK A VALUATION - FLOATING SIDE BUTTON
           ============================================ */
        .book-valuation-btn{
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--gold);
            color: var(--white);
            padding: 15px 12px;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            z-index: 999;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px 0 0 4px;
        }
#salesPage .book-valuation-btn:hover{
            background-color: var(--gold-hover);
            padding-right: 18px;
        }
#salesPage /* ============================================
           MAIN CONTENT WRAPPER
           ============================================ */
        .main-content-wrapper{
            position: relative;
        }
#salesPage /* ============================================
           SEARCH SECTION - OB PRIVATE STYLE (STICKY)
           ============================================ */
        .search-section{
            background-color: #f8f6f3;
            padding: 0;
            border-bottom: 1px solid #e5e5e5;
            position: sticky;
            top: 70px;
            z-index: 900;
        }
#salesPage .search-container,
#leasePage .search-container{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }
#salesPage .page-title{
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 35px;
            letter-spacing: 1px;
            display: none; /* Hidden */
        }

/* ============================================
   OB PRIVATE SEARCH BAR - EXACT MATCH IMAGE 2
   ============================================ */
#salesPage .search-bar,
#leasePage .search-bar{
            background-color: #ffffff;
            border: 1px solid #e5e5e5;
            padding: 0;
        }
#salesPage .search-fields,
#leasePage .search-fields{
            display: grid;
            grid-template-columns: 2.2fr 1.2fr 1fr 1fr auto;
            gap: 0;
            align-items: stretch;
        }
#salesPage .search-field,
#leasePage .search-field{
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 22px 25px;
            border-right: 1px solid #e5e5e5;
            border-bottom: 1px solid #e5e5e5;
        }
#salesPage .search-field:first-child,
#leasePage .search-field:first-child{
            padding-left: 25px;
        }
#salesPage .search-field:last-of-type,
#leasePage .search-field:last-of-type{
            border-right: none;
        }
#salesPage .search-field label,
#leasePage .search-field label{
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #c4a876;
            margin-bottom: 6px;
        }
#salesPage .search-field input,
#salesPage .search-field select,
#leasePage .search-field input,
#leasePage .search-field select{
            padding: 5px 0;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 500;
            background-color: transparent;
            color: #333;
            width: 100%;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0 center;
            padding-right: 18px;
        }
#salesPage .search-field input::placeholder,
#leasePage .search-field input::placeholder{
            color: #333;
            font-weight: 500;
        }
#salesPage .search-field input:focus,
#salesPage .search-field select:focus,
#leasePage .search-field input:focus,
#leasePage .search-field select:focus{
            outline: none;
        }

/* Search Button - OB Private Style */
#salesPage .btn-search,
#leasePage .btn-search{
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 22px 50px;
            background-color: #1a2332;
            color: #fff;
            border: none;
            border-bottom: 1px solid #e5e5e5;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s ease;
            white-space: nowrap;
            margin: 0;
        }
#salesPage .btn-search:hover,
#leasePage .btn-search:hover{
            background-color: #c4a876;
        }

/* ============================================
   SEARCH CONTROLS ROW - OB PRIVATE EXACT MATCH
   ============================================ */
#salesPage .search-controls,
#leasePage .search-controls{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 25px;
            gap: 20px;
        }

/* Filters Button - Left Side */
#salesPage .filters-btn,
#leasePage .filters-btn{
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #333;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px 0;
            transition: color 0.3s ease;
        }
#salesPage .filters-btn:hover,
#leasePage .filters-btn:hover{
            color: #c4a876;
        }

/* Filters Icon - 3 horizontal lines */
#salesPage .filters-icon,
#leasePage .filters-icon{
            display: flex;
            flex-direction: column;
            gap: 3px;
            width: 18px;
        }
#salesPage .filters-icon span,
#leasePage .filters-icon span{
            height: 2px;
            background-color: currentColor;
            border-radius: 1px;
        }
#salesPage .filters-icon span:nth-child(1),
#leasePage .filters-icon span:nth-child(1){ width: 100%; }
#salesPage .filters-icon span:nth-child(2),
#leasePage .filters-icon span:nth-child(2){ width: 70%; }
#salesPage .filters-icon span:nth-child(3),
#leasePage .filters-icon span:nth-child(3){ width: 40%; }

/* Search Options - Right Side */
#salesPage .search-options,
#leasePage .search-options{
            display: flex;
            align-items: center;
            gap: 35px;
        }

/* Option Groups (Currency, Sort By) */
#salesPage .option-group,
#leasePage .option-group{
            display: flex;
            align-items: center;
            gap: 10px;
        }
#salesPage .option-group label,
#leasePage .option-group label{
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #9ca3af;
        }
#salesPage .option-group select,
#leasePage .option-group select{
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: #333;
            border: none;
            background: transparent;
            cursor: pointer;
            padding: 5px 0;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0 center;
            padding-right: 15px;
        }
#salesPage .option-group select:focus,
#leasePage .option-group select:focus{
            outline: none;
        }

/* View Toggle (MAP | LIST) - OB Private Style */
#salesPage .view-toggle,
#leasePage .view-toggle{
            display: flex;
            align-items: center;
            gap: 0;
            position: relative;
        }
#salesPage .view-toggle .view-btn,
#leasePage .view-toggle .view-btn{
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #9ca3af;
            padding: 8px 15px;
            cursor: pointer;
            transition: color 0.3s ease;
            text-decoration: none;
            background: none;
            border: none;
        }
#salesPage .view-toggle .view-btn:hover,
#salesPage .view-toggle .view-btn.active,
#leasePage .view-toggle .view-btn:hover,
#leasePage .view-toggle .view-btn.active{
            color: #333;
        }

/* Hide the refine-search-row completely */
#salesPage .refine-search-row,
#leasePage .refine-search-row{
            display: none !important;
        }

/* ============================================
   RESPONSIVE - SEARCH SECTION
   ============================================ */
@media (max-width: 1200px) {
    #salesPage .search-container,
    #leasePage .search-container{
        padding: 0 30px;
    }
    #salesPage .search-fields,
    #leasePage .search-fields{
        grid-template-columns: 2fr 1.2fr 1fr 1fr auto;
    }
}

@media (max-width: 992px) {
    #salesPage .search-fields,
    #leasePage .search-fields{
        grid-template-columns: 1fr 1fr;
    }
    #salesPage .search-field,
    #leasePage .search-field{
        border-bottom: 1px solid #e5e5e5;
    }
    #salesPage .search-field:nth-child(odd),
    #leasePage .search-field:nth-child(odd){
        border-right: 1px solid #e5e5e5;
    }
    #salesPage .search-field:nth-child(even),
    #leasePage .search-field:nth-child(even){
        border-right: none;
    }
    #salesPage .btn-search,
    #leasePage .btn-search{
        grid-column: 1 / -1;
        padding: 18px 30px;
    }
    #salesPage .search-controls,
    #leasePage .search-controls{
        flex-wrap: wrap;
        gap: 15px;
    }
    #salesPage .search-options,
    #leasePage .search-options{
        gap: 25px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    #salesPage .search-container,
    #leasePage .search-container{
        padding: 0 20px;
    }
    #salesPage .search-fields,
    #leasePage .search-fields{
        grid-template-columns: 1fr;
    }
    #salesPage .search-field,
    #leasePage .search-field{
        border-right: none !important;
        border-bottom: 1px solid #e5e5e5;
        padding: 18px 20px;
    }
    #salesPage .btn-search,
    #leasePage .btn-search{
        width: 100%;
        padding: 18px 30px;
    }
    #salesPage .search-controls,
    #leasePage .search-controls{
        flex-direction: column;
        align-items: stretch;
        padding: 15px 20px;
        gap: 15px;
    }
    #salesPage .filters-btn,
    #leasePage .filters-btn{
        justify-content: center;
        padding: 12px 0;
        border-bottom: 1px solid #e5e5e5;
    }
    #salesPage .search-options,
    #leasePage .search-options{
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 480px) {
    #salesPage .search-options,
    #leasePage .search-options{
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    #salesPage .option-group,
    #leasePage .option-group{
        justify-content: space-between;
        width: 100%;
    }
    #salesPage .view-toggle,
    #leasePage .view-toggle{
        justify-content: center;
    }
}

/* Remove old refine-search styles */

/* ============================================
   OB Micro-Polish: Animated underline for Map/List
============================================ */
.view-toggle.ob-micro,
.filter-view-toggle.ob-micro{
  position: relative;
  --underline-left: 0px;
  --underline-width: 0px;
  padding-bottom: 6px;
}
.view-toggle.ob-micro .view-underline,
.filter-view-toggle.ob-micro .view-underline{
  position: absolute;
  left: var(--underline-left);
  width: var(--underline-width);
  height: 2px;
  bottom: 0;
  background: var(--text);
  opacity: 0.9;
  transition: left 220ms ease, width 220ms ease;
  border-radius: 2px;
  pointer-events: none;
}
.view-toggle.ob-micro .view-btn,
.filter-view-toggle.ob-micro .view-btn{
  position: relative;
  padding-bottom: 8px; /* space for underline */
}
#salesPage /* ============================================
           FILTER PANEL - OB PRIVATE STYLE
           ============================================ */
        .filter-panel {
            display: none;
            background-color: var(--white);
            border: 1px solid var(--border-gray);
            border-top: 2px solid rgba(0,0,0,0.08);
            padding: 0;
            margin-top: 12px;
        
  border: 2px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
#salesPage .filter-panel.active{
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 20050;
            margin: 0;
            border: none;
            overflow-y: auto;
        }
#salesPage .filter-panel-header{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            border-bottom: 1px solid var(--border-gray);
        }
#salesPage .filter-close-btn{
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark);
            cursor: pointer;
            padding: 8px 0;
            transition: color 0.3s ease;
        }
#salesPage .filter-close-btn:hover{
            color: var(--gold);
        }
#salesPage .filter-close-btn svg{
            width: 14px;
            height: 14px;
            stroke: currentColor;
            stroke-width: 2;
        }
#salesPage .filter-panel-options{
            display: flex;
            align-items: center;
            gap: 30px;
        }

/* Filter checkbox improvements for better touch targets */
#salesPage .filter-checkbox{
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            padding: 8px 0;
            min-height: 44px;
            touch-action: manipulation;
        }
        
#salesPage .filter-column h5{
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
#salesPage .filter-options{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
#salesPage .filter-checkbox{
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }
#salesPage .filter-checkbox input[type="checkbox"]{
            appearance: none;
            -webkit-appearance: none;
            width: 16px;
            height: 16px;
            border: 1px solid var(--border-gray);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }
#salesPage .filter-checkbox input[type="checkbox"]:checked{
            background-color: var(--navy-blue);
            border-color: var(--navy-blue);
        }
#salesPage .filter-checkbox input[type="checkbox"]:checked::after{
            content: '';
            position: absolute;
            left: 5px;
            top: 2px;
            width: 4px;
            height: 8px;
            border: solid var(--white);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
#salesPage .filter-checkbox input[type="checkbox"]:hover{
            border-color: var(--gold);
        }
#salesPage .filter-checkbox span{
            font-size: 12px;
            font-weight: 400;
            color: var(--text-medium);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
#salesPage .filter-panel-footer{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            border-top: 1px solid var(--border-gray);
        }
#salesPage .clear-filters-btn{
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-dark);
            text-decoration: underline;
            cursor: pointer;
            padding: 10px 0;
            transition: color 0.3s ease;
            background: none;
            border: none;
        }
#salesPage .clear-filters-btn:hover{
            color: var(--gold);
        }
#salesPage .apply-filters-btn{
            padding: 14px 35px;
            background-color: var(--navy-blue);
            color: var(--white);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
#salesPage .apply-filters-btn:hover{
            background-color: var(--gold);
        }
#salesPage .view-btn:hover, #salesPage .view-btn.active{
            color: var(--text-dark);
        }
#salesPage /* Filter Panel Responsive */
        @media (max-width: 992px){
            .filter-panel-

            .filter-panel-options {
                gap: 20px;
            }
        }
@media (max-width: 768px){#salesPage .filter-panel-

            .filter-panel-header{
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
                padding: 15px 20px;
            }
#salesPage .filter-panel-options{
                width: 100%;
                justify-content: space-between;
            }
#salesPage .filter-panel-footer{
                padding: 15px 20px;
            }
#salesPage .apply-filters-btn{
                padding: 12px 25px;
            }}
#salesPage /* ============================================
           RESULTS SECTION
           ============================================ */
        .results-section{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 30px var(--container-padding);
        }
#salesPage .results-header{
            margin-bottom: 25px;
        }
#salesPage .results-count{
            font-size: 14px;
            color: var(--text-medium);
            font-weight: 400;
        }
#salesPage .results-count span{
            font-weight: 600;
            color: var(--text-dark);
        }
#salesPage /* Property Grid */
        .property-grid{
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
#salesPage /* Property Card */
        .property-card{
            display: grid;
            grid-template-columns: 1fr 1fr;
            background-color: var(--white);
            border: 1px solid var(--border-gray);
            overflow: hidden;
            transition: all 0.3s ease;
        }
#salesPage .property-card:hover{
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }
#salesPage .property-image-container{
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/3;
        }
#salesPage .property-image{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
#salesPage .property-card:hover .property-image{
            transform: scale(1.05);
        }
#salesPage .property-image-nav{
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
#salesPage .property-card:hover .property-image-nav{
            opacity: 1;
        }
#salesPage .property-image-nav.prev{ left: 15px; }
#salesPage .property-image-nav.next{ right: 15px; }
#salesPage .property-image-nav svg{
            width: 16px;
            height: 16px;
            stroke: var(--text-dark);
        }
#salesPage .image-dots{
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
        }
#salesPage .image-dot{
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
#salesPage .image-dot.active{
            background-color: var(--white);
        }
#salesPage .property-details{
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
#salesPage .property-title{
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 5px;
        }
#salesPage .property-location{
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 400;
            font-style: italic;
            color: var(--text-medium);
            margin-bottom: 20px;
        }
#salesPage .property-description{
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 30px;
        }
#salesPage .property-features{
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border-gray);
        }
#salesPage .feature{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }
#salesPage .feature-icon{
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
#salesPage .feature-icon svg{
            width: 24px;
            height: 24px;
            stroke: var(--text-medium);
            fill: none;
        }
#salesPage .feature-value{
            font-size: 13px;
            font-weight: 500;
            color: var(--text-dark);
        }
#salesPage .property-price{
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
#salesPage .price-label{
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 5px;
        }
#salesPage .price-amount{
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 500;
            color: var(--text-dark);
        }

/* Property Badge - OB Private Style */
#salesPage .property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--navy-blue);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    z-index: 5;
}

/* Recently Sold Section - OB Private Style */
#salesPage .recently-sold-section {
    max-width: var(--container-max);
    margin: 60px auto 40px;
    padding: 0 var(--container-padding);
}

#salesPage .recently-sold-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-gray);
}

#salesPage .recently-sold-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--border-gray) transparent;
}

#salesPage .recently-sold-carousel::-webkit-scrollbar {
    height: 6px;
}

#salesPage .recently-sold-carousel::-webkit-scrollbar-track {
    background: transparent;
}

#salesPage .recently-sold-carousel::-webkit-scrollbar-thumb {
    background-color: var(--border-gray);
    border-radius: 3px;
}

#salesPage .sold-property-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--border-gray);
    position: relative;
    transition: all 0.3s ease;
}

#salesPage .sold-property-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

#salesPage .sold-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--text-dark);
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 12px;
    z-index: 5;
}

#salesPage .sold-property-image {
    aspect-ratio: 5/3;
    overflow: hidden;
}

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

#salesPage .sold-property-card:hover .sold-property-image img {
    transform: scale(1.05);
}

#salesPage .sold-property-content {
    padding: 20px;
}

#salesPage .sold-property-content h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 5px;
}

#salesPage .sold-location {
    font-size: 14px;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 12px;
}

#salesPage .sold-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-gray);
}

#salesPage .sold-features span {
    font-size: 13px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 5px;
}

#salesPage .sold-features span::before {
    content: '';
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}

#salesPage .sold-features span:nth-child(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23666' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M3 21V7a2 2 0 012-2h14a2 2 0 012 2v14M3 11h18M7 11V7M17 11V7M7 21v-4a2 2 0 012-2h6a2 2 0 012 2v4'/%3E%3C/svg%3E");
}

#salesPage .sold-features span:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23666' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M4 12h16M4 12a2 2 0 00-2 2v4a2 2 0 002 2h16a2 2 0 002-2v-4a2 2 0 00-2-2M6 12V5a2 2 0 012-2h2a2 2 0 012 2v7'/%3E%3C/svg%3E");
}

#salesPage .sold-features span:nth-child(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23666' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Crect height='18' rx='2' width='18' x='3' y='3'/%3E%3Cpath d='M3 9h18M9 21V9'/%3E%3C/svg%3E");
}

#salesPage .sold-price {
    font-size: 12px;
    color: var(--text-medium);
}

#salesPage .sold-price strong {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    
    margin-top: 3px;
}

#salesPage /* No Results */
        .no-results{
            text-align: center;
            padding: 80px 20px;
        }
#salesPage .no-results h2{
            font-size: 32px;
            color: var(--text-dark);
            margin-bottom: 15px;
        }
#salesPage .no-results p{
            color: var(--text-medium);
            margin-bottom: 30px;
        }
#salesPage /* ============================================
           PAGINATION
           ============================================ */
        .pagination{
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 25px 0;
            max-width: var(--container-max);
            margin: 0 auto;
        }
#salesPage .pagination-btn{
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
            background-color: transparent;
            border: 1px solid var(--border-gray);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
#salesPage .pagination-btn:hover{
            border-color: var(--navy-blue);
            color: var(--navy-blue);
        }
#salesPage .pagination-btn.active{
            background-color: var(--navy-blue);
            border-color: var(--navy-blue);
            color: var(--white);
        }
#salesPage .pagination-btn.disabled{
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
        }
#salesPage .pagination-ellipsis{
            font-size: 14px;
            color: var(--text-medium);
            padding: 0 5px;
        }
#salesPage .pagination-arrow{
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            border: 1px solid var(--border-gray);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
#salesPage .pagination-arrow:hover{
            border-color: var(--navy-blue);
        }
#salesPage .pagination-arrow svg{
            width: 16px;
            height: 16px;
            stroke: var(--text-dark);
            fill: none;
        }
#salesPage /* ============================================
           RECENTLY LET/SOLD CAROUSEL SECTION
           ============================================ */
        .recently-section{
            background-color: var(--white);
            padding: 30px 0;
            border-top: 1px solid var(--border-gray);
            border-bottom: 1px solid var(--border-gray);
        }
#salesPage .recently-container{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }
#salesPage .recently-header{
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
#salesPage .recently-title{
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-medium);
        }
#salesPage .recently-nav{
            display: flex;
            gap: 10px;
        }
#salesPage .recently-nav-btn{
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            border: 1px solid var(--border-gray);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
#salesPage .recently-nav-btn:hover{
            border-color: var(--navy-blue);
        }
#salesPage .recently-nav-btn svg{
            width: 14px;
            height: 14px;
            stroke: var(--text-dark);
            fill: none;
        }
#salesPage .recently-carousel{
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 10px;
        }
#salesPage .recently-carousel::-webkit-scrollbar{
            display: none;
        }
#salesPage .recently-card{
            flex: 0 0 200px;
            scroll-snap-align: start;
            background-color: var(--white);
            border: 1px solid var(--border-gray);
            overflow: hidden;
            transition: all 0.3s ease;
        }
#salesPage .recently-card:hover{
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
#salesPage .recently-card-image{
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
        }
#salesPage .recently-card-image img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
#salesPage .recently-card:hover .recently-card-image img{
            transform: scale(1.05);
        }
#salesPage .recently-badge{
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 5px 12px;
            background-color: var(--gold);
            color: var(--white);
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
#salesPage .recently-card-content{
            padding: 15px;
        }
#salesPage .recently-card-title{
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 3px;
            line-height: 1.3;
        }
#salesPage .recently-card-location{
            font-family: var(--font-display);
            font-size: 13px;
            font-style: italic;
            color: var(--text-medium);
            margin-bottom: 12px;
        }
#salesPage .recently-card-features{
            display: flex;
            gap: 15px;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-gray);
        }
#salesPage .recently-feature{
            display: flex;
            align-items: center;
            gap: 5px;
        }
#salesPage .recently-feature svg{
            width: 14px;
            height: 14px;
            stroke: var(--text-light);
            fill: none;
        }
#salesPage .recently-feature span{
            font-size: 11px;
            color: var(--text-medium);
        }
#salesPage .recently-card-price{
            display: flex;
            flex-direction: column;
        }
#salesPage .recently-price-label{
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 2px;
        }
#salesPage .recently-price-amount{
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 500;
            color: var(--text-dark);
        }
#salesPage /* ============================================
           NEWSLETTER SECTION - EXACT MATCH
           ============================================ */
        .newsletter-section{
            background-color: var(--white);
            padding: 35px 0;
            border-top: 1px solid var(--border-gray);
        }
#salesPage .newsletter-container{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
#salesPage .newsletter-text{
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 400;
            font-style: italic;
            color: var(--text-dark);
            letter-spacing: 0.3px;
        }
#salesPage .newsletter-btn{
            padding: 16px 50px;
            background-color: var(--gold);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
#salesPage .newsletter-btn:hover{
            background-color: var(--gold-hover);
        }
#salesPage /* ============================================
           FOOTER - EXACT MATCH TO GREENHAUSDR.COM
           ============================================ */
        .footer{
            background-color: var(--footer-gray);
            padding-top: 60px;
            position: relative;
        }
#salesPage .footer-main{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
            display: grid;
            grid-template-columns: 1.3fr 1fr 1.3fr 1fr 1fr;
            gap: 30px;
        }
#salesPage /* Footer Logo Section */
        .footer-brand{
            display: flex;
            flex-direction: column;
        }
#salesPage .footer-logo-wrapper{
            display: flex;
            align-items: center;
            gap: 12px;
        }
#salesPage .footer-logo-icon{
            width: 60px;
            height: 60px;
            flex-shrink: 0;
        }
#salesPage .footer-logo-text{
            display: flex;
            flex-direction: column;
        }
#salesPage .footer-logo-text .brand{
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 500;
            font-style: italic;
            color: var(--dark-green);
            line-height: 1;
        }
#salesPage .footer-logo-text .tagline{
            font-family: var(--font-display);
            font-size: 9px;
            font-style: italic;
            color: var(--text-medium);
            margin-top: 4px;
            letter-spacing: 0.3px;
        }
#salesPage /* Footer Columns */
        .footer-column h4{
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px;
        }
#salesPage .footer-links{
            list-style: none;
        }
#salesPage .footer-links li{
            margin-bottom: 10px;
        }
#salesPage .footer-links a{
            font-size: 13px;
            font-weight: 400;
            color: var(--text-medium);
            letter-spacing: 0.3px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }
#salesPage .footer-links a:hover{
            color: var(--gold);
        }
#salesPage /* Partner Logos */
        .partner-logos{
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }
#salesPage .partner-logo-placeholder{
            height: 28px;
            padding: 4px 8px;
            font-size: 9px;
            font-weight: 700;
            color: var(--text-medium);
            display: flex;
            align-items: center;
            justify-content: center;
        }
#salesPage /* Social Media Row */
        .footer-social-row{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 40px var(--container-padding);
            display: flex;
            justify-content: center;
        }
#salesPage .footer-social{
            display: flex;
            gap: 10px;
        }
#salesPage .footer-social a{
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
#salesPage .footer-social a:hover{
            background-color: var(--gold-hover);
            transform: translateY(-3px);
        }
#salesPage .footer-social a svg{
            width: 18px;
            height: 18px;
            fill: var(--white);
        }
#salesPage /* Footer Bottom */
        .footer-bottom{
            border-top: 1px solid var(--border-gray);
            background-color: var(--footer-gray);
        }
#salesPage .footer-bottom-content{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 20px var(--container-padding);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
#salesPage .footer-copyright{
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-medium);
        }
#salesPage .footer-credit{
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 500;
            color: var(--text-medium);
        }
#salesPage .footer-credit .prisma-icon{
            width: 14px;
            height: 14px;
            color: var(--gold);
        }
#salesPage /* ============================================
           SCROLL TO TOP BUTTON - INSIDE FOOTER
           ============================================ */
        .scroll-to-top{
            position: absolute;
            bottom: 70px;
            left: 30px;
            width: 48px;
            height: 48px;
            background-color: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 100;
            opacity: 1;
            visibility: visible;
            border: none;
        }
#salesPage .scroll-to-top:hover{
            background-color: var(--gold-hover);
            transform: translateY(-3px);
        }
#salesPage .scroll-to-top svg{
            width: 20px;
            height: 20px;
            stroke: var(--white);
            fill: none;
        }
#salesPage /* Mobile Scroll Row - Hidden on desktop */
        .mobile-scroll-row{
            display: none;
        }
#salesPage .scroll-to-top-mobile{
            width: 44px;
            height: 44px;
            background-color: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
#salesPage .scroll-to-top-mobile:hover{
            background-color: var(--gold-hover);
        }
#salesPage .scroll-to-top-mobile svg{
            width: 18px;
            height: 18px;
            stroke: var(--white);
            fill: none;
            pointer-events: none;
        }
#salesPage /* ============================================
           MOBILE STICKY SEARCH BAR
           ============================================ */
        .mobile-sticky-search{
            display: none;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            z-index: 950;
            background-color: var(--white);
            padding: 15px var(--container-padding);
            border-bottom: 1px solid var(--border-gray);
            transition: transform 0.3s ease;
        }
#salesPage .mobile-sticky-search.hidden{
            transform: translateY(-100%);
        }
#salesPage .mobile-sticky-search.at-footer{
            display: none !important;
        }
#salesPage .mobile-sticky-search-inner{
            display: flex;
            gap: 12px;
            align-items: stretch;
        }
#salesPage .mobile-refine-btn{
            flex: 1;
            padding: 16px 25px;
            background-color: var(--navy-blue);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
#salesPage .mobile-refine-btn:hover{
            background-color: var(--gold);
        }
#salesPage .mobile-filter-icon-btn{
            width: 54px;
            height: 54px;
            background-color: var(--white);
            border: 1px solid var(--border-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
#salesPage .mobile-filter-icon-btn:hover{
            border-color: var(--gold);
        }
#salesPage .mobile-filter-icon-btn svg{
            width: 22px;
            height: 22px;
            stroke: var(--text-dark);
            pointer-events: none;
        }
#salesPage /* Mobile Full-Screen Filter Panel */
        .mobile-filter-overlay{
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--white);
            z-index: 999999;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            transform: translateY(100%);
            -webkit-transform: translateY(100%);
            transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
            -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        }
#salesPage .mobile-filter-overlay.active{
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
            -webkit-transform: translateY(0);
        }
#salesPage .mobile-filter-header{
            position: sticky;
            top: 0;
            background-color: var(--white);
            padding: 20px var(--container-padding);
            border-bottom: 1px solid var(--border-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
        }
#salesPage .mobile-filter-title{
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-dark);
        }
#salesPage .mobile-filter-close{
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            transition: background-color 0.3s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            background: none;
            border: none;
        }
#salesPage .mobile-filter-close:hover{
            background-color: var(--light-gray);
        }
#salesPage .mobile-filter-close svg{
            width: 24px;
            height: 24px;
            stroke: var(--text-dark);
            stroke-width: 2;
            pointer-events: none;
        }
#salesPage .mobile-filter-controls{
            display: flex;
            padding: 15px var(--container-padding);
            border-bottom: 1px solid var(--border-gray);
            gap: 0;
        }
#salesPage .mobile-filter-control{
            flex: 1;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 0;
        }
#salesPage .mobile-filter-control:first-child{
            border-right: 1px solid var(--border-gray);
            padding-right: 15px;
        }
#salesPage .mobile-filter-control:last-child{
            padding-left: 15px;
        }
#salesPage .mobile-filter-control label{
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-dark);
        }
#salesPage .mobile-filter-control select{
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
            border: none;
            background: transparent;
            cursor: pointer;
            -webkit-appearance: menulist;
            appearance: menulist;
            padding: 5px 10px 5px 0;
            min-width: 100px;
        }
#salesPage .mobile-filter-

        .mobile-filter-section{
            margin-bottom: 30px;
        }
#salesPage .mobile-filter-section:last-child{
            margin-bottom: 0;
        }
#salesPage .mobile-filter-section h5{
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px;
        }
#salesPage .mobile-filter-options{
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
#salesPage .mobile-filter-checkbox{
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }
#salesPage .mobile-filter-checkbox input[type="checkbox"]{
            appearance: none;
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border: 1px solid var(--border-gray);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }
#salesPage .mobile-filter-checkbox input[type="checkbox"]:checked{
            background-color: var(--navy-blue);
            border-color: var(--navy-blue);
        }
#salesPage .mobile-filter-checkbox input[type="checkbox"]:checked::after{
            content: '';
            position: absolute;
            left: 6px;
            top: 2px;
            width: 5px;
            height: 10px;
            border: solid var(--white);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
#salesPage .mobile-filter-checkbox span{
            font-size: 13px;
            font-weight: 400;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
#salesPage .mobile-filter-footer{
            position: sticky;
            bottom: 0;
            background-color: var(--white);
            padding: 20px var(--container-padding);
            border-top: 1px solid var(--border-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
#salesPage .mobile-clear-btn{
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-dark);
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px 0;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
#salesPage .mobile-apply-btn{
            padding: 16px 50px;
            background-color: var(--navy-blue);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
#salesPage .mobile-apply-btn:hover{
            background-color: var(--gold);
        }
#salesPage /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 1200px){
            

            .nav-menu {
                gap: 25px;
            }

            .search-fields {
                grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
            }

            .footer-main {
                grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
                gap: 25px;
            }

            .footer-column:last-child {
                grid-column: auto;
            }
        }
@media (max-width: 992px){#salesPage .main-nav{
                display: none;
            }
#salesPage .page-title{
                font-size: 38px;
            }
#salesPage .search-fields{
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                border-bottom: none;
                padding-bottom: 0;
            }
#salesPage .search-field{
                border-right: none;
                border-bottom: 1px solid var(--border-gray);
                padding: 0 0 15px 0;
            }
#salesPage .btn-search{
                grid-column: 1 / -1;
                margin: 20px 0 0 0;
            }
#salesPage .property-card{
                grid-template-columns: 1fr;
            }
#salesPage .newsletter-container{
                flex-direction: column;
                text-align: center;
                gap: 25px;
            }
#salesPage .footer-main{
                grid-template-columns: 1fr 1fr;
                gap: 35px;
            }
#salesPage .footer-brand{
                grid-column: 1 / -1;
                align-items: center;
                padding-bottom: 30px;
                border-bottom: 1px solid var(--border-gray);
            }
#salesPage .scroll-to-top-desktop{
                left: 20px;
                bottom: 60px;
            }}
@media (max-width: 768px){#salesPage .logo-text .brand-name{
                font-size: 22px;
            }
#salesPage .logo-text .brand-tagline{
                display: none;
            }
#salesPage .get-in-touch span{
                display: none;
            }
#salesPage /* Hide desktop search section on mobile */
            .search-section{
                display: none;
            }
#salesPage /* Show mobile sticky search */
            .mobile-sticky-search{
                
            }
#salesPage /* Hide mobile sticky search at footer */
            .mobile-sticky-search.at-footer{
                display: none !important;
            }
#salesPage /* Enable mobile filter overlay visibility */
            .mobile-filter-overlay{
                visibility: hidden;
                opacity: 0;
            }
#salesPage .mobile-filter-overlay.active{
                visibility: visible;
                opacity: 1;
            }
#salesPage /* Adjust results section for sticky bar */
            .results-section{
                padding-top: 100px;
            }
#salesPage /* Pagination mobile */
            .pagination{
                padding: 30px 20px;
                gap: 5px;
            }
#salesPage .pagination-btn, #salesPage .pagination-arrow{
                width: 36px;
                height: 36px;
                font-size: 13px;
            }
#salesPage /* Recently section mobile */
            .recently-section{
                padding: 40px 0;
            }
#salesPage .recently-card{
                flex: 0 0 180px;
            }
#salesPage .recently-card-title{
                font-size: 13px;
            }
#salesPage .recently-card-location{
                font-size: 12px;
            }
#salesPage .recently-price-amount{
                font-size: 14px;
            }
#salesPage .page-title{
                font-size: 32px;
            }
#salesPage .property-details{
                padding: 25px;
            }
#salesPage .property-title{
                font-size: 26px;
            }
#salesPage .newsletter-text{
                font-size: 18px;
                line-height: 1.5;
            }
#salesPage /* Mobile Footer - Left Aligned Layout (OB Private Style) */
            .footer{
                padding-top: 40px;
            }
#salesPage .footer-main{
                grid-template-columns: 1fr;
                text-align: left;
                gap: 0;
            }
#salesPage .footer-brand{
                align-items: flex-start;
                padding-bottom: 30px;
                margin-bottom: 0;
                border-bottom: none;
            }
#salesPage .footer-logo-wrapper{
                flex-direction: row;
                gap: 10px;
            }
#salesPage .footer-logo-text{
                align-items: flex-start;
            }
#salesPage .footer-column{
                padding: 25px 0 20px;
                border-bottom: none;
            }
#salesPage .footer-column h4{
                margin-bottom: 15px;
                color: var(--gold);
            }
#salesPage .footer-links{
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
#salesPage .footer-links li{
                margin-bottom: 0;
            }
#salesPage .footer-links a{
                font-size: 12px;
            }
#salesPage .partner-logos{
                justify-content: flex-start;
                margin-top: 15px;
            }
#salesPage /* Social icons after each section on mobile */
            .footer-social-section{
                display: flex;
                gap: 10px;
                margin-top: 15px;
            }
#salesPage .footer-social-section a{
                width: 36px;
                height: 36px;
                border-radius: 50%;
                background-color: var(--gold);
                display: flex;
                align-items: center;
                justify-content: center;
            }
#salesPage .footer-social-section a svg{
                width: 16px;
                height: 16px;
                fill: var(--white);
            }
#salesPage .footer-social-row{
                padding: 25px var(--container-padding);
                border-top: 1px solid var(--border-gray);
                justify-content: flex-start;
            }
#salesPage .footer-bottom-content{
                flex-direction: column;
                gap: 10px;
                text-align: left;
                align-items: flex-start;
                padding: 20px var(--container-padding);
            }
#salesPage .scroll-to-top-desktop{
                display: none;
            }
#salesPage .mobile-scroll-row{
                display: flex;
                justify-content: flex-start;
                padding: 20px var(--container-padding);
                border-top: 1px solid var(--border-gray);
            }
#salesPage .book-valuation-btn{
                font-size: 10px;
                padding: 12px 10px;
            }}


/* ===== Properties Sales Search Engine overrides ===== */
.search-section {
            background-color: var(--cream);
            padding: 20px 0 25px;
            border-bottom: 1px solid var(--border-gray);
            position: sticky;
            top: var(--header-height);
            z-index: 900;
        }

        .search-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }

        .page-title {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 35px;
            letter-spacing: 1px;
            display: none; /* Hidden */
        }

        /* Search Bar - OB Private Style */
        .search-bar {
            background-color: var(--white);
            border: 1px solid var(--border-gray);
            padding: 25px 30px;
        }

        .search-fields {
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr 1fr auto;
            gap: 0;
            align-items: end;
            border-bottom: 1px solid var(--border-gray);
            padding-bottom: 20px;
        }

        .search-field {
            display: flex;
            flex-direction: column;
            padding: 0 20px;
            border-right: 1px solid var(--border-gray);
        }

        .search-field:first-child {
            padding-left: 0;
        }

        .search-field:last-of-type {
            border-right: none;
        }

        .search-field label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .search-field input,
        .search-field select {
            padding: 10px 0;
            border: none;
            font-size: 14px;
            font-family: var(--font-body);
            font-weight: 500;
            background-color: transparent;
            color: var(--text-dark);
            width: 100%;
            cursor: pointer;
        }

        .search-field input::placeholder {
            color: var(--text-dark);
            font-weight: 500;
        }

        .search-field input:focus,
        .search-field select:focus {
            outline: none;
        }

        .search-field select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right center;
            padding-right: 20px;
        }

        .btn-search {
            padding: 15px 40px;
            background-color: var(--navy-blue);
            color: var(--white);
            border: none;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 20px;
            white-space: nowrap;
        }

        .btn-search:hover {
            background-color: var(--gold);
        }

        /* Search Controls Row */
        .search-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 18px;
        }

        .filters-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark);
            cursor: pointer;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .filters-btn:hover {
            color: var(--gold);
        }

        .filters-icon {
            display: flex;
            flex-direction: column;
            gap: 3px;
            width: 16px;
        }

        .filters-icon span {
            height: 2px;
            background-color: currentColor;
            border-radius: 1px;
        }

        .filters-icon span:nth-child(1) { width: 100%; }
        .filters-icon span:nth-child(2) { width: 75%; }
        .filters-icon span:nth-child(3) { width: 50%; }

        .search-options {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .option-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .option-group label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
        }

        .option-group select {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--text-dark);
            border: none;
            background: transparent;
            cursor: pointer;
            padding: 5px 0;
        }

        .option-group select:focus {
            outline: none;
        }

        .view-toggle {
            display: flex;
            gap: 15px;
        }

        .view-btn {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
            padding: 8px 0;
        }

        /* ============================================
           FILTER PANEL - OB PRIVATE STYLE
           ============================================ */
        .filter-panel {
            display: none;
            background-color: var(--white);
            border: 1px solid var(--border-gray);
            border-top: 2px solid rgba(0,0,0,0.08);
            padding: 0;
            margin-top: 12px;
        }

        .filter-panel.active {
            
        }

        .filter-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            border-bottom: 1px solid var(--border-gray);
        }
        
        .filter-panel-header h4 {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark);
            margin: 0;
            display: none; /* Hidden on desktop, shown on mobile */
        }

        .filter-close-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark);
            cursor: pointer;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .filter-close-btn:hover {
            color: var(--gold);
        }

        .filter-close-btn svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            stroke-width: 2;
        }

        .filter-panel-options {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        /* ============================================
           FILTER PANEL BODY - OB PRIVATE STYLE
           4-column grid layout with category sections
           ============================================ */
        .filter-panel-body {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding: 35px 30px 40px;
            border-top: 1px solid var(--border-gray);
        }

        .filter-column {
            display: flex;
            flex-direction: column;
        }

        .filter-column h5 {
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--navy-blue);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-gray);
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .filter-checkbox {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            padding: 10px 0;
            border-bottom: 1px solid transparent;
            transition: all 0.2s ease;
        }

        .filter-checkbox:hover {
            background-color: rgba(139, 115, 85, 0.03);
        }

        .filter-checkbox input[type="checkbox"] {
            appearance: none;
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border: 1.5px solid var(--border-gray);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .filter-checkbox input[type="checkbox"]:checked {
            background-color: var(--navy-blue);
            border-color: var(--navy-blue);
        }

        .filter-checkbox input[type="checkbox"]:checked::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 2px;
            width: 5px;
            height: 9px;
            border: solid var(--white);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .filter-checkbox input[type="checkbox"]:hover {
            border-color: var(--gold);
        }

        .filter-checkbox span {
            font-size: 13px;
            font-weight: 400;
            color: var(--text-medium);
            transition: color 0.2s ease;
        }

        .filter-checkbox:hover span {
            color: var(--text-dark);
        }

        .filter-checkbox input[type="checkbox"]:checked + span {
            color: var(--text-dark);
            font-weight: 500;
        }

        .filter-panel-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            border-top: 1px solid var(--border-gray);
            background-color: var(--white);
        }

        .clear-filters-btn {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.5px;
            color: var(--text-medium);
            text-decoration: underline;
            cursor: pointer;
            padding: 12px 0;
            transition: color 0.3s ease;
            background: none;
            border: none;
        }

        .clear-filters-btn:hover {
            color: var(--navy-blue);
        }

        .apply-filters-btn {
            padding: 14px 40px;
            background-color: var(--navy-blue);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .apply-filters-btn:hover {
            background-color: var(--gold);
        }

        .view-btn:hover,
        .view-btn.active {
            color: var(--text-dark);
        }

        /* ============================================
           FILTER PANEL RESPONSIVE - OB PRIVATE STYLE
           ============================================ */
        
        /* Tablet - 2 columns */
        @media (max-width: 992px) {
            .filter-panel-body {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                padding: 25px;
            }

            .filter-panel-options {
                gap: 20px;
            }
        }

        /* Mobile - Full screen slide-out panel */
        @media (max-width: 768px) {
            .filter-panel {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                margin-top: 0;
                z-index: 2000;
                display: none;
                flex-direction: column;
                background-color: var(--white);
                overflow: hidden;
            }
            
            .filter-panel.active {
                display: flex;
            }
            
            .filter-panel-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 20px;
                border-bottom: 1px solid var(--border-gray);
                background-color: var(--white);
                flex-shrink: 0;
            }
            
            .filter-panel-header h4 {
                 /* Show title on mobile */
                font-size: 14px;
                font-weight: 600;
                letter-spacing: 1px;
                text-transform: uppercase;
                color: var(--text-dark);
                margin: 0;
            }
            
            .filter-close-btn {
                order: 2;
            }
            
            .filter-close-btn span {
                display: none; /* Hide "Close" text on mobile, just show X */
            }
            
            .filter-panel-options {
                display: none; /* Hide options on mobile - show in header differently */
            }

            .filter-panel-body {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                padding: 20px 20px 120px;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                flex: 1;
            }
            
            .filter-column {
                padding: 0;
            }

            .filter-column h5 {
                font-size: 12px;
                letter-spacing: 1px;
                margin-bottom: 15px;
                padding-bottom: 10px;
            }

            .filter-checkbox {
                padding: 12px 0;
                min-height: 44px;
            }
            
            .filter-checkbox input[type="checkbox"] {
                width: 22px;
                height: 22px;
            }
            
            .filter-checkbox input[type="checkbox"]:checked::after {
                left: 7px;
                top: 3px;
                width: 6px;
                height: 11px;
            }
            
            .filter-checkbox span {
                font-size: 14px;
            }

            .filter-panel-footer {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                padding: 15px 20px;
                background-color: var(--white);
                box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
                z-index: 2001;
                flex-shrink: 0;
            }

            .clear-filters-btn,
            .apply-filters-btn {
                padding: 14px 20px;
                font-size: 13px;
            }
            
            .apply-filters-btn {
                flex: 1;
                text-align: center;
            }
        }
        
        /* Extra small screens - single column filters */
        @media (max-width: 480px) {
            .filter-panel-body {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        /* ============================================
           RESULTS SECTION
           ============================================ */
        .results-section {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 30px var(--container-padding);
        }

        .results-header {
            margin-bottom: 25px;
        }

        .results-count {
            font-size: 14px;
            color: var(--text-medium);
            font-weight: 400;
        }

        .results-count span {
            font-weight: 600;
            color: var(--text-dark);
        }

        /* Property Grid */
        
/* ============================================================
   SALES PAGE FIX
   Ensure the Properties Sales "search engine" renders at the TOP
   (prevents global hero .search-bar absolute positioning from
   pushing it to the bottom of the viewport).
   ============================================================ */
#salesPage .search-section{
  background-color: var(--cream);
  padding: 20px 0 25px;
  border-bottom: 1px solid var(--border-gray);
  position: relative; /* override any sticky/absolute conflicts */
  top: auto !important;
}
#salesPage .search-container{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
#salesPage .search-bar{
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  background-color: var(--white) !important;
  border: 1px solid var(--border-gray) !important;
  padding: 25px 30px !important;
  !important;
}
#salesPage .search-fields{
  display: grid !important;
  grid-template-columns: 2.5fr 1fr 1fr 1fr auto;
  gap: 0;
  align-items: end;
  border-bottom: 1px solid var(--border-gray);
  padding-bottom: 20px;
}
#salesPage .search-field{
  padding: 0 20px;
  border-right: 1px solid var(--border-gray);
}
#salesPage .search-field:first-child{ padding-left: 0; }
#salesPage .search-field:last-child{ border-right: none; padding-right: 20px; }
#salesPage .btn-search{
  padding: 15px 40px;
  background-color: var(--navy-blue);
  color: var(--white);
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 52px;
}
#salesPage .btn-search:hover{ opacity: 0.9; }


/* =========================================================
   SALES PAGE: Fix Filters overlay + sticky search + centering
   (scoped to #salesPage to avoid impacting other pages)
   ========================================================= */
#salesPage .search-section { position: relative; }

#salesPage .filter-panel{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: var(--sales-filter-top, 0px);
  z-index: 9998;
  overflow: auto;
  max-height: calc(100vh - var(--sales-filter-top, 0px));
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

#salesPage.filters-open .filter-panel{  }

#salesPage.filters-open .search-controls{ display: none !important; }

/* When filters are open, keep the search bar visible at the bottom like OB Private */
#salesPage.filters-open .search-bar{
  position: fixed !important;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  border-top: 1px solid var(--border-gray);
}

/* Prevent the fixed bottom bar from covering results */
#salesPage .main-content-wrapper{ padding-bottom: 120px; }

/* Center the results (green box area) */
#salesPage .main-content-wrapper{
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* Make the filters/sort bar look aligned and not cramped */
#salesPage .search-controls{
  width: 100%;
}


/* OB polish: sticky controls row (Filters / Currency / Sort / Map–List) */
#salesPage .ob-sticky-controls{
  position: sticky;
  top: var(--header-height, 80px);
  z-index: 10030;
  background: #fff;
  border-bottom: 1px solid var(--border-gray);
  padding: 14px 0;
  margin-top: 0;
  margin-bottom: 10px;
}
#salesPage .ob-sticky-controls .search-options{ gap: 22px; }
#salesPage .ob-sticky-controls .view-toggle{ gap: 18px; }

/* Sticky mobile search: keep it hovering over content while scrolling */
#salesPage .mobile-sticky-search{
  position: sticky;
  top: var(--sales-sticky-top, 80px);
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 10020;
  background: #fff;
  border-bottom: 1px solid var(--border-gray);
}

@media (min-width: 1025px){
  /* Keep sticky search visible on desktop too (as requested). */
  #salesPage .mobile-sticky-search{  }
}

@media (max-width: 1024px){
  #salesPage .main-content-wrapper{ padding-left: 16px; padding-right: 16px; }
}


body.no-scroll{overflow:hidden;}

/* Hide the old mobile-open-filters button since we replaced it */
#salesPage .mobile-open-filters {
  display: none !important;
}

/* ============================================================
   FILTER PANEL - OB PRIVATE EXACT STYLE
   ============================================================ */

/* Filter Panel Header - OB Private Layout */
#salesPage .filter-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 18px 30px;
  border-bottom: 1px solid var(--border-gray);
  background-color: var(--white);
}

#salesPage .filter-panel-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0;
  flex-shrink: 0;
}

/* Filter Panel Options in Header */
#salesPage .filter-panel-options {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
  justify-content: flex-start;
  margin-left: 30px;
}

/* Close Button - OB Private Style */
#salesPage .filter-close-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
  margin-left: auto;
  flex-shrink: 0;
}
#salesPage .filter-close-btn:hover {
  color: var(--gold);
}
#salesPage .filter-close-btn svg {
  display: none;
}

/* View Toggle Below Header */
#salesPage .filter-view-toggle {
  display: flex;
  gap: 15px;
  padding: 12px 30px;
  border-bottom: 1px solid var(--border-gray);
  background-color: var(--white);
}
#salesPage .filter-view-toggle .view-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}
#salesPage .filter-view-toggle .view-btn:hover,
#salesPage .filter-view-toggle .view-btn.active {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

/* Filter Panel Body - 4 Column Grid */
#salesPage .filter-panel-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 30px;
  background-color: var(--white);
}

/* Filter Columns */
#salesPage .filter-column h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gray);
}

/* Filter Checkboxes */
#salesPage .filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#salesPage .filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px 0;
  min-height: 32px;
}
#salesPage .filter-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border-gray);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
#salesPage .filter-checkbox input[type="checkbox"]:checked {
  background-color: var(--navy-blue);
  border-color: var(--navy-blue);
}
#salesPage .filter-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
#salesPage .filter-checkbox input[type="checkbox"]:hover {
  border-color: var(--gold);
}
#salesPage .filter-checkbox span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-medium);
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

/* Filter Panel Footer */
#salesPage .filter-panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-top: 1px solid var(--border-gray);
  background-color: var(--white);
}
#salesPage .clear-filters-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.3s ease;
}
#salesPage .clear-filters-btn:hover {
  color: var(--gold);
}
#salesPage .apply-filters-btn {
  background-color: var(--navy-blue);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 35px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#salesPage .apply-filters-btn:hover {
  background-color: var(--gold);
}

/* Filter Panel Mobile Responsive */
@media (max-width: 992px) {
  #salesPage .filter-panel-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }
  #salesPage .filter-panel-options {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
  }
  #salesPage .filter-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    margin-left: 0;
  }
  #salesPage .filter-panel-body {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 25px 20px;
  }
  #salesPage .filter-view-toggle {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  #salesPage .filter-panel-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  #salesPage .filter-panel-footer {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  #salesPage .apply-filters-btn {
    width: 100%;
    padding: 16px;
  }
  #salesPage .clear-filters-btn {
    order: 2;
  }
}


/* ============================================================
   SALES PAGE FIXES (overlay + sticky search) - enforced
   ============================================================ */
#salesPage.filters-open #filterPanel,
#salesPage #filterPanel.active{
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  top: var(--sales-filter-top, 80px) !important;
  bottom: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  z-index: 20050 !important;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

/* Ensure overlay sits above results + side tab */
#salesPage.filters-open{ position: relative; z-index: 1; }

/* Mobile sticky search must always hover while scrolling on sales page */
#salesPage #mobileStickySearch,
#salesPage .mobile-sticky-search{
  !important;
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  top: var(--sales-sticky-top, var(--sales-filter-top, 80px)) !important;
  bottom: auto !important;
  z-index: 10040 !important;
  background: #fff;
  border-bottom: 1px solid var(--border-gray);
}

/* Give content breathing room so sticky bar doesn't cover it */
#salesPage .main-content-wrapper,
#salesPage .properties-container,
#salesPage .property-grid{
  padding-bottom: 90px !important;
}

/* Center the results area (green box in your screenshot) */
#salesPage .properties-container,
#salesPage .property-grid,
#salesPage .property-list{
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}



/* Desktop footer: keep UAF, ACHO, CCPSD in one horizontal row */

/* Desktop footer fix: force UAF, ACHO, CCPSD to stay in ONE horizontal row (desktop) */
@media (min-width: 992px){
  .footer-partners-inline,
  #salesPage .footer-partners-inline{
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 18px !important;
  }
  .footer-partners-inline > *,
  #salesPage .footer-partners-inline > *{
    flex: 0 0 auto !important;
  }
  .footer-partners-inline img,
  #salesPage .footer-partners-inline img{
    max-height: 36px;
    height: auto;
    width: auto;
    object-fit: contain;
  }
}

@media (min-width: 992px){
  .footer .footer-logos,
  .footer .compliance-logos,
  .footer .partner-logos,
  .footer .footer-partners,
  .footer-logos,
  .compliance-logos,
  .partner-logos,
  .footer-partners{
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:18px !important;
    align-items:center !important;
    justify-content:center !important;
  }
  .footer .footer-logos img,
  .footer .compliance-logos img,
  .footer .partner-logos img,
  .footer .footer-partners img,
  .footer-logos img,
  .compliance-logos img,
  .partner-logos img,
  .footer-partners img{
    max-height:36px;
    height:auto;
    width:auto;
    object-fit:contain;
  }
}

/* Discover card anchor links */
.discover-card-link{ text-decoration:none; color: inherit; }
.discover-card-link:visited{ color: inherit; }
.discover-card-link:focus{ outline: 2px solid var(--gold); outline-offset: 4px; }

/* Lease page (embedded iframe) */
.iframe-section{
  padding-top: calc(var(--header-height) + 20px);
  background: var(--cream);
  min-height: calc(100vh - 200px);
}
.iframe-container{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding) 60px;
}
.page-iframe{
  width: 100%;
  min-height: 85vh;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
@media (max-width: 768px){
  .iframe-container{ padding: 0 20px 40px; }
  .page-iframe{ min-height: 80vh; border-radius: 10px; }
}
-e 
/* ===== Properties Lease (scoped to #leasePage) ===== */
#leasePage a{ color: inherit; text-decoration: none; }
#leasePage img{ max-width: 100%; height: auto; }
#leasePage /* Fixed Side Tab - Book Valuation */
        .side-tab{
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            background: var(--secondary);
            color: #fff;
            padding: 25px 14px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s, padding 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
#leasePage .side-tab:hover{
            background: #7a6347;
            padding: 25px 18px;
        }
#leasePage /* ==================== HEADER ==================== */
        .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(30,35,40,0.85);
            z-index: 1000;
            height: 70px;
            transition: background 0.3s, border 0.3s;
            backdrop-filter: blur(5px);
        }
#leasePage .header.scrolled{
            background: #fff;
            border-bottom: 1px solid var(--border);
            backdrop-filter: none;
        }
#leasePage .header-left{
            display: flex;
            align-items: center;
            height: 100%;
        }
#leasePage .hamburger-btn{
            display: flex;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0 25px;
            height: 100%;
            align-items: center;
            justify-content: center;
            border-right: 1px solid rgba(255,255,255,0.25);
            transition: border-color 0.3s;
        }
#leasePage .header.scrolled .hamburger-btn{
            border-right-color: #ccc;
        }
#leasePage .hamburger-btn span{
            
            width: 24px;
            height: 2px;
            background: #fff;
            transition: background 0.3s;
        }
#leasePage .header.scrolled .hamburger-btn span{
            background: var(--primary);
        }
#leasePage .header-logo-section{
            display: flex;
            align-items: center;
            height: 100%;
            padding: 0 15px;
            border-right: 1px solid rgba(255,255,255,0.25);
            transition: border-color 0.3s, background 0.3s;
            cursor: pointer;
        }
#leasePage .header.scrolled .header-logo-section{
            border-right-color: #ccc;
        }
#leasePage .logo{ 
            height: 65px; 
            transition: opacity 0.3s;
        }
#leasePage /* Dark background logo - shown on dark header (homepage) */
        .logo-dark{
            
        }
#leasePage /* Light background logo - hidden on dark header */
        .logo-light{
            display: none;
        }
#leasePage /* When scrolled (white header) - swap logos */
        .header.scrolled .logo-dark{
            display: none;
        }
#leasePage .header.scrolled .logo-light{
            
        }
#leasePage .slide-menu-logo{
            height: 60px;
        }
#leasePage .footer-logo{
            height: 60px;
            opacity: 1;
        }
#leasePage .thank-you-logo{
            height: 90px;
        }
#leasePage .promo-logo{
            height: 50px;
            object-fit: contain;
        }
#leasePage .nav-desktop{
            display: flex;
            align-items: center;
            gap: 35px;
            height: 100%;
            padding: 0 30px;
        }
#leasePage .nav-desktop span{
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 500;
            transition: color 0.3s;
            cursor: pointer;
        }
#leasePage .header.scrolled .nav-desktop span{
            color: var(--primary);
        }
#leasePage .nav-desktop span:hover{ color: var(--secondary); }
#leasePage .header-right{
            display: flex;
            align-items: center;
            height: 100%;
            margin-left: auto;
        }
#leasePage .header-search{
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 0 20px;
            border-left: 1px solid rgba(255,255,255,0.25);
            cursor: pointer;
            transition: border-color 0.3s;
        }
#leasePage .header.scrolled .header-search{
            border-left-color: #ccc;
        }
#leasePage .header-search svg{
            width: 18px;
            height: 18px;
            stroke: #fff;
            stroke-width: 2;
            fill: none;
            transition: stroke 0.3s;
        }
#leasePage .header.scrolled .header-search svg{
            stroke: var(--primary);
        }
#leasePage .header-right .get-in-touch{
            display: flex;
            align-items: center;
            height: 100%;
            padding: 0 25px;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s, border-color 0.3s;
            cursor: pointer;
            border-left: 1px solid rgba(255,255,255,0.25);
        }
#leasePage .header.scrolled .header-right .get-in-touch{
            color: var(--primary);
            border-left-color: #ccc;
        }
#leasePage .header-right .get-in-touch:hover{
            color: var(--secondary);
        }
#leasePage .header-icons{
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 20px;
        }
#leasePage .header-icon{
            position: relative;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            cursor: pointer;
        }
#leasePage .header-icon.email-icon{ background: var(--secondary); }
#leasePage .header-icon.whatsapp-icon{ background: #888; }
#leasePage .header-icon:hover{ transform: scale(1.05); }
#leasePage .header-icon svg{ width: 18px; height: 18px; fill: #fff; }
#leasePage .header-icon .tooltip{
            position: absolute;
            top: 50px;
            right: 0;
            background: #fff;
            border: 1px solid var(--border);
            padding: 10px 15px;
            font-size: 12px;
            color: var(--secondary);
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            z-index: 100;
        }
#leasePage .header-icon:hover .tooltip{
            opacity: 1;
            visibility: visible;
        }
#leasePage .lang-toggle{
            font-size: 11px;
            color: #fff;
            cursor: pointer;
            padding: 5px 10px;
            border: 1px solid rgba(255,255,255,0.3);
            background: transparent;
            font-family: inherit;
            transition: all 0.3s;
            margin-right: 20px;
        }
#leasePage .header.scrolled .lang-toggle{
            color: var(--text);
            border-color: var(--border);
        }
#leasePage /* ==================== SLIDE-OUT MENU ==================== */
        .slide-menu{
            position: fixed;
            top: 0;
            left: -450px;
            width: 450px;
            max-width: 90vw;
            height: 100vh;
            background: #fff;
            z-index: 3000;
            transition: left 0.4s ease;
            overflow-y: auto;
            box-shadow: 5px 0 30px rgba(0,0,0,0.15);
        }
#leasePage .slide-menu.active{
            left: 0;
        }
#leasePage .slide-menu-overlay{
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 2999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
#leasePage .slide-menu-overlay.active{
            opacity: 1;
            visibility: visible;
        }
#leasePage .slide-menu-header{
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 30px;
            border-bottom: 1px solid var(--border);
        }
#leasePage .slide-menu-close{
            display: flex;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }
#leasePage .slide-menu-close span{
            
            width: 24px;
            height: 2px;
            background: var(--primary);
        }
#leasePage .slide-menu-logo{
            height: 40px;
        }
#leasePage .slide-menu-content{
            padding: 30px;
        }
#leasePage .menu-section{
            margin-bottom: 25px;
        }
#leasePage .menu-section-title{
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 20px;
        }
#leasePage .menu-section-title.gold{
            color: var(--gold);
        }
#leasePage .menu-links span{
            
            padding: 12px 0 12px 20px;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text);
            transition: color 0.3s;
            cursor: pointer;
        }
#leasePage .menu-links span:hover{
            color: var(--secondary);
        }
#leasePage .menu-divider{
            height: 1px;
            background: var(--border);
            margin: 20px 0;
        }
#leasePage .menu-brand-links{
            margin-bottom: 20px;
        }
#leasePage .menu-brand-links span{
            
            padding: 10px 0;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
        }
#leasePage .menu-brand-links span.gold{
            color: var(--gold);
        }
#leasePage .menu-brand-links span.dark{
            color: var(--primary);
        }
#leasePage .menu-social{
            display: flex;
            gap: 12px;
            padding: 20px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
#leasePage .menu-social a{
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
#leasePage .menu-social a:hover{
            background: #7a6347;
        }
#leasePage .menu-social svg{
            width: 18px;
            height: 18px;
            fill: #fff;
        }
#leasePage /* Language Toggle in Menu */
        .menu-lang-toggle{
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }
#leasePage .lang-option{
            font-size: 13px;
            letter-spacing: 1px;
            color: var(--text);
            cursor: pointer;
            transition: color 0.3s;
        }
#leasePage .lang-option.active{
            color: var(--text-dark);
            font-weight: 600;
        }
#leasePage .lang-option:hover{
            color: var(--secondary);
        }
#leasePage .lang-separator{
            color: var(--border);
        }
#leasePage .menu-promo{
            display: flex;
            margin-top: 25px;
            border: 1px solid var(--border);
        }
#leasePage .menu-promo-logo{
            width: 130px;
            min-height: 130px;
            background: var(--dark-green);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            flex-shrink: 0;
        }
#leasePage .menu-promo-logo.menu-promo-logo-light{
            background: #fff;
            border-right: 1px solid var(--border);
        }
#leasePage .menu-promo-logo img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
#leasePage .menu-promo-content{
            padding: 15px 20px;
            flex: 1;
        }
#leasePage .menu-promo-title{
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--secondary);
            margin-bottom: 5px;
        }
#leasePage .menu-promo-subtitle{
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 3px;
        }
#leasePage .menu-promo-coming{
            font-style: italic;
            font-size: 13px;
            color: var(--text);
            margin-bottom: 10px;
        }
#leasePage .menu-promo-link{
            font-size: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--primary);
            text-decoration: underline;
        }
#leasePage /* ==================== HOME PAGE ==================== */
        .home-hero{
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            overflow: hidden;
            padding: 0 60px;
        }
#leasePage .home-hero-video{
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: -2;
            object-fit: cover;
            /* Improve video quality rendering */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
#leasePage .home-hero::before{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
            z-index: -1;
        }
#leasePage .home-hero-content{
            color: #fff;
            max-width: 700px;
            padding-top: 70px;
        }
#leasePage .home-hero-welcome{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 5px;
        }
#leasePage .home-hero-tagline{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 300;
            font-style: italic;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
        }
#leasePage .home-hero-desc{
            font-size: 15px;
            line-height: 1.9;
            font-weight: 300;
            opacity: 0.95;
            max-width: 550px;
        }
#leasePage /* Search Bar */
        .search-bar{
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            padding: 25px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
#leasePage .search-bar-content{
            flex: 1;
        }
#leasePage .search-bar-label{
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text);
            margin-bottom: 5px;
        }
#leasePage .search-bar-text{
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--primary);
            font-weight: 500;
        }
#leasePage .search-bar-icon{
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
#leasePage .search-bar-icon svg{
            width: 24px;
            height: 24px;
            stroke: var(--primary);
            stroke-width: 2;
            fill: none;
        }
#leasePage /* Home About Section */
        .home-about{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 100px 50px;
            align-items: center;
        }
#leasePage .home-about-content h2{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 30px;
            line-height: 1.2;
        }
#leasePage .home-about-content p{
            font-size: 15px;
            line-height: 1.9;
            color: var(--text);
            margin-bottom: 30px;
        }
#leasePage .home-about-btn{
            display: inline-block;
            padding: 14px 35px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            border: 1px solid var(--primary);
            color: var(--primary);
            transition: all 0.3s;
        }
#leasePage .home-about-btn:hover{
            background: var(--primary);
            color: #fff;
        }
#leasePage .home-about-image{
            position: relative;
        }
#leasePage .home-about-image img{
            width: 100%;
            max-width: 500px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            mask-image: radial-gradient(ellipse 90% 90% at center, black 60%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 90% 90% at center, black 60%, transparent 100%);
        }
#leasePage /* DISCOVER Section - OB Private Style */
        .discover-section{
            padding: 0 50px 80px;
            max-width: 1400px;
            margin: 0 auto;
        }
#leasePage .discover-header{
            padding: 60px 0 50px;
            position: relative;
        }
#leasePage .discover-header::after{
            content: '';
            position: absolute;
            top: 75px;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--border);
        }
#leasePage .discover-label{
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--secondary);
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
#leasePage .discover-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
#leasePage .discover-card{
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
#leasePage .discover-card-image{
            background: #f5f3f0;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 350px;
            margin-bottom: 25px;
            border-radius: 8px;
            overflow: hidden;
            transition: background-color 0.3s ease;
        }
#leasePage .discover-card:hover .discover-card-image, #leasePage .discover-card:active .discover-card-image{
            background: #c8c8c8;
        }
#leasePage .discover-card-image img{
            max-width: 100%;
            max-height: 280px;
            object-fit: contain;
            border-radius: 8px;
            mask-image: radial-gradient(ellipse 95% 95% at center, black 70%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 95% 95% at center, black 70%, transparent 100%);
            transition: filter 0.3s ease;
        }
#leasePage .discover-card:hover .discover-card-image img, #leasePage .discover-card:active .discover-card-image img{
            filter: brightness(0.75) contrast(1.1);
        }
#leasePage .discover-card h3{
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
#leasePage .discover-card p{
            font-size: 14px;
            line-height: 1.8;
            color: var(--text);
        }
#leasePage /* Home Services Section */
        .home-services{
            background: var(--light);
            padding: 100px 50px;
        }
#leasePage .home-services-header{
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
#leasePage .home-services-header h2{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 15px;
        }
#leasePage .home-services-header p{
            font-size: 14px;
            color: var(--text);
            line-height: 1.7;
        }
#leasePage .home-services-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
#leasePage .service-card{
            background: #fff;
            padding: 50px 35px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
#leasePage .service-card:hover{
            border-color: var(--secondary);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }
#leasePage .service-card-icon{
            width: 60px;
            height: 60px;
            margin: 0 auto 25px;
            stroke: var(--secondary);
            stroke-width: 1.5;
            fill: none;
        }
#leasePage .service-card h3{
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 15px;
            color: var(--text-dark);
        }
#leasePage .service-card p{
            font-size: 13px;
            line-height: 1.8;
            color: var(--text);
        }
#leasePage /* Home CTA Section */
        .home-cta{
            padding: 100px 50px;
            text-align: center;
            background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 100%);
            color: #fff;
        }
#leasePage .home-cta h2{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 400;
            margin-bottom: 20px;
        }
#leasePage .home-cta p{
            font-size: 14px;
            max-width: 600px;
            margin: 0 auto 30px;
            opacity: 0.9;
            line-height: 1.7;
        }
#leasePage .home-cta-btn{
            display: inline-block;
            padding: 16px 45px;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            background: var(--secondary);
            color: #fff;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
#leasePage .home-cta-btn:hover{
            background: #a08567;
        }
#leasePage /* ==================== CONTACT PAGE ==================== */
        .hero{
            padding: 120px 30px 50px;
            background: #fff;
        }
#leasePage .hero-title{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 6vw, 52px);
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: -5px;
            line-height: 1.1;
        }
#leasePage .hero-subtitle{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 300;
            font-style: italic;
            color: var(--text);
            margin-top: 0;
            line-height: 1.1;
        }
#leasePage .main-content{
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 40px 30px 60px;
        }
#leasePage .form-section h2{
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text);
            margin-bottom: 25px;
        }
#leasePage .form{ display: flex; flex-direction: column; gap: 0; }
#leasePage .form-group{
            display: flex;
            flex-direction: column;
            margin-bottom: 0;
        }
#leasePage .form-group input, #leasePage .form-group select, #leasePage .form-group textarea{
            padding: 18px 20px;
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid var(--border);
            border-bottom: none;
            font-family: inherit;
            background: #fff;
            transition: border-color 0.3s;
            width: 100%;
            color: var(--text);
        }
#leasePage .form-group:last-of-type input, #leasePage .form-group:last-of-type select, #leasePage .form-group:last-of-type textarea{
            border-bottom: 1px solid var(--border);
        }
#leasePage .form-group input::placeholder, #leasePage .form-group textarea::placeholder{
            color: var(--text);
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 1px;
        }
#leasePage .form-group input:focus, #leasePage .form-group select:focus, #leasePage .form-group textarea:focus{
            outline: none;
            border-color: var(--secondary);
            position: relative;
            z-index: 1;
        }
#leasePage .form-group select{
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 18px center;
            cursor: pointer;
        }
#leasePage .form-group textarea{
            resize: vertical;
            min-height: 120px;
            border-bottom: 1px solid var(--border);
        }
#leasePage .checkbox-group{
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 25px;
        }
#leasePage .checkbox-label{
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 11px;
            color: var(--text);
            cursor: pointer;
            line-height: 1.6;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
#leasePage .checkbox-label input{
            width: 14px;
            height: 14px;
            margin-top: 2px;
            accent-color: var(--secondary);
            flex-shrink: 0;
        }
#leasePage .submit-btn{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 500;
            background: var(--secondary);
            color: #fff;
            border: none;
            cursor: pointer;
            font-family: inherit;
            margin-top: 30px;
            transition: background 0.3s;
            width: fit-content;
        }
#leasePage .submit-btn:hover{ background: #7a6347; }
#leasePage .office-section{
            background: var(--light);
            padding: 30px;
            height: fit-content;
        }
#leasePage .office-section h2{
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border);
        }
#leasePage .office-card{
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border);
        }
#leasePage .office-image{
            width: 110px;
            height: 110px;
            object-fit: cover;
            flex-shrink: 0;
        }
#leasePage .office-details h3{
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--text-dark);
        }
#leasePage .office-address{
            font-size: 13px;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 12px;
        }
#leasePage .office-contact a{
            
            font-size: 13px;
            color: var(--text-dark);
            margin-bottom: 5px;
            transition: color 0.3s;
            text-decoration: underline;
        }
#leasePage .office-contact a:hover{ color: var(--secondary); }
#leasePage .office-hours{
            font-size: 12px;
            color: var(--text);
            margin-top: 12px;
        }
#leasePage /* ==================== VALUATION PAGE ==================== */
        .valuation-hero{
            position: relative;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 150px 30px 80px;
            background-size: cover;
            background-position: center top;
        }
#leasePage .valuation-hero::before{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.65) 100%);
        }
#leasePage .valuation-hero-content{
            position: relative;
            z-index: 1;
            max-width: 750px;
        }
#leasePage .valuation-hero h1{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 500;
            margin-bottom: 10px;
            color: #2a2a2a;
            text-shadow: 0 1px 2px rgba(255,255,255,0.5);
        }
#leasePage .valuation-hero .valuation-tagline{
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 400;
            font-style: italic;
            color: #5a4a3a;
            margin-bottom: 25px;
            text-shadow: 0 1px 2px rgba(255,255,255,0.5);
        }
#leasePage .valuation-hero p{
            font-size: 14px;
            line-height: 1.9;
            color: #3a3a3a;
            text-shadow: 0 1px 1px rgba(255,255,255,0.4);
        }
#leasePage .valuation-content{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 50px 30px;
        }
#leasePage .valuation-image-side img{
            width: 100%;
            max-width: 480px;
            position: sticky;
            top: 100px;
        }
#leasePage .valuation-intro{
            background: var(--light);
            padding: 25px;
            margin-bottom: 30px;
            font-size: 14px;
            font-style: italic;
            color: var(--text);
            line-height: 1.8;
            border-left: 3px solid var(--secondary);
        }
#leasePage /* Footer */
        .footer-newsletter{
            background: #fff;
            padding: 40px 50px;
            border-bottom: 1px solid var(--border);
        }
#leasePage .footer-newsletter-content{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }
#leasePage .footer-newsletter-text{
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            color: var(--text-dark);
        }
#leasePage .footer-newsletter-btn{
            padding: 14px 40px;
            background: var(--secondary);
            color: #fff;
            font-size: 11px;
            letter-spacing: 1.5px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background 0.3s;
        }
#leasePage .footer-newsletter-btn:hover{
            background: #7a6347;
        }
#leasePage .footer{
            padding: 60px 50px 0;
            background: var(--light);
        }
#leasePage .footer-main{
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 180px 1fr 180px;
            gap: 40px;
            padding-bottom: 40px;
        }
#leasePage .footer-logo-section{
            display: flex;
            flex-direction: column;
        }
#leasePage .footer-logo{ 
            height: 80px; 
            width: auto;
            object-fit: contain;
        }
#leasePage .footer-columns{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            border-left: 1px solid var(--border);
            padding-left: 40px;
        }
#leasePage .footer-column{
            text-align: left;
        }
#leasePage .footer-column-title{
            font-size: 12px;
            letter-spacing: 2px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
#leasePage .footer-column-links{
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
#leasePage .footer-column-links span{
            font-size: 12px;
            color: var(--text);
            cursor: pointer;
            transition: color 0.3s;
        }
#leasePage .footer-column-links span:hover{
            color: var(--text-dark);
        }
#leasePage .footer-social-row{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 0;
            border-top: 1px solid var(--border);
        }
#leasePage .footer-social{
            display: flex;
            gap: 10px;
        }
#leasePage .footer-social a{
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
#leasePage .footer-social a:hover{
            background: #7a6347;
        }
#leasePage .footer-social svg{
            width: 16px;
            height: 16px;
            fill: #fff;
        }
#leasePage /* Partner Logos Inline (under GHDR PROPERTY SERVICES) */
        .footer-partners-inline{
            display: flex;
            align-items: center;
            gap: 25px;
            margin-top: 25px;
        }
#leasePage .footer-partner-logo{
            display: flex;
            align-items: center;
            transition: opacity 0.3s;
        }
#leasePage .footer-partner-logo:hover{
            opacity: 0.7;
        }
#leasePage .footer-partner-logo img{
            height: 35px;
            object-fit: contain;
        }
#leasePage .footer-acho{
            display: flex;
            align-items: center;
        }
#leasePage .footer-acho img{
            height: 35px;
            object-fit: contain;
        }
#leasePage /* ACHO logo language switching */
        .acho-logo.acho-es{
            display: none;
        }
#leasePage body.lang-es .acho-logo.acho-en{
            display: none;
        }
#leasePage body.lang-es .acho-logo.acho-es{
            
        }
#leasePage .footer-right{
            display: flex;
            flex-direction: column;
        }
#leasePage .footer-right .footer-column-title{
            text-align: left;
        }
#leasePage .footer-right .footer-column-links span{
            text-align: left;
        }
#leasePage .footer-bottom{
            max-width: 1300px;
            margin: 0 auto;
            padding: 20px 0;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
#leasePage .footer-copyright{
            font-size: 11px;
            color: var(--text);
            letter-spacing: 0.5px;
        }
#leasePage .footer-made-by{
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            color: var(--text);
            font-size: 11px;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }
#leasePage .footer-made-by:hover{
            color: var(--text-dark);
        }
#leasePage .footer-made-by img{
            height: 16px;
            object-fit: contain;
        }
#leasePage /* Modal */
        .modal-overlay{
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 3000;
            padding: 20px;
        }
#leasePage .modal-overlay.active{ display: flex; }
#leasePage .modal{
            background: #fff;
            padding: 40px;
            max-width: 400px;
            width: 100%;
            text-align: center;
        }
#leasePage .modal-title{
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            margin-bottom: 15px;
        }
#leasePage .modal-text{
            font-size: 13px;
            color: var(--text);
            margin-bottom: 20px;
        }
#leasePage .modal input{
            width: 100%;
            padding: 14px;
            font-size: 16px;
            text-align: center;
            letter-spacing: 3px;
            border: 1px solid var(--border);
            margin-bottom: 15px;
            font-family: inherit;
        }
#leasePage .modal-btn{
            width: 100%;
            padding: 14px;
            background: var(--secondary);
            color: #fff;
            border: none;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            font-family: inherit;
            margin-bottom: 10px;
        }
#leasePage .modal-cancel{
            background: none;
            border: none;
            color: var(--text);
            cursor: pointer;
            font-size: 12px;
        }
#leasePage .code-display{
            background: var(--light);
            padding: 15px;
            margin-bottom: 20px;
            font-family: monospace;
            font-size: 18px;
            letter-spacing: 4px;
            color: var(--secondary);
        }
#leasePage /* Thank You */
        .thank-you-page{
            min-height: 100vh;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 40px;
            text-align: center;
        }
#leasePage .thank-you-page.active{ display: flex; }
#leasePage .thank-you-content{ max-width: 500px; }
#leasePage .thank-you-logo{ height: 70px; margin-bottom: 40px; }
#leasePage .thank-you-icon{ margin-bottom: 30px; }
#leasePage .thank-you-title{
            font-family: 'Cormorant Garamond', serif;
            font-size: 42px;
            margin-bottom: 20px;
        }
#leasePage .thank-you-text{
            font-size: 14px;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 30px;
        }
#leasePage .confirmation-box{
            background: var(--light);
            padding: 20px;
            margin-bottom: 30px;
        }
#leasePage .return-btn{
            padding: 14px 35px;
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.3s;
        }
#leasePage .return-btn:hover{
            background: var(--primary);
            color: #fff;
        }
#leasePage /* Page visibility */
        .page{ display: none; }
#leasePage .page.active{  }
#leasePage /* Back to Top & Back Navigation Buttons */
        .back-to-top{
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
#leasePage .back-to-top.visible{
            opacity: 1;
            visibility: visible;
        }
#leasePage .back-to-top:hover{
            background: #7a6347;
            transform: translateY(-3px);
        }
#leasePage .back-to-top svg{
            width: 20px;
            height: 20px;
            fill: #fff;
        }
#leasePage /* Back Navigation Button */
        .back-nav{
            position: fixed;
            bottom: 90px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
#leasePage .back-nav.visible{
            opacity: 1;
            visibility: visible;
        }
#leasePage .back-nav:hover{
            background: #1a3a4a;
            transform: translateX(-3px);
        }
#leasePage .back-nav svg{
            width: 20px;
            height: 20px;
            fill: #fff;
        }
#leasePage /* ==================== COMPLIANCE PAGE ==================== */
        .compliance-content{
            max-width: 900px;
            margin: 0 auto;
            padding: 140px 40px 80px;
        }
#leasePage .compliance-title{
            font-family: var(--font-heading);
            font-size: 38px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 15px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border);
        }
#leasePage .compliance-list{
            margin-top: 20px;
        }
#leasePage .compliance-item{
            padding: 35px 0;
            border-bottom: 1px solid var(--border);
        }
#leasePage .compliance-item h3{
            font-size: 15px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 12px;
            line-height: 1.5;
        }
#leasePage .compliance-link{
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--secondary);
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color 0.3s;
            cursor: pointer;
        }
#leasePage .compliance-link:hover{
            color: #7a6347;
        }
#leasePage /* Language-specific items */
        .compliance-en-only{
            
        }
#leasePage body.lang-es .compliance-en-only{
            display: none;
        }
#leasePage .compliance-es-only{
            display: none;
        }
#leasePage body.lang-es .compliance-es-only{
            
        }
#leasePage /* ==================== COOKIE CONSENT ==================== */
        .cookie-banner{
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 380px;
            background: #fff;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            z-index: 10000;
            padding: 25px;
            display: none;
        }
#leasePage .cookie-banner.active{
            
        }
#leasePage .cookie-banner h4{
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
#leasePage .cookie-banner p{
            font-size: 12px;
            line-height: 1.6;
            color: var(--text);
            margin-bottom: 18px;
        }
#leasePage .cookie-buttons{
            display: flex;
            gap: 10px;
        }
#leasePage .cookie-btn{
            padding: 10px 16px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: inherit;
        }
#leasePage .cookie-btn-outline{
            background: #fff;
            border: 1px solid #ccc;
            color: var(--text-dark);
        }
#leasePage .cookie-btn-outline:hover{
            border-color: var(--text-dark);
        }
#leasePage .cookie-btn-filled{
            background: var(--secondary);
            border: 1px solid var(--secondary);
            color: #fff;
        }
#leasePage .cookie-btn-filled:hover{
            background: #7a6347;
        }
#leasePage /* Cookie Modal */
        .cookie-modal-overlay{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 10001;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
#leasePage .cookie-modal-overlay.active{
            display: flex;
        }
#leasePage .cookie-modal{
            background: #fff;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
        }
#leasePage .cookie-modal-close{
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text);
        }
#leasePage .cookie-modal h3{
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--text-dark);
            margin-bottom: 20px;
            padding-right: 30px;
        }
#leasePage .cookie-modal-intro{
            font-size: 12px;
            line-height: 1.6;
            color: var(--text);
            margin-bottom: 10px;
        }
#leasePage .cookie-show-more{
            color: var(--primary);
            text-decoration: underline;
            cursor: pointer;
            font-weight: 500;
        }
#leasePage .cookie-category{
            border-top: 1px solid var(--border);
            padding: 15px 0;
        }
#leasePage .cookie-category-header{
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
#leasePage .cookie-arrow{
            font-size: 14px;
            color: var(--text);
            cursor: pointer;
        }
#leasePage .cookie-category-title{
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            flex: 1;
        }
#leasePage .cookie-always-active{
            font-size: 11px;
            font-weight: 600;
            color: #22c55e;
            letter-spacing: 0.5px;
        }
#leasePage .cookie-category-desc{
            font-size: 11px;
            line-height: 1.6;
            color: var(--text);
            padding-left: 20px;
        }
#leasePage /* Toggle Switch */
        .cookie-toggle{
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
        }
#leasePage .cookie-toggle input{
            opacity: 0;
            width: 0;
            height: 0;
        }
#leasePage .cookie-slider{
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.3s;
            border-radius: 24px;
        }
#leasePage .cookie-slider:before{
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }
#leasePage .cookie-toggle input:checked + .cookie-slider{
            background-color: var(--secondary);
        }
#leasePage .cookie-toggle input:checked + .cookie-slider:before{
            transform: translateX(20px);
        }
#leasePage .cookie-modal-buttons{
            display: flex;
            gap: 10px;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
#leasePage .cookie-powered{
            text-align: right;
            font-size: 10px;
            color: var(--text);
            margin-top: 15px;
        }
@media (max-width: 768px){#leasePage .cookie-banner{
                left: 10px;
                right: 10px;
                bottom: 10px;
                width: auto;
                max-height: 80vh;
                overflow-y: auto;
            }
#leasePage .cookie-buttons {
    flex-wrap: wrap;
    gap: 10px;
}
#leasePage .cookie-btn {
    flex: 1;
    min-width: calc(50% - 5px);
    padding: 14px 15px;
    font-size: 10px;
}
#leasePage .cookie-modal-buttons {
    flex-wrap: wrap;
}
#leasePage .cookie-modal-buttons .cookie-btn {
    flex: 1;
    min-width: calc(50% - 5px);
}}
#leasePage /* ==================== RESPONSIVE ==================== */
        .header-right-mobile{
            display: none;
        }
@media (max-width: 1200px){#leasePage .nav-desktop{ display: none; }
#leasePage .header-search{ display: none; }
#leasePage .header-right .get-in-touch{ display: none; }
#leasePage .header-icons{ display: none; }
#leasePage .header-right-mobile{
                display: flex;
                align-items: center;
                height: 100%;
                margin-left: auto;
            }
#leasePage .get-in-touch-mobile{
                display: flex;
                align-items: center;
                height: 100%;
                padding: 0 20px;
                font-size: 11px;
                letter-spacing: 1.5px;
                text-transform: uppercase;
                color: #fff;
                font-weight: 500;
                text-decoration: none;
                border-left: 1px solid rgba(255,255,255,0.25);
                transition: color 0.3s, border-color 0.3s;
                cursor: pointer;
            }
#leasePage .header.scrolled .get-in-touch-mobile{
                color: var(--primary);
                border-left-color: #ccc;
            }
#leasePage .home-about{
                grid-template-columns: 1fr;
                gap: 50px;
                padding: 80px 30px;
            }
#leasePage .home-about-image{
                order: -1;
                text-align: center;
            }
#leasePage .home-services-grid{ grid-template-columns: repeat(2, 1fr); }
#leasePage .discover-section{
                padding: 0 30px 60px;
            }
#leasePage .discover-grid{
                grid-template-columns: 1fr;
                gap: 50px;
            }}
@media (max-width: 1024px){#leasePage .main-content{ grid-template-columns: 1fr; gap: 40px; }
#leasePage .valuation-content{ grid-template-columns: 1fr; }
#leasePage .valuation-image-side{ display: none; }}
@media (max-width: 768px){#leasePage .header{ height: 60px; }
#leasePage .hamburger-btn{
                padding: 0 15px;
                border-right: 1px solid rgba(255,255,255,0.25);
            }
#leasePage .header.scrolled .hamburger-btn{
                border-right-color: #ccc;
            }
#leasePage .header-logo-section{
                padding: 0 10px;
                border-right: 1px solid rgba(255,255,255,0.25);
            }
#leasePage .header.scrolled .header-logo-section{
                border-right-color: #ccc;
            }
#leasePage .logo{ 
                height: 50px;
            }
#leasePage .get-in-touch-mobile{
                padding: 0 15px;
                font-size: 10px;
                border-left: 1px solid rgba(255,255,255,0.25);
            }
#leasePage .header.scrolled .get-in-touch-mobile{
                border-left-color: #ccc;
            }
#leasePage .home-hero{ 
                padding: 0 20px; 
                min-height: 100vh;
            }
#leasePage /* Fix video background for mobile */
            .home-hero-video{
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                transform: none;
            }
#leasePage .home-hero-content{
                padding-top: 80px;
            }
#leasePage .home-hero-welcome{
                font-size: 32px;
            }
#leasePage .home-hero-tagline{
                font-size: 24px;
            }
#leasePage .home-hero-desc{
                font-size: 14px;
            }
#leasePage .search-bar{ 
                padding: 15px 20px;
                position: relative;
            }
#leasePage .discover-section{
                padding: 0 20px 40px;
            }
#leasePage .discover-header{
                padding: 40px 0 30px;
            }
#leasePage .discover-header::after{
                top: 55px;
            }
#leasePage .discover-card-image{
                padding: 30px;
                min-height: 250px;
            }
#leasePage .discover-card-image img{
                max-height: 200px;
            }
#leasePage .home-services{ padding: 60px 20px; }
#leasePage .home-services-grid{ grid-template-columns: 1fr; }
#leasePage .home-cta{ padding: 60px 20px; }
#leasePage .hero{ padding: 100px 20px 30px; }
#leasePage .main-content{ padding: 30px 20px; }
#leasePage .office-card{
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
#leasePage .office-image{ width: 150px; height: 150px; }
#leasePage .footer-main{ 
                grid-template-columns: 1fr; 
                gap: 40px;
                text-align: center;
            }
#leasePage .footer-columns{
                grid-template-columns: 1fr;
                border-left: none;
                padding-left: 0;
                border-top: 1px solid var(--border);
                padding-top: 30px;
            }
#leasePage .footer-column{
                text-align: center;
            }
#leasePage .footer-logo-section{
                align-items: center;
            }
#leasePage .footer-right{
                align-items: center;
            }
#leasePage .footer-right .footer-column-title, #leasePage .footer-right .footer-column-links span{
                text-align: center;
            }
#leasePage .footer-social-row{
                flex-direction: column;
                gap: 30px;
            }
#leasePage .footer-partners-inline{
                flex-wrap: wrap;
                justify-content: center;
            }
#leasePage .footer-newsletter-content{
                flex-direction: column;
                text-align: center;
            }
#leasePage .footer-bottom{
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
#leasePage .valuation-hero{ min-height: 350px; padding: 120px 20px 60px; }
#leasePage .side-tab{ padding: 20px 10px; font-size: 10px; }
#leasePage .back-to-top{ width: 45px; height: 45px; bottom: 20px; left: 20px; }
#leasePage .back-nav{ width: 45px; height: 45px; bottom: 75px; left: 20px; }
#leasePage .compliance-content{ padding: 120px 20px 60px; }
#leasePage .compliance-title{ font-size: 30px; }
#leasePage .slide-menu{ width: 100%; left: -100%; }

/* Property Card Mobile Improvements */
#leasePage .property-card {
    grid-template-columns: 1fr;
}
#leasePage .property-details {
    padding: 25px 20px;
}
#leasePage .property-title {
    font-size: 24px;
}
#leasePage .property-location {
    font-size: 18px;
    margin-bottom: 15px;
}
#leasePage .property-description {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#leasePage .property-features {
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
#leasePage .property-image-nav {
    opacity: 1;
    width: 36px;
    height: 36px;
}

/* Filter Panel Full Screen Mobile */
#leasePage .filter-panel {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
    z-index: 2000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
#leasePage .filter-panel-body {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 25px 20px 120px;
}
#leasePage .filter-panel-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 2001;
}
#leasePage .filter-checkbox {
    min-height: 44px;
    padding: 10px 0;
}
#leasePage .filter-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
}
#leasePage .apply-filters-btn, 
#leasePage .clear-filters-btn {
    padding: 14px 20px;
    font-size: 12px;
}

/* Search Form Mobile Stacking */
#leasePage .search-form {
    flex-direction: column;
    padding: 20px;
    gap: 0;
}
#leasePage .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border-gray);
    padding: 15px 0;
}
#leasePage .search-field:last-of-type {
    border-bottom: none;
}
#leasePage .btn-search {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    padding: 16px;
}
#leasePage .search-controls {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}
#leasePage .search-options {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
#leasePage .filters-btn {
    padding: 12px 0;
    min-height: 44px;
}
#leasePage .view-toggle {
    display: none; /* Hide map/list toggle on mobile */
}
#leasePage .option-group {
    flex-wrap: nowrap;
}
#leasePage .option-group select {
    font-size: 12px;
    min-height: 44px;
    padding: 10px 25px 10px 0;
}

/* Mobile "Open Filters Panel" prominent button - OB Private style */
#leasePage .mobile-filters-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    margin-top: 15px;
    background-color: var(--light);
    border: 1px solid var(--border-gray);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}
#leasePage .mobile-filters-trigger:hover {
    background-color: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
}
#leasePage .mobile-filters-trigger svg {
    width: 16px;
    height: 16px;
}

/* Mobile Open Filters Button - always shown on mobile */
.mobile-open-filters {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-open-filters {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 16px 20px;
        margin-top: 15px;
        background-color: var(--light);
        border: 1px solid var(--border-gray);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--text-dark);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-open-filters:hover,
    .mobile-open-filters:active {
        background-color: var(--navy-blue);
        color: var(--white);
        border-color: var(--navy-blue);
    }
    
    .mobile-open-filters svg {
        flex-shrink: 0;
    }
}

/* Recently Viewed Carousel Mobile */
#leasePage .recently-card {
    flex: 0 0 160px;
}
#leasePage .recently-carousel {
    padding-left: 20px;
    padding-right: 20px;
}

/* Newsletter Mobile */
#leasePage .newsletter-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
}
#leasePage .newsletter-form {
    width: 100%;
    flex-direction: column;
}
#leasePage .newsletter-input {
    width: 100%;
}
#leasePage .newsletter-btn {
    width: 100%;
}

/* Pagination Mobile */
#leasePage .pagination {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
#leasePage .pagination-btn {
    min-width: 40px;
    height: 40px;
}
}
#leasePage /* iOS video fix */
        @supports (-webkit-touch-callout: none){
            .home-hero-video {
                position: absolute;
                top: 50%;
                left: 50%;
                min-width: 100%;
                min-height: 100%;
                width: auto;
                height: auto;
                transform: translate(-50%, -50%);
            }
        }
#leasePage .hidden{ display: none !important; }
#leasePage /* ==================== PARTNERS PAGE (OB PRIVATE STYLE) ==================== */
#partnersPage{
    background: #fff;
}
#leasePage /* Partners Hero - Full width with video/image background */
.partners-hero{
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2332 0%, #2d3b45 100%);
}
#leasePage .partners-hero-video{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
#leasePage .partners-hero::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}
#leasePage .partners-hero-content{
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
#leasePage .partners-hero-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}
#leasePage .partners-hero-subtitle{
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}
#leasePage /* Featured Partner Banner */
.partners-featured-banner{
    background: var(--light);
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
#leasePage .partners-featured-banner-content{
    max-width: 500px;
}
#leasePage .partners-featured-banner h3{
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
}
#leasePage .partners-featured-banner p{
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 15px;
}
#leasePage .partners-featured-banner-link{
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    cursor: pointer;
    transition: color 0.3s;
}
#leasePage .partners-featured-banner-link:hover{
    color: #7a6347;
}
#leasePage /* Partners Main Content Area */
.partners-main{
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}
#leasePage /* Partners Intro Section */
.partners-intro-section{
    text-align: center;
    margin-bottom: 50px;
}
#leasePage .partners-intro-label{
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 15px;
}
#leasePage .partners-intro-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}
#leasePage .partners-intro-desc{
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
}
#leasePage /* Partners Section Title */
.partners-section-title{
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
#leasePage /* Partners Grid - Key Partners with Images */
.partners-key-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}
@media (max-width: 1200px){#leasePage .partners-key-grid{ grid-template-columns: repeat(3, 1fr); }}
@media (max-width: 900px){#leasePage .partners-key-grid{ grid-template-columns: repeat(2, 1fr); }}
@media (max-width: 600px){#leasePage .partners-key-grid{ grid-template-columns: 1fr; }}
#leasePage /* Partner Card with Image */
.partner-image-card{
    background: #fff;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    overflow: hidden;
}
#leasePage .partner-image-card:hover{
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
#leasePage .partner-image-wrapper{
    position: relative;
    aspect-ratio: 5/6;
    overflow: hidden;
}
#leasePage .partner-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
#leasePage .partner-image-card:hover .partner-image-wrapper img{
    transform: scale(1.05);
}
#leasePage .partner-image-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: #fff;
}
#leasePage .partner-image-category{
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
#leasePage .partner-image-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
}
#leasePage .partner-image-desc{
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
}
#leasePage /* Video Feature Section */
.partners-video-feature{
    position: relative;
    height: 450px;
    margin: 60px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}
#leasePage .partners-video-feature video{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}
#leasePage .partners-video-feature::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}
#leasePage .partners-video-content{
    position: relative;
    z-index: 3;
    padding: 0 60px;
    max-width: 600px;
    color: #fff;
}
#leasePage .partners-video-category{
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}
#leasePage .partners-video-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 15px;
}
#leasePage .partners-video-desc{
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
}
#leasePage .partners-video-link{
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 14px 30px;
    transition: all 0.3s;
}
#leasePage .partners-video-link:hover{
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}
#leasePage /* More Partners Grid */
.partners-more-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
@media (max-width: 1200px){#leasePage .partners-more-grid{ grid-template-columns: repeat(4, 1fr); }}
@media (max-width: 900px){#leasePage .partners-more-grid{ grid-template-columns: repeat(3, 1fr); }}
@media (max-width: 600px){#leasePage .partners-more-grid{ grid-template-columns: repeat(2, 1fr); }}
@media (max-width: 400px){#leasePage .partners-more-grid{ grid-template-columns: 1fr; }}
#leasePage /* Simple Partner Card (for More Partners section) */
.partner-simple-card{
    background: #fff;
    border: 1px solid var(--border);
    padding: 0;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    overflow: hidden;
}
#leasePage .partner-simple-card:hover{
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
#leasePage .partner-simple-image{
    aspect-ratio: 5/6;
    overflow: hidden;
}
#leasePage .partner-simple-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
#leasePage .partner-simple-card:hover .partner-simple-image img{
    transform: scale(1.05);
}
#leasePage .partner-simple-content{
    padding: 18px 15px;
}
#leasePage .partner-simple-category{
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 6px;
}
#leasePage .partner-simple-title{
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 5px;
}
#leasePage .partner-simple-desc{
    font-size: 12px;
    color: var(--text);
    line-height: 1.5;
}
#leasePage .partner-simple-link{
    
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary);
}
#leasePage /* Become a Partner CTA Section */
.partners-cta-section{
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    padding: 80px 60px;
    background: var(--dark-green);
    color: #fff;
    margin-top: 60px;
    align-items: center;
}
@media (max-width: 900px){#leasePage .partners-cta-section{
        grid-template-columns: 1fr;
        padding: 60px 30px;
    }}
#leasePage .partners-cta-content h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 10px;
}
#leasePage .partners-cta-content .cta-subtitle{
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}
#leasePage .partners-cta-content p{
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}
#leasePage .partners-cta-btn{
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 16px 35px;
    transition: all 0.3s;
    cursor: pointer;
}
#leasePage .partners-cta-btn:hover{
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}
#leasePage .partners-cta-image{
    position: relative;
    aspect-ratio: 5/6;
    overflow: hidden;
}
#leasePage .partners-cta-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#leasePage /* Partner Category Pills */
.partner-category-pills{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}
#leasePage .partner-category-pill{
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
}
#leasePage .partner-category-pill:hover, #leasePage .partner-category-pill.active{
    background: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
}
#leasePage /* Placeholder image styling */
.partner-placeholder-img{
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
#leasePage /* Partners Page Mobile Adjustments */
@media (max-width: 768px){
    .partners-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .partners-featured-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .partners-main {
        padding: 40px 20px 60px;
    }
    
    .partners-video-feature {
        height: 350px;
    }
    
    .partners-video-content {
        padding: 0 30px;
    }
    
    .partners-cta-section {
        padding: 50px 20px;
    }
}
#leasePage /* Ensure anchor versions of menu/header elements inherit styling */
.menu-links a, #leasePage .menu-brand-links a{
    text-decoration: none;
    color: inherit;
    
}
#leasePage .menu-links a:hover{
    opacity: 0.9;
}
#leasePage .get-in-touch, #leasePage .get-in-touch-mobile, #leasePage .header-logo-section, #leasePage .side-tab{
    text-decoration: none;
    color: inherit;
}
#leasePage /* ============================================
           CSS RESET & ROOT VARIABLES
           ============================================ */
        

        

        

        

        h1, #leasePage h2, #leasePage h3, #leasePage h4, #leasePage h5, #leasePage h6{
            font-family: var(--font-display);
            font-weight: 500;
            line-height: 1.3;
        }
#leasePage a{
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
#leasePage img{
            max-width: 100%;
            height: auto;
            
        }
#leasePage button{
            font-family: var(--font-body);
            cursor: pointer;
            border: none;
            background: none;
        }
#leasePage /* ============================================
           HEADER - EXACT MATCH TO GREENHAUSDR.COM
           ============================================ */
        .header{
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--white);
            border-bottom: 1px solid var(--border-gray);
        }
#leasePage .header-container{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
            height: var(--header-height);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
#leasePage .header-left{
            display: flex;
            align-items: center;
            gap: 30px;
        }
#leasePage /* Hamburger Menu */
        .menu-toggle{
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 24px;
            height: 24px;
            cursor: pointer;
            padding: 4px 0;
        }
#leasePage .menu-toggle span{
            
            width: 100%;
            height: 2px;
            background-color: var(--text-dark);
            transition: all 0.3s ease;
        }
#leasePage .menu-toggle:hover span{
            background-color: var(--gold);
        }
#leasePage /* Logo */
.logo {
            width: 159.67px;
            height: 59.33px;
            object-fit: contain;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
#leasePage .logo-image{
            height: 55px;
            width: auto;
        }
#leasePage .logo-text{
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }
#leasePage .logo-text .brand-name{
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 500;
            font-style: italic;
            color: var(--dark-green);
            letter-spacing: 0.5px;
        }
#leasePage .logo-text .brand-tagline{
            font-family: var(--font-display);
            font-size: 10px;
            font-weight: 400;
            font-style: italic;
            color: var(--text-medium);
            letter-spacing: 0.3px;
        }
#leasePage /* Main Navigation */
        .main-nav{
            display: flex;
            align-items: center;
        }
#leasePage .nav-menu{
            display: flex;
            list-style: none;
            gap: 35px;
        }
#leasePage .nav-menu li a{
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark);
            padding: 8px 0;
            position: relative;
        }
#leasePage .nav-menu li a::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--gold);
            transition: width 0.3s ease;
        }
#leasePage .nav-menu li a:hover::after, #leasePage .nav-menu li a.active::after{
            width: 100%;
        }
#leasePage .nav-menu li a:hover, #leasePage .nav-menu li a.active{
            color: var(--gold);
        }
#leasePage /* Header Right - Search & Contact */
        .header-right{
            display: flex;
            align-items: center;
            gap: 20px;
        }
#leasePage .search-icon{
            width: 20px;
            height: 20px;
            cursor: pointer;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }
#leasePage .search-icon:hover{
            color: var(--gold);
        }
#leasePage .get-in-touch{
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark);
        }
#leasePage .get-in-touch:hover{
            color: var(--gold);
        }
#leasePage .contact-icons{
            display: flex;
            align-items: center;
            gap: 8px;
        }
#leasePage .contact-icons a{
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
#leasePage .contact-icons a:hover{
            background-color: var(--gold-hover);
            transform: translateY(-2px);
        }
#leasePage .contact-icons a svg{
            width: 16px;
            height: 16px;
            fill: var(--white);
        }
#leasePage /* ============================================
           SIDE NAVIGATION MENU
           ============================================ */
        .side-nav-overlay{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1100;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
#leasePage .side-nav-overlay.active{
            opacity: 1;
            visibility: visible;
        }
#leasePage .side-nav{
            position: fixed;
            top: 0;
            left: -350px;
            width: 350px;
            height: 100%;
            background-color: var(--white);
            z-index: 1200;
            transition: left 0.4s ease;
            overflow-y: auto;
        }
#leasePage .side-nav.active{
            left: 0;
        }
#leasePage .side-nav-header{
            padding: 25px 30px;
            border-bottom: 1px solid var(--border-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
#leasePage .side-nav-close{
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }
#leasePage .side-nav-close:hover{
            color: var(--gold);
        }
#leasePage .side-nav-menu{
            padding: 30px;
        }
#leasePage .side-nav-menu ul{
            list-style: none;
        }
#leasePage .side-nav-menu li{
            border-bottom: 1px solid var(--border-gray);
        }
#leasePage .side-nav-menu li a{
            
            padding: 18px 0;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }
#leasePage .side-nav-menu li a:hover, #leasePage .side-nav-menu li a.active{
            color: var(--gold);
            padding-left: 10px;
        }
#leasePage /* ============================================
           BOOK A VALUATION - FLOATING SIDE BUTTON
           ============================================ */
        .book-valuation-btn{
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--gold);
            color: var(--white);
            padding: 15px 12px;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            z-index: 999;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px 0 0 4px;
        }
#leasePage .book-valuation-btn:hover{
            background-color: var(--gold-hover);
            padding-right: 18px;
        }
#leasePage /* ============================================
           MAIN CONTENT WRAPPER
           ============================================ */
        .main-content-wrapper{
            position: relative;
        }
#leasePage /* ============================================
           SEARCH SECTION - OB PRIVATE STYLE (STICKY)
           ============================================ */
        .search-section{
            background-color: var(--cream);
            padding: 20px 0 25px;
            border-bottom: 1px solid var(--border-gray);
            position: sticky;
            top: var(--header-height);
            z-index: 900;
        }
#leasePage .search-container{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }
#leasePage .page-title{
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 35px;
            letter-spacing: 1px;
            display: none; /* Hidden */
        }
#leasePage /* Search Bar - OB Private Style */
        .search-bar{
            background-color: var(--white);
            border: 1px solid var(--border-gray);
            padding: 25px 30px;
        }
#leasePage .search-fields{
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr 1fr auto;
            gap: 0;
            align-items: end;
            border-bottom: 1px solid var(--border-gray);
            padding-bottom: 20px;
        }
#leasePage .search-field{
            display: flex;
            flex-direction: column;
            padding: 0 20px;
            border-right: 1px solid var(--border-gray);
        }
#leasePage .search-field:first-child{
            padding-left: 0;
        }
#leasePage .search-field:last-of-type{
            border-right: none;
        }
#leasePage .search-field label{
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 8px;
        }
#leasePage .search-field input, #leasePage .search-field select{
            padding: 10px 0;
            border: none;
            font-size: 14px;
            font-family: var(--font-body);
            font-weight: 500;
            background-color: transparent;
            color: var(--text-dark);
            width: 100%;
            cursor: pointer;
        }
#leasePage .search-field input::placeholder{
            color: var(--text-dark);
            font-weight: 500;
        }
#leasePage .search-field input:focus, #leasePage .search-field select:focus{
            outline: none;
        }
#leasePage .search-field select{
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right center;
            padding-right: 20px;
        }
#leasePage .btn-search{
            padding: 15px 40px;
            background-color: var(--navy-blue);
            color: var(--white);
            border: none;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 20px;
            white-space: nowrap;
        }
#leasePage .btn-search:hover{
            background-color: var(--gold);
        }
#leasePage /* Search Controls Row */
        .search-controls{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 18px;
        }
#leasePage .filters-btn{
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark);
            cursor: pointer;
            padding: 8px 0;
            transition: color 0.3s ease;
        }
#leasePage .filters-btn:hover{
            color: var(--gold);
        }
#leasePage .filters-icon{
            display: flex;
            flex-direction: column;
            gap: 3px;
            width: 16px;
        }
#leasePage .filters-icon span{
            height: 2px;
            background-color: currentColor;
            border-radius: 1px;
        }
#leasePage .filters-icon span:nth-child(1){ width: 100%; }
#leasePage .filters-icon span:nth-child(2){ width: 75%; }
#leasePage .filters-icon span:nth-child(3){ width: 50%; }
#leasePage .search-options{
            display: flex;
            align-items: center;
            gap: 30px;
        }
#leasePage .option-group{
            display: flex;
            align-items: center;
            gap: 8px;
        }
#leasePage .option-group label{
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
        }
#leasePage .option-group select{
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--text-dark);
            border: none;
            background: transparent;
            cursor: pointer;
            padding: 5px 0;
        }
#leasePage .option-group select:focus{
            outline: none;
        }
#leasePage .view-toggle{
            display: flex;
            gap: 15px;
        }
#leasePage .view-btn{
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
            padding: 8px 0;
        }
#leasePage /* ============================================
           FILTER PANEL - OB PRIVATE STYLE
           ============================================ */
#leasePage .filter-panel {
            display: none;
            background-color: var(--white);
            border: 1px solid var(--border-gray);
            border-top: 2px solid rgba(0,0,0,0.08);
            padding: 0;
            margin-top: 12px;
            border: 2px solid rgba(0,0,0,0.08);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            overflow-y: auto;
}
#leasePage .filter-panel.active {
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 20050;
            margin: 0;
            border: none;
            overflow-y: auto;
        }
#leasePage .filter-panel-header{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            border-bottom: 1px solid var(--border-gray);
        }
#leasePage .filter-close-btn{
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark);
            cursor: pointer;
            padding: 8px 0;
            transition: color 0.3s ease;
        }
#leasePage .filter-close-btn:hover{
            color: var(--gold);
        }
#leasePage .filter-close-btn svg{
            width: 14px;
            height: 14px;
            stroke: currentColor;
            stroke-width: 2;
        }
#leasePage .filter-panel-options{
            display: flex;
            align-items: center;
            gap: 30px;
        }

/* Filter checkbox improvements for better touch targets */
#leasePage .filter-checkbox{
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            padding: 8px 0;
            min-height: 44px;
            touch-action: manipulation;
        }
        
#leasePage .filter-column h5{
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
#leasePage .filter-options{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
#leasePage .filter-checkbox{
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }
#leasePage .filter-checkbox input[type="checkbox"]{
            appearance: none;
            -webkit-appearance: none;
            width: 16px;
            height: 16px;
            border: 1px solid var(--border-gray);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }
#leasePage .filter-checkbox input[type="checkbox"]:checked{
            background-color: var(--navy-blue);
            border-color: var(--navy-blue);
        }
#leasePage .filter-checkbox input[type="checkbox"]:checked::after{
            content: '';
            position: absolute;
            left: 5px;
            top: 2px;
            width: 4px;
            height: 8px;
            border: solid var(--white);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
#leasePage .filter-checkbox input[type="checkbox"]:hover{
            border-color: var(--gold);
        }
#leasePage .filter-checkbox span{
            font-size: 12px;
            font-weight: 400;
            color: var(--text-medium);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
#leasePage .filter-panel-footer{
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            border-top: 1px solid var(--border-gray);
        }
#leasePage .clear-filters-btn{
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-dark);
            text-decoration: underline;
            cursor: pointer;
            padding: 10px 0;
            transition: color 0.3s ease;
            background: none;
            border: none;
        }
#leasePage .clear-filters-btn:hover{
            color: var(--gold);
        }
#leasePage .apply-filters-btn{
            padding: 14px 35px;
            background-color: var(--navy-blue);
            color: var(--white);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
#leasePage .apply-filters-btn:hover{
            background-color: var(--gold);
        }
#leasePage .view-btn:hover, #leasePage .view-btn.active{
            color: var(--text-dark);
        }

/* ============================================================
   LEASE PAGE - OB PRIVATE STYLE: Refine Search & Filter Panel
   ============================================================ */

/* Hide the old mobile-open-filters button */
#leasePage .mobile-open-filters {
  display: none !important;
}

/* Filter Panel Header - OB Private Layout */
#leasePage .filter-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 18px 30px;
  border-bottom: 1px solid var(--border-gray);
  background-color: var(--white);
}

#leasePage .filter-panel-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0;
  flex-shrink: 0;
}

/* Filter Panel Options in Header */
#leasePage .filter-panel-options {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
  justify-content: flex-start;
  margin-left: 30px;
}

/* Close Button - OB Private Style */
#leasePage .filter-close-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
  margin-left: auto;
  flex-shrink: 0;
}
#leasePage .filter-close-btn:hover {
  color: var(--gold);
}
#leasePage .filter-close-btn svg {
  display: none;
}

/* View Toggle Below Header */
#leasePage .filter-view-toggle {
  display: flex;
  gap: 15px;
  padding: 12px 30px;
  border-bottom: 1px solid var(--border-gray);
  background-color: var(--white);
}
#leasePage .filter-view-toggle .view-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}
#leasePage .filter-view-toggle .view-btn:hover,
#leasePage .filter-view-toggle .view-btn.active {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

/* Filter Panel Body - 4 Column Grid */
#leasePage .filter-panel-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 30px;
  background-color: var(--white);
}

/* Filter Columns */
#leasePage .filter-column h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gray);
}

/* Filter Panel Footer */
#leasePage .filter-panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-top: 1px solid var(--border-gray);
  background-color: var(--white);
}
#leasePage .clear-filters-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.3s ease;
}
#leasePage .clear-filters-btn:hover {
  color: var(--gold);
}
#leasePage .apply-filters-btn {
  background-color: var(--navy-blue);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 35px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#leasePage .apply-filters-btn:hover {
  background-color: var(--gold);
}

/* Lease Page Mobile Responsive */
@media (max-width: 992px) {
  #leasePage .filter-panel-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }
  #leasePage .filter-panel-options {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
  }
  #leasePage .filter-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    margin-left: 0;
  }
  #leasePage .filter-panel-body {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 25px 20px;
  }
  #leasePage .filter-view-toggle {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  #leasePage .filter-panel-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  #leasePage .filter-panel-footer {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  #leasePage .apply-filters-btn {
    width: 100%;
    padding: 16px;
  }
  #leasePage .clear-filters-btn {
    order: 2;
  }
}

#leasePage /* Filter Panel Responsive */
        @media (max-width: 992px){
            .filter-panel-

            .filter-panel-options {
                gap: 20px;
            }
        }
@media (max-width: 768px){#leasePage .filter-panel-

            .filter-panel-header{
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
                padding: 15px 20px;
            }
#leasePage .filter-panel-options{
                width: 100%;
                justify-content: space-between;
            }
#leasePage .filter-panel-footer{
                padding: 15px 20px;
            }
#leasePage .apply-filters-btn{
                padding: 12px 25px;
            }}
#leasePage /* ============================================
           RESULTS SECTION
           ============================================ */
        .results-section{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 30px var(--container-padding);
        }
#leasePage .results-header{
            margin-bottom: 25px;
        }
#leasePage .results-count{
            font-size: 14px;
            color: var(--text-medium);
            font-weight: 400;
        }
#leasePage .results-count span{
            font-weight: 600;
            color: var(--text-dark);
        }
#leasePage /* Property Grid */
        .property-grid{
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
#leasePage /* Property Card */
        .property-card{
            display: grid;
            grid-template-columns: 1fr 1fr;
            background-color: var(--white);
            border: 1px solid var(--border-gray);
            overflow: hidden;
            transition: all 0.3s ease;
        }
#leasePage .property-card:hover{
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }
#leasePage .property-image-container{
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/3;
        }
#leasePage .property-image{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
#leasePage .property-card:hover .property-image{
            transform: scale(1.05);
        }
#leasePage .property-image-nav{
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
#leasePage .property-card:hover .property-image-nav{
            opacity: 1;
        }
#leasePage .property-image-nav.prev{ left: 15px; }
#leasePage .property-image-nav.next{ right: 15px; }
#leasePage .property-image-nav svg{
            width: 16px;
            height: 16px;
            stroke: var(--text-dark);
        }
#leasePage .image-dots{
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
        }
#leasePage .image-dot{
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
#leasePage .image-dot.active{
            background-color: var(--white);
        }
#leasePage .property-details{
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
#leasePage .property-title{
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 5px;
        }
#leasePage .property-location{
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 400;
            font-style: italic;
            color: var(--text-medium);
            margin-bottom: 20px;
        }
#leasePage .property-description{
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 30px;
        }
#leasePage .property-features{
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border-gray);
        }
#leasePage .feature{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }
#leasePage .feature-icon{
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
#leasePage .feature-icon svg{
            width: 24px;
            height: 24px;
            stroke: var(--text-medium);
            fill: none;
        }
#leasePage .feature-value{
            font-size: 13px;
            font-weight: 500;
            color: var(--text-dark);
        }
#leasePage .property-price{
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
#leasePage .price-label{
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 5px;
        }
#leasePage .price-amount{
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 500;
            color: var(--text-dark);
        }

/* Property Badge - OB Private Style */
#leasePage .property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--navy-blue);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    z-index: 5;
}

/* Recently Sold Section - OB Private Style */
#leasePage .recently-sold-section {
    max-width: var(--container-max);
    margin: 60px auto 40px;
    padding: 0 var(--container-padding);
}

#leasePage .recently-sold-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-gray);
}

#leasePage .recently-sold-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--border-gray) transparent;
}

#leasePage .recently-sold-carousel::-webkit-scrollbar {
    height: 6px;
}

#leasePage .recently-sold-carousel::-webkit-scrollbar-track {
    background: transparent;
}

#leasePage .recently-sold-carousel::-webkit-scrollbar-thumb {
    background-color: var(--border-gray);
    border-radius: 3px;
}

#leasePage .sold-property-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--border-gray);
    position: relative;
    transition: all 0.3s ease;
}

#leasePage .sold-property-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

#leasePage .sold-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--text-dark);
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 12px;
    z-index: 5;
}

#leasePage .sold-property-image {
    aspect-ratio: 5/3;
    overflow: hidden;
}

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

#leasePage .sold-property-card:hover .sold-property-image img {
    transform: scale(1.05);
}

#leasePage .sold-property-content {
    padding: 20px;
}

#leasePage .sold-property-content h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 5px;
}

#leasePage .sold-location {
    font-size: 14px;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 12px;
}

#leasePage .sold-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-gray);
}

#leasePage .sold-features span {
    font-size: 13px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 5px;
}

#leasePage .sold-features span::before {
    content: '';
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}

#leasePage .sold-features span:nth-child(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23666' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M3 21V7a2 2 0 012-2h14a2 2 0 012 2v14M3 11h18M7 11V7M17 11V7M7 21v-4a2 2 0 012-2h6a2 2 0 012 2v4'/%3E%3C/svg%3E");
}

#leasePage .sold-features span:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23666' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M4 12h16M4 12a2 2 0 00-2 2v4a2 2 0 002 2h16a2 2 0 002-2v-4a2 2 0 00-2-2M6 12V5a2 2 0 012-2h2a2 2 0 012 2v7'/%3E%3C/svg%3E");
}

#leasePage .sold-features span:nth-child(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23666' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Crect height='18' rx='2' width='18' x='3' y='3'/%3E%3Cpath d='M3 9h18M9 21V9'/%3E%3C/svg%3E");
}

#leasePage .sold-price {
    font-size: 12px;
    color: var(--text-medium);
}

#leasePage .sold-price strong {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    
    margin-top: 3px;
}

#leasePage /* No Results */
        .no-results{
            text-align: center;
            padding: 80px 20px;
        }
#leasePage .no-results h2{
            font-size: 32px;
            color: var(--text-dark);
            margin-bottom: 15px;
        }
#leasePage .no-results p{
            color: var(--text-medium);
            margin-bottom: 30px;
        }
#leasePage /* ============================================
           PAGINATION
           ============================================ */
        .pagination{
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 25px 0;
            max-width: var(--container-max);
            margin: 0 auto;
        }
#leasePage .pagination-btn{
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
            background-color: transparent;
            border: 1px solid var(--border-gray);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
#leasePage .pagination-btn:hover{
            border-color: var(--navy-blue);
            color: var(--navy-blue);
        }
#leasePage .pagination-btn.active{
            background-color: var(--navy-blue);
            border-color: var(--navy-blue);
            color: var(--white);
        }
#leasePage .pagination-btn.disabled{
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
        }
#leasePage .pagination-ellipsis{
            font-size: 14px;
            color: var(--text-medium);
            padding: 0 5px;
        }
#leasePage .pagination-arrow{
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            border: 1px solid var(--border-gray);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
#leasePage .pagination-arrow:hover{
            border-color: var(--navy-blue);
        }
#leasePage .pagination-arrow svg{
            width: 16px;
            height: 16px;
            stroke: var(--text-dark);
            fill: none;
        }
#leasePage /* ============================================
           RECENTLY LET/SOLD CAROUSEL SECTION
           ============================================ */
        .recently-section{
            background-color: var(--white);
            padding: 30px 0;
            border-top: 1px solid var(--border-gray);
            border-bottom: 1px solid var(--border-gray);
        }
#leasePage .recently-container{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }
#leasePage .recently-header{
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
#leasePage .recently-title{
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-medium);
        }
#leasePage .recently-nav{
            display: flex;
            gap: 10px;
        }
#leasePage .recently-nav-btn{
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            border: 1px solid var(--border-gray);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
#leasePage .recently-nav-btn:hover{
            border-color: var(--navy-blue);
        }
#leasePage .recently-nav-btn svg{
            width: 14px;
            height: 14px;
            stroke: var(--text-dark);
            fill: none;
        }
#leasePage .recently-carousel{
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 10px;
        }
#leasePage .recently-carousel::-webkit-scrollbar{
            display: none;
        }
#leasePage .recently-card{
            flex: 0 0 200px;
            scroll-snap-align: start;
            background-color: var(--white);
            border: 1px solid var(--border-gray);
            overflow: hidden;
            transition: all 0.3s ease;
        }
#leasePage .recently-card:hover{
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
#leasePage .recently-card-image{
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
        }
#leasePage .recently-card-image img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
#leasePage .recently-card:hover .recently-card-image img{
            transform: scale(1.05);
        }
#leasePage .recently-badge{
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 5px 12px;
            background-color: var(--gold);
            color: var(--white);
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
#leasePage .recently-card-content{
            padding: 15px;
        }
#leasePage .recently-card-title{
            font-family: var(--font-display);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 3px;
            line-height: 1.3;
        }
#leasePage .recently-card-location{
            font-family: var(--font-display);
            font-size: 13px;
            font-style: italic;
            color: var(--text-medium);
            margin-bottom: 12px;
        }
#leasePage .recently-card-features{
            display: flex;
            gap: 15px;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-gray);
        }
#leasePage .recently-feature{
            display: flex;
            align-items: center;
            gap: 5px;
        }
#leasePage .recently-feature svg{
            width: 14px;
            height: 14px;
            stroke: var(--text-light);
            fill: none;
        }
#leasePage .recently-feature span{
            font-size: 11px;
            color: var(--text-medium);
        }
#leasePage .recently-card-price{
            display: flex;
            flex-direction: column;
        }
#leasePage .recently-price-label{
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 2px;
        }
#leasePage .recently-price-amount{
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 500;
            color: var(--text-dark);
        }
#leasePage /* ============================================
           NEWSLETTER SECTION - EXACT MATCH
           ============================================ */
        .newsletter-section{
            background-color: var(--white);
            padding: 35px 0;
            border-top: 1px solid var(--border-gray);
        }
#leasePage .newsletter-container{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
#leasePage .newsletter-text{
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 400;
            font-style: italic;
            color: var(--text-dark);
            letter-spacing: 0.3px;
        }
#leasePage .newsletter-btn{
            padding: 16px 50px;
            background-color: var(--gold);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
#leasePage .newsletter-btn:hover{
            background-color: var(--gold-hover);
        }
#leasePage /* ============================================
           FOOTER - EXACT MATCH TO GREENHAUSDR.COM
           ============================================ */
        .footer{
            background-color: var(--footer-gray);
            padding-top: 60px;
            position: relative;
        }
#leasePage .footer-main{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
            display: grid;
            grid-template-columns: 1.3fr 1fr 1.3fr 1fr 1fr;
            gap: 30px;
        }
#leasePage /* Footer Logo Section */
        .footer-brand{
            display: flex;
            flex-direction: column;
        }
#leasePage .footer-logo-wrapper{
            display: flex;
            align-items: center;
            gap: 12px;
        }
#leasePage .footer-logo-icon{
            width: 60px;
            height: 60px;
            flex-shrink: 0;
        }
#leasePage .footer-logo-text{
            display: flex;
            flex-direction: column;
        }
#leasePage .footer-logo-text .brand{
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 500;
            font-style: italic;
            color: var(--dark-green);
            line-height: 1;
        }
#leasePage .footer-logo-text .tagline{
            font-family: var(--font-display);
            font-size: 9px;
            font-style: italic;
            color: var(--text-medium);
            margin-top: 4px;
            letter-spacing: 0.3px;
        }
#leasePage /* Footer Columns */
        .footer-column h4{
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px;
        }
#leasePage .footer-links{
            list-style: none;
        }
#leasePage .footer-links li{
            margin-bottom: 10px;
        }
#leasePage .footer-links a{
            font-size: 13px;
            font-weight: 400;
            color: var(--text-medium);
            letter-spacing: 0.3px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }
#leasePage .footer-links a:hover{
            color: var(--gold);
        }
#leasePage /* Partner Logos */
        .partner-logos{
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }
#leasePage .partner-logo-placeholder{
            height: 28px;
            padding: 4px 8px;
            font-size: 9px;
            font-weight: 700;
            color: var(--text-medium);
            display: flex;
            align-items: center;
            justify-content: center;
        }
#leasePage /* Social Media Row */
        .footer-social-row{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 40px var(--container-padding);
            display: flex;
            justify-content: center;
        }
#leasePage .footer-social{
            display: flex;
            gap: 10px;
        }
#leasePage .footer-social a{
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
#leasePage .footer-social a:hover{
            background-color: var(--gold-hover);
            transform: translateY(-3px);
        }
#leasePage .footer-social a svg{
            width: 18px;
            height: 18px;
            fill: var(--white);
        }
#leasePage /* Footer Bottom */
        .footer-bottom{
            border-top: 1px solid var(--border-gray);
            background-color: var(--footer-gray);
        }
#leasePage .footer-bottom-content{
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 20px var(--container-padding);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
#leasePage .footer-copyright{
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-medium);
        }
#leasePage .footer-credit{
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 500;
            color: var(--text-medium);
        }
#leasePage .footer-credit .prisma-icon{
            width: 14px;
            height: 14px;
            color: var(--gold);
        }
#leasePage /* ============================================
           SCROLL TO TOP BUTTON - INSIDE FOOTER
           ============================================ */
        .scroll-to-top{
            position: absolute;
            bottom: 70px;
            left: 30px;
            width: 48px;
            height: 48px;
            background-color: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 100;
            opacity: 1;
            visibility: visible;
            border: none;
        }
#leasePage .scroll-to-top:hover{
            background-color: var(--gold-hover);
            transform: translateY(-3px);
        }
#leasePage .scroll-to-top svg{
            width: 20px;
            height: 20px;
            stroke: var(--white);
            fill: none;
        }
#leasePage /* Mobile Scroll Row - Hidden on desktop */
        .mobile-scroll-row{
            display: none;
        }
#leasePage .scroll-to-top-mobile{
            width: 44px;
            height: 44px;
            background-color: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
#leasePage .scroll-to-top-mobile:hover{
            background-color: var(--gold-hover);
        }
#leasePage .scroll-to-top-mobile svg{
            width: 18px;
            height: 18px;
            stroke: var(--white);
            fill: none;
            pointer-events: none;
        }
#leasePage /* ============================================
           MOBILE STICKY SEARCH BAR
           ============================================ */
        .mobile-sticky-search{
            display: none;
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            z-index: 950;
            background-color: var(--white);
            padding: 15px var(--container-padding);
            border-bottom: 1px solid var(--border-gray);
            transition: transform 0.3s ease;
        }
#leasePage .mobile-sticky-search.hidden{
            transform: translateY(-100%);
        }
#leasePage .mobile-sticky-search.at-footer{
            display: none !important;
        }
#leasePage .mobile-sticky-search-inner{
            display: flex;
            gap: 12px;
            align-items: stretch;
        }
#leasePage .mobile-refine-btn{
            flex: 1;
            padding: 16px 25px;
            background-color: var(--navy-blue);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
#leasePage .mobile-refine-btn:hover{
            background-color: var(--gold);
        }
#leasePage .mobile-filter-icon-btn{
            width: 54px;
            height: 54px;
            background-color: var(--white);
            border: 1px solid var(--border-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
#leasePage .mobile-filter-icon-btn:hover{
            border-color: var(--gold);
        }
#leasePage .mobile-filter-icon-btn svg{
            width: 22px;
            height: 22px;
            stroke: var(--text-dark);
            pointer-events: none;
        }
#leasePage /* Mobile Full-Screen Filter Panel */
        .mobile-filter-overlay{
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--white);
            z-index: 999999;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            transform: translateY(100%);
            -webkit-transform: translateY(100%);
            transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
            -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        }
#leasePage .mobile-filter-overlay.active{
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
            -webkit-transform: translateY(0);
        }
#leasePage .mobile-filter-header{
            position: sticky;
            top: 0;
            background-color: var(--white);
            padding: 20px var(--container-padding);
            border-bottom: 1px solid var(--border-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
        }
#leasePage .mobile-filter-title{
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-dark);
        }
#leasePage .mobile-filter-close{
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            transition: background-color 0.3s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            background: none;
            border: none;
        }
#leasePage .mobile-filter-close:hover{
            background-color: var(--light-gray);
        }
#leasePage .mobile-filter-close svg{
            width: 24px;
            height: 24px;
            stroke: var(--text-dark);
            stroke-width: 2;
            pointer-events: none;
        }
#leasePage .mobile-filter-controls{
            display: flex;
            padding: 15px var(--container-padding);
            border-bottom: 1px solid var(--border-gray);
            gap: 0;
        }
#leasePage .mobile-filter-control{
            flex: 1;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 0;
        }
#leasePage .mobile-filter-control:first-child{
            border-right: 1px solid var(--border-gray);
            padding-right: 15px;
        }
#leasePage .mobile-filter-control:last-child{
            padding-left: 15px;
        }
#leasePage .mobile-filter-control label{
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-dark);
        }
#leasePage .mobile-filter-control select{
            font-size: 14px;
            font-weight: 500;
            color: var(--text-dark);
            border: none;
            background: transparent;
            cursor: pointer;
            -webkit-appearance: menulist;
            appearance: menulist;
            padding: 5px 10px 5px 0;
            min-width: 100px;
        }
#leasePage .mobile-filter-

        .mobile-filter-section{
            margin-bottom: 30px;
        }
#leasePage .mobile-filter-section:last-child{
            margin-bottom: 0;
        }
#leasePage .mobile-filter-section h5{
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px;
        }
#leasePage .mobile-filter-options{
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
#leasePage .mobile-filter-checkbox{
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }
#leasePage .mobile-filter-checkbox input[type="checkbox"]{
            appearance: none;
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border: 1px solid var(--border-gray);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }
#leasePage .mobile-filter-checkbox input[type="checkbox"]:checked{
            background-color: var(--navy-blue);
            border-color: var(--navy-blue);
        }
#leasePage .mobile-filter-checkbox input[type="checkbox"]:checked::after{
            content: '';
            position: absolute;
            left: 6px;
            top: 2px;
            width: 5px;
            height: 10px;
            border: solid var(--white);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
#leasePage .mobile-filter-checkbox span{
            font-size: 13px;
            font-weight: 400;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
#leasePage .mobile-filter-footer{
            position: sticky;
            bottom: 0;
            background-color: var(--white);
            padding: 20px var(--container-padding);
            border-top: 1px solid var(--border-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
#leasePage .mobile-clear-btn{
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-dark);
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px 0;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
#leasePage .mobile-apply-btn{
            padding: 16px 50px;
            background-color: var(--navy-blue);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
#leasePage .mobile-apply-btn:hover{
            background-color: var(--gold);
        }
#leasePage /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 1200px){
            

            .nav-menu {
                gap: 25px;
            }

            .search-fields {
                grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
            }

            .footer-main {
                grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
                gap: 25px;
            }

            .footer-column:last-child {
                grid-column: auto;
            }
        }
@media (max-width: 992px){#leasePage .main-nav{
                display: none;
            }
#leasePage .page-title{
                font-size: 38px;
            }
#leasePage .search-fields{
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                border-bottom: none;
                padding-bottom: 0;
            }
#leasePage .search-field{
                border-right: none;
                border-bottom: 1px solid var(--border-gray);
                padding: 0 0 15px 0;
            }
#leasePage .btn-search{
                grid-column: 1 / -1;
                margin: 20px 0 0 0;
            }
#leasePage .property-card{
                grid-template-columns: 1fr;
            }
#leasePage .newsletter-container{
                flex-direction: column;
                text-align: center;
                gap: 25px;
            }
#leasePage .footer-main{
                grid-template-columns: 1fr 1fr;
                gap: 35px;
            }
#leasePage .footer-brand{
                grid-column: 1 / -1;
                align-items: center;
                padding-bottom: 30px;
                border-bottom: 1px solid var(--border-gray);
            }
#leasePage .scroll-to-top-desktop{
                left: 20px;
                bottom: 60px;
            }}
@media (max-width: 768px){#leasePage .logo-text .brand-name{
                font-size: 22px;
            }
#leasePage .logo-text .brand-tagline{
                display: none;
            }
#leasePage .get-in-touch span{
                display: none;
            }
#leasePage /* Hide desktop search section on mobile */
            .search-section{
                display: none;
            }
#leasePage /* Show mobile sticky search */
            .mobile-sticky-search{
                
            }
#leasePage /* Hide mobile sticky search at footer */
            .mobile-sticky-search.at-footer{
                display: none !important;
            }
#leasePage /* Enable mobile filter overlay visibility */
            .mobile-filter-overlay{
                visibility: hidden;
                opacity: 0;
            }
#leasePage .mobile-filter-overlay.active{
                visibility: visible;
                opacity: 1;
            }
#leasePage /* Adjust results section for sticky bar */
            .results-section{
                padding-top: 100px;
            }
#leasePage /* Pagination mobile */
            .pagination{
                padding: 30px 20px;
                gap: 5px;
            }
#leasePage .pagination-btn, #leasePage .pagination-arrow{
                width: 36px;
                height: 36px;
                font-size: 13px;
            }
#leasePage /* Recently section mobile */
            .recently-section{
                padding: 40px 0;
            }
#leasePage .recently-card{
                flex: 0 0 180px;
            }
#leasePage .recently-card-title{
                font-size: 13px;
            }
#leasePage .recently-card-location{
                font-size: 12px;
            }
#leasePage .recently-price-amount{
                font-size: 14px;
            }
#leasePage .page-title{
                font-size: 32px;
            }
#leasePage .property-details{
                padding: 25px;
            }
#leasePage .property-title{
                font-size: 26px;
            }
#leasePage .newsletter-text{
                font-size: 18px;
                line-height: 1.5;
            }
#leasePage /* Mobile Footer - Left Aligned Layout (OB Private Style) */
            .footer{
                padding-top: 40px;
            }
#leasePage .footer-main{
                grid-template-columns: 1fr;
                text-align: left;
                gap: 0;
            }
#leasePage .footer-brand{
                align-items: flex-start;
                padding-bottom: 30px;
                margin-bottom: 0;
                border-bottom: none;
            }
#leasePage .footer-logo-wrapper{
                flex-direction: row;
                gap: 10px;
            }
#leasePage .footer-logo-text{
                align-items: flex-start;
            }
#leasePage .footer-column{
                padding: 25px 0 20px;
                border-bottom: none;
            }
#leasePage .footer-column h4{
                margin-bottom: 15px;
                color: var(--gold);
            }
#leasePage .footer-links{
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
#leasePage .footer-links li{
                margin-bottom: 0;
            }
#leasePage .footer-links a{
                font-size: 12px;
            }
#leasePage .partner-logos{
                justify-content: flex-start;
                margin-top: 15px;
            }
#leasePage /* Social icons after each section on mobile */
            .footer-social-section{
                display: flex;
                gap: 10px;
                margin-top: 15px;
            }
#leasePage .footer-social-section a{
                width: 36px;
                height: 36px;
                border-radius: 50%;
                background-color: var(--gold);
                display: flex;
                align-items: center;
                justify-content: center;
            }
#leasePage .footer-social-section a svg{
                width: 16px;
                height: 16px;
                fill: var(--white);
            }
#leasePage .footer-social-row{
                padding: 25px var(--container-padding);
                border-top: 1px solid var(--border-gray);
                justify-content: flex-start;
            }
#leasePage .footer-bottom-content{
                flex-direction: column;
                gap: 10px;
                text-align: left;
                align-items: flex-start;
                padding: 20px var(--container-padding);
            }
#leasePage .scroll-to-top-desktop{
                display: none;
            }
#leasePage .mobile-scroll-row{
                display: flex;
                justify-content: flex-start;
                padding: 20px var(--container-padding);
                border-top: 1px solid var(--border-gray);
            }
#leasePage .book-valuation-btn{
                font-size: 10px;
                padding: 12px 10px;
            }}


/* ===== Properties Sales Search Engine overrides ===== */
.search-section {
            background-color: var(--cream);
            padding: 20px 0 25px;
            border-bottom: 1px solid var(--border-gray);
            position: sticky;
            top: var(--header-height);
            z-index: 900;
        }

        .search-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }

        .page-title {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 35px;
            letter-spacing: 1px;
            display: none; /* Hidden */
        }

        /* Search Bar - OB Private Style */
        .search-bar {
            background-color: var(--white);
            border: 1px solid var(--border-gray);
            padding: 25px 30px;
        }

        .search-fields {
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr 1fr auto;
            gap: 0;
            align-items: end;
            border-bottom: 1px solid var(--border-gray);
            padding-bottom: 20px;
        }

        .search-field {
            display: flex;
            flex-direction: column;
            padding: 0 20px;
            border-right: 1px solid var(--border-gray);
        }

        .search-field:first-child {
            padding-left: 0;
        }

        .search-field:last-of-type {
            border-right: none;
        }

        .search-field label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .search-field input,
        .search-field select {
            padding: 10px 0;
            border: none;
            font-size: 14px;
            font-family: var(--font-body);
            font-weight: 500;
            background-color: transparent;
            color: var(--text-dark);
            width: 100%;
            cursor: pointer;
        }

        .search-field input::placeholder {
            color: var(--text-dark);
            font-weight: 500;
        }

        .search-field input:focus,
        .search-field select:focus {
            outline: none;
        }

        .search-field select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right center;
            padding-right: 20px;
        }

        .btn-search {
            padding: 15px 40px;
            background-color: var(--navy-blue);
            color: var(--white);
            border: none;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 20px;
            white-space: nowrap;
        }

        .btn-search:hover {
            background-color: var(--gold);
        }

        /* Search Controls Row */
        .search-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 18px;
        }

        .filters-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark);
            cursor: pointer;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .filters-btn:hover {
            color: var(--gold);
        }

        .filters-icon {
            display: flex;
            flex-direction: column;
            gap: 3px;
            width: 16px;
        }

        .filters-icon span {
            height: 2px;
            background-color: currentColor;
            border-radius: 1px;
        }

        .filters-icon span:nth-child(1) { width: 100%; }
        .filters-icon span:nth-child(2) { width: 75%; }
        .filters-icon span:nth-child(3) { width: 50%; }

        .search-options {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .option-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .option-group label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
        }

        .option-group select {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--text-dark);
            border: none;
            background: transparent;
            cursor: pointer;
            padding: 5px 0;
        }

        .option-group select:focus {
            outline: none;
        }

        .view-toggle {
            display: flex;
            gap: 15px;
        }

        .view-btn {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
            padding: 8px 0;
        }

        /* ============================================
           FILTER PANEL - OB PRIVATE STYLE
           ============================================ */
        .filter-panel {
            display: none;
            background-color: var(--white);
            border: 1px solid var(--border-gray);
            border-top: 2px solid rgba(0,0,0,0.08);
            padding: 0;
            margin-top: 12px;
        }

        .filter-panel.active {
            
        }

        .filter-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            border-bottom: 1px solid var(--border-gray);
        }
        
        .filter-panel-header h4 {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark);
            margin: 0;
            display: none; /* Hidden on desktop, shown on mobile */
        }

        .filter-close-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-dark);
            cursor: pointer;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .filter-close-btn:hover {
            color: var(--gold);
        }

        .filter-close-btn svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            stroke-width: 2;
        }

        .filter-panel-options {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        /* ============================================
           FILTER PANEL BODY - OB PRIVATE STYLE
           4-column grid layout with category sections
           ============================================ */
        .filter-panel-body {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding: 35px 30px 40px;
            border-top: 1px solid var(--border-gray);
        }

        .filter-column {
            display: flex;
            flex-direction: column;
        }

        .filter-column h5 {
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--navy-blue);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-gray);
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .filter-checkbox {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            padding: 10px 0;
            border-bottom: 1px solid transparent;
            transition: all 0.2s ease;
        }

        .filter-checkbox:hover {
            background-color: rgba(139, 115, 85, 0.03);
        }

        .filter-checkbox input[type="checkbox"] {
            appearance: none;
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border: 1.5px solid var(--border-gray);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .filter-checkbox input[type="checkbox"]:checked {
            background-color: var(--navy-blue);
            border-color: var(--navy-blue);
        }

        .filter-checkbox input[type="checkbox"]:checked::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 2px;
            width: 5px;
            height: 9px;
            border: solid var(--white);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .filter-checkbox input[type="checkbox"]:hover {
            border-color: var(--gold);
        }

        .filter-checkbox span {
            font-size: 13px;
            font-weight: 400;
            color: var(--text-medium);
            transition: color 0.2s ease;
        }

        .filter-checkbox:hover span {
            color: var(--text-dark);
        }

        .filter-checkbox input[type="checkbox"]:checked + span {
            color: var(--text-dark);
            font-weight: 500;
        }

        .filter-panel-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            border-top: 1px solid var(--border-gray);
            background-color: var(--white);
        }

        .clear-filters-btn {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.5px;
            color: var(--text-medium);
            text-decoration: underline;
            cursor: pointer;
            padding: 12px 0;
            transition: color 0.3s ease;
            background: none;
            border: none;
        }

        .clear-filters-btn:hover {
            color: var(--navy-blue);
        }

        .apply-filters-btn {
            padding: 14px 40px;
            background-color: var(--navy-blue);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .apply-filters-btn:hover {
            background-color: var(--gold);
        }

        .view-btn:hover,
        .view-btn.active {
            color: var(--text-dark);
        }

        /* ============================================
           FILTER PANEL RESPONSIVE - OB PRIVATE STYLE
           ============================================ */
        
        /* Tablet - 2 columns */
        @media (max-width: 992px) {
            .filter-panel-body {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                padding: 25px;
            }

            .filter-panel-options {
                gap: 20px;
            }
        }

        /* Mobile - Full screen slide-out panel */
        @media (max-width: 768px) {
            .filter-panel {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                margin-top: 0;
                z-index: 2000;
                display: none;
                flex-direction: column;
                background-color: var(--white);
                overflow: hidden;
            }
            
            .filter-panel.active {
                display: flex;
            }
            
            .filter-panel-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                padding: 20px;
                border-bottom: 1px solid var(--border-gray);
                background-color: var(--white);
                flex-shrink: 0;
            }
            
            .filter-panel-header h4 {
                 /* Show title on mobile */
                font-size: 14px;
                font-weight: 600;
                letter-spacing: 1px;
                text-transform: uppercase;
                color: var(--text-dark);
                margin: 0;
            }
            
            .filter-close-btn {
                order: 2;
            }
            
            .filter-close-btn span {
                display: none; /* Hide "Close" text on mobile, just show X */
            }
            
            .filter-panel-options {
                display: none; /* Hide options on mobile - show in header differently */
            }

            .filter-panel-body {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                padding: 20px 20px 120px;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                flex: 1;
            }
            
            .filter-column {
                padding: 0;
            }

            .filter-column h5 {
                font-size: 12px;
                letter-spacing: 1px;
                margin-bottom: 15px;
                padding-bottom: 10px;
            }

            .filter-checkbox {
                padding: 12px 0;
                min-height: 44px;
            }
            
            .filter-checkbox input[type="checkbox"] {
                width: 22px;
                height: 22px;
            }
            
            .filter-checkbox input[type="checkbox"]:checked::after {
                left: 7px;
                top: 3px;
                width: 6px;
                height: 11px;
            }
            
            .filter-checkbox span {
                font-size: 14px;
            }

            .filter-panel-footer {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                padding: 15px 20px;
                background-color: var(--white);
                box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
                z-index: 2001;
                flex-shrink: 0;
            }

            .clear-filters-btn,
            .apply-filters-btn {
                padding: 14px 20px;
                font-size: 13px;
            }
            
            .apply-filters-btn {
                flex: 1;
                text-align: center;
            }
        }
        
        /* Extra small screens - single column filters */
        @media (max-width: 480px) {
            .filter-panel-body {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        /* ============================================
           RESULTS SECTION
           ============================================ */
        .results-section {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 30px var(--container-padding);
        }

        .results-header {
            margin-bottom: 25px;
        }

        .results-count {
            font-size: 14px;
            color: var(--text-medium);
            font-weight: 400;
        }

        .results-count span {
            font-weight: 600;
            color: var(--text-dark);
        }

        /* Property Grid */
        
/* ============================================================
   SALES PAGE FIX
   Ensure the Properties Sales "search engine" renders at the TOP
   (prevents global hero .search-bar absolute positioning from
   pushing it to the bottom of the viewport).
   ============================================================ */
#leasePage .search-section{
  background-color: var(--cream);
  padding: 20px 0 25px;
  border-bottom: 1px solid var(--border-gray);
  position: relative; /* override any sticky/absolute conflicts */
  top: auto !important;
}
#leasePage .search-container{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
#leasePage .search-bar{
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  background-color: var(--white) !important;
  border: 1px solid var(--border-gray) !important;
  padding: 25px 30px !important;
  !important;
}
#leasePage .search-fields{
  display: grid !important;
  grid-template-columns: 2.5fr 1fr 1fr 1fr auto;
  gap: 0;
  align-items: end;
  border-bottom: 1px solid var(--border-gray);
  padding-bottom: 20px;
}
#leasePage .search-field{
  padding: 0 20px;
  border-right: 1px solid var(--border-gray);
}
#leasePage .search-field:first-child{ padding-left: 0; }
#leasePage .search-field:last-child{ border-right: none; padding-right: 20px; }
#leasePage .btn-search{
  padding: 15px 40px;
  background-color: var(--navy-blue);
  color: var(--white);
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 52px;
}
#leasePage .btn-search:hover{ opacity: 0.9; }


/* =========================================================
   SALES PAGE: Fix Filters overlay + sticky search + centering
   (scoped to #leasePage to avoid impacting other pages)
   ========================================================= */
#leasePage .search-section { position: relative; }

#leasePage .filter-panel{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: var(--sales-filter-top, 0px);
  z-index: 9998;
  overflow: auto;
  max-height: calc(100vh - var(--sales-filter-top, 0px));
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

#leasePage.filters-open .filter-panel{  }

#leasePage.filters-open .search-controls{ display: none !important; }

/* When filters are open, keep the search bar visible at the bottom like OB Private */
#leasePage.filters-open .search-bar{
  position: fixed !important;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  border-top: 1px solid var(--border-gray);
}

/* Prevent the fixed bottom bar from covering results */
#leasePage .main-content-wrapper{ padding-bottom: 120px; }

/* Center the results (green box area) */
#leasePage .main-content-wrapper{
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* Make the filters/sort bar look aligned and not cramped */
#leasePage .search-controls{
  width: 100%;
}

/* Sticky mobile search: keep it hovering over content while scrolling */
#leasePage .mobile-sticky-search{
  position: sticky;
  top: var(--sales-sticky-top, 80px);
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 10020;
  background: #fff;
  border-bottom: 1px solid var(--border-gray);
}

@media (min-width: 1025px){
  /* Keep sticky search visible on desktop too (as requested). */
  #leasePage .mobile-sticky-search{  }
}

@media (max-width: 1024px){
  #leasePage .main-content-wrapper{ padding-left: 16px; padding-right: 16px; }
}


body.no-scroll{overflow:hidden;}


/* ============================================================
   SALES PAGE FIXES (overlay + sticky search) - enforced
   ============================================================ */
#leasePage.filters-open #filterPanel,
#leasePage #filterPanel.active{
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  top: var(--sales-filter-top, 80px) !important;
  bottom: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  z-index: 20050 !important;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}

/* Ensure overlay sits above results + side tab */
#leasePage.filters-open{ position: relative; z-index: 1; }

/* Mobile sticky search must always hover while scrolling on sales page */
#leasePage #mobileStickySearch,
#leasePage .mobile-sticky-search{
  !important;
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  top: var(--sales-sticky-top, var(--sales-filter-top, 80px)) !important;
  bottom: auto !important;
  z-index: 10040 !important;
  background: #fff;
  border-bottom: 1px solid var(--border-gray);
}

/* Give content breathing room so sticky bar doesn't cover it */
#leasePage .main-content-wrapper,
#leasePage .properties-container,
#leasePage .property-grid{
  padding-bottom: 90px !important;
}

/* Center the results area (green box in your screenshot) */
#leasePage .properties-container,
#leasePage .property-grid,
#leasePage .property-list{
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}



/* Desktop footer: keep UAF, ACHO, CCPSD in one horizontal row */

/* Desktop footer fix: force UAF, ACHO, CCPSD to stay in ONE horizontal row (desktop) */
@media (min-width: 992px){
  .footer-partners-inline,
  #leasePage .footer-partners-inline{
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 18px !important;
  }
  .footer-partners-inline > *,
  #leasePage .footer-partners-inline > *{
    flex: 0 0 auto !important;
  }
  .footer-partners-inline img,
  #leasePage .footer-partners-inline img{
    max-height: 36px;
    height: auto;
    width: auto;
    object-fit: contain;
  }
}

@media (min-width: 992px){
  .footer .footer-logos,
  .footer .compliance-logos,
  .footer .partner-logos,
  .footer .footer-partners,
  .footer-logos,
  .compliance-logos,
  .partner-logos,
  .footer-partners{
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:18px !important;
    align-items:center !important;
    justify-content:center !important;
  }
  .footer .footer-logos img,
  .footer .compliance-logos img,
  .footer .partner-logos img,
  .footer .footer-partners img,
  .footer-logos img,
  .compliance-logos img,
  .partner-logos img,
  .footer-partners img{
    max-height:36px;
    height:auto;
    width:auto;
    object-fit:contain;
  }
}

/* Discover card anchor links */
.discover-card-link{ text-decoration:none; color: inherit; }
.discover-card-link:visited{ color: inherit; }
.discover-card-link:focus{ outline: 2px solid var(--gold); outline-offset: 4px; }

/* Lease page (embedded iframe) */
.iframe-section{
  padding-top: calc(var(--header-height) + 20px);
  background: var(--cream);
  min-height: calc(100vh - 200px);
}
.iframe-container{
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding) 60px;
}
.page-iframe{
  width: 100%;
  min-height: 85vh;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
@media (max-width: 768px){
  .iframe-container{ padding: 0 20px 40px; }
  .page-iframe{ min-height: 80vh; border-radius: 10px; }
}


/* Force exact CTA client box size on partner contact cards */
.partner-contact-card .partner-contact-cta{
  width: 429px;
  height: 50px;
  box-sizing: border-box;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
@media (max-width: 768px){
  .partner-contact-card .partner-contact-cta{
    width: 100%;
    max-width: 429px;
  }
}


/* ==========================================================
   OB PRIVATE-STYLE SEARCH BAR (Properties to Buy / #salesPage)
   ========================================================== */
#salesPage .search-bar{
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
#salesPage .search-fields{
  border-bottom: none;
  padding-bottom: 0;
}
#salesPage .search-field:last-of-type{
  border-right: 1px solid var(--border-gray);
}
#salesPage .btn-search{
  margin-left: 0;
  height: 56px;
  align-self: stretch;
  padding: 0 70px;
}
#salesPage .search-controls{
  padding-top: 0;
  margin-top: 18px;
}
#salesPage .search-options{
  gap: 0;
}
#salesPage .option-group{
  padding: 0 18px;
  border-left: 1px solid var(--border-gray);
}
#salesPage .option-group:first-child{
  border-left: none;
  padding-left: 0;
}
#salesPage .view-toggle{
  padding-left: 18px;
  border-left: 1px solid var(--border-gray);
}
#salesPage .filters-btn{
  padding: 0;
  min-height: 0;
}

/* Responsive: stack fields on smaller screens */
@media (max-width: 820px){
  #salesPage .search-fields{
    grid-template-columns: 1fr;
  }
  #salesPage .search-field{
    padding: 12px 0;
    border-right: none;
    border-bottom: 1px solid var(--border-gray);
  }
  #salesPage .search-field:last-of-type{
    border-bottom: none;
    border-right: none;
  }
  #salesPage .btn-search{
    width: 100%;
    height: auto;
    padding: 16px 20px;
  }
  #salesPage .search-controls{
    margin-top: 14px;
  }
  #salesPage .search-options{
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }
  #salesPage .option-group{
    border-left: none;
    padding: 0;
  }
  #salesPage .view-toggle{
    border-left: none;
    padding-left: 0;
  }
}


        /* =========================================================
           SALES PAGE EASY UPGRADES (Sticky + Mobile Collapse + Overlay)
           Safe to paste at the END of the main  block.
        ========================================================== */

        /* 1) Make Sales search header sticky under the fixed header */
        #salesPage .search-section{
            position: sticky !important;
            top: var(--header-height, 70px) !important;
            z-index: 950;
        }

        /* Prevent anchor jumps hiding under the fixed header */
        html{
            scroll-padding-top: calc(var(--header-height, 70px) + 20px);
        }

        /* 2) Filters overlay + smooth open/close animation */
        #salesPage .filter-overlay{
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            top: var(--sales-filter-top, var(--header-height, 70px));
            background: rgba(0,0,0,0.35);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
            z-index: 20000;
        }
        #salesPage.filters-open .filter-overlay{
            opacity: 1;
            pointer-events: auto;
        }

        /* Override global .filter-panel display:none so we can animate */
        #salesPage .filter-panel{
            display: block !important;
            visibility: hidden;
            opacity: 0;
            transform: translateY(10px);
            pointer-events: none;
            transition:
              opacity 0.25s ease,
              transform 0.25s ease,
              visibility 0s linear 0.25s;
        }
        #salesPage .filter-panel.active{
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            transition:
              opacity 0.25s ease,
              transform 0.25s ease,
              visibility 0s;
        }

        /* 3) Mobile: collapse/expand the search fields */
        #salesPage .search-mobile-toggle{
            display: none;
            width: 100%;
            border: 0;
            background: transparent;
            padding: 10px 0 14px;
            cursor: pointer;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            align-items: center;
            justify-content: space-between;
        }
        #salesPage .search-mobile-toggle svg{
            width: 18px;
            height: 18px;
            flex: 0 0 auto;
        }

        @media (max-width: 768px){
            #salesPage .search-mobile-toggle{ display: flex; }

            /* Hide the form until user expands */
            #salesPage .search-bar form{ display: none; width: 100%; }
            #salesPage.sales-search-open .search-bar form{ display: block; }

            /* Keep the OB-style box tidy on mobile */
            #salesPage .search-bar{ padding: 16px 20px; }
        }

/* ===== Share Modal (Prisma) ===== */
body.modal-open { overflow: hidden; }

.ModalUtility{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.ModalUtility.is-open{ display: block; }

.ModalUtility__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
}

.ModalUtility__content{
  position: relative;
  max-width: 980px;
  width: calc(100% - 60px);
  margin: 10vh auto 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  overflow: hidden;
}

.ModalUtility__content--share{
  width: 546.7px;
  height: 331.84px;
  max-width: calc(100% - 60px);
  max-height: calc(100vh - 60px);
  margin: 14vh auto 0;
}
.ModalUtility__content--share .ModalUtility__content-inner{
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
}

.ModalUtility__close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #111;
}
.ModalUtility__close svg{ width: 18px; height: 18px; fill: currentColor; }

.ModalUtility__content-inner{
  padding: 44px 44px 36px;
}

.Share__title{
  margin: 0 0 26px;
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #111;
}

.Share__buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
}

.resp-sharing-button__link{
  text-decoration: none;
}

.resp-sharing-button{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  user-select: none;
}

.resp-sharing-button__icon{
  width: 18px;
  height: 18px;
  display: inline-flex;
}
.resp-sharing-button__icon svg{ width: 18px; height: 18px; fill: currentColor; }

.resp-sharing-button--facebook{ background:#1877F2; }
.resp-sharing-button--twitter{ background:#111; }
.resp-sharing-button--email{ background:#666; }
.resp-sharing-button--pinterest{ background:#E60023; }
.resp-sharing-button--linkedin{ background:#0A66C2; }
.resp-sharing-button--whatsapp{ background:#25D366; }

@media (max-width: 640px){
  .ModalUtility__content{ width: calc(100% - 26px); margin-top: 12vh; }
  .ModalUtility__content-inner{ padding: 34px 18px 20px; }
  .Share__buttons{ gap: 10px; }
  .resp-sharing-button{ width: 100%; justify-content: center; }
}

/* Prisma contact card: keep SHARE row centered and same background as card */
:is(#prismaPage, #catrainVegaPage, #capCanaPage, #\32 ndHomePage) .partner-share-link{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 0;
  margin: 0;
  background: #fff;
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  box-sizing: border-box;
}
:is(#prismaPage, #catrainVegaPage, #capCanaPage, #\32 ndHomePage) .partner-share-link:hover{
  background: #fff;
}
:is(#prismaPage, #catrainVegaPage, #capCanaPage, #\32 ndHomePage) .partner-share-link:focus{
  outline: none;
}

/* ==================== CATRAIN & VEGA – CONTACT CARD + ENQUIRY MODAL (SCOPED) ==================== */
#catrainVegaPage .partner-contact-card .framed{
  width:100%;
  border:3px solid #f3d113;
  padding:14px 14px;
  text-align:center;
  border-radius: 10px;
  background:#fff;
  font-family: 'Cormorant Garamond', serif;
  font-size:24px;
  line-height:1.2;
  color: var(--primary);
}

#catrainVegaPage .partner-enquiry{
  padding:16px 18px;
  background: #b9ab96;
  text-align:center;
  color:#fff;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:600;
  font-size:13px;
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
#catrainVegaPage .partner-enquiry .partner-enquiry-btn{
  display:inline-block;
  margin-top:12px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color:#fff;
  font-weight:600;
  letter-spacing:.02em;
  transition: transform .15s ease, background .15s ease;
  cursor:pointer;
}
#catrainVegaPage .partner-enquiry .partner-enquiry-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.18);
}

#catrainVegaPage .partner-contact-rows{ background:#fff; }
#catrainVegaPage .partner-contact-row{
  padding:16px 18px;
  border-top:1px solid rgba(0,0,0,0.08);
}
#catrainVegaPage .partner-contact-row .label{
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#7a7a7a;
  margin-bottom:6px;
  font-weight:600;
}
#catrainVegaPage .partner-contact-row .value{
  font-family: 'Cormorant Garamond', serif;
  font-size:30px;
  line-height:1.05;
  color:#111;
}
#catrainVegaPage .partner-contact-row .value a{ color:#111; }
#catrainVegaPage .partner-contact-row .value a:hover{ color: var(--gold); }

#catrainVegaPage .partner-contact-row.green{ outline: 3px solid rgba(0, 190, 90, .35); outline-offset: -6px; }
#catrainVegaPage .partner-contact-row.red{ outline: 3px solid rgba(240, 60, 60, .35); outline-offset: -6px; }

/* Enquiry form modal */
#catrainEnquiryModal .EnquiryModal__form{
  display:grid;
  gap:14px;
  margin-top: 14px;
}
#catrainEnquiryModal .EnquiryModal__form label{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6f6f6f;
  font-weight: 600;
  margin-bottom: 6px;
  
}
#catrainEnquiryModal .EnquiryModal__form input,
#catrainEnquiryModal .EnquiryModal__form textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 14px;
  outline: none;
}
#catrainEnquiryModal .EnquiryModal__form textarea{
  min-height: 120px;
  resize: vertical;
}
#catrainEnquiryModal .EnquiryModal__actions{
  display:flex;
  gap:12px;
  justify-content:flex-end;
  margin-top: 10px;
}
#catrainEnquiryModal .EnquiryModal__submit{
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
#catrainEnquiryModal .EnquiryModal__submit:hover{ background: #0f1a2a; }
#catrainEnquiryModal .EnquiryModal__note{ margin-top: 10px; color:#777; font-size: 12px; }