:root { --dark: #040429; --gold: #c9a668; --gold-lt: #dfc08e; --gold-dk: #a07e42; --white: #ffffff; --offwhite: #faf8f4; --light: #f3ede3; --mid: #7a7066; --border: rgba(201, 166, 104, 0.2); --shadow: 0 12px 48px rgba(4, 4, 41, 0.12); }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body { font-family: 'Outfit', sans-serif; background: var(--offwhite); color: var(--dark); overflow-x: hidden; }
.page { display: none; }
.page.active { display: block; }
nav { position: fixed; top: 0; width: 100%; z-index: 300; background: rgba(250, 248, 244, 0.97); backdrop-filter: blur(16px); padding: 0 60px; display: flex; align-items: center; justify-content: space-between; height: 72px; border-bottom: 1px solid rgba(201, 166, 104, 0.3); transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 4px 24px rgba(4, 4, 41, 0.1); }
.logo { display: flex; align-items: center; text-decoration: none; cursor: pointer; flex-shrink: 0; }
.logo-svg { height: 38px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; list-style: none; gap: 2px; }
.nav-links a { font-size: 13px; font-weight: 500; color: rgba(4, 4, 41, 0.7); text-decoration: none; padding: 8px 13px; border-radius: 4px; transition: color 0.2s, background 0.2s; cursor: pointer; }
.nav-links a:hover { color: var(--dark); background: rgba(4, 4, 41, 0.06); text-decoration: underline; text-decoration-color: #001a6e; text-underline-offset: 4px; text-decoration-thickness: 2px; }
.nav-links a.active { color: var(--dark); background: rgba(4, 4, 41, 0.07); font-weight: 600; }
.nav-login { background: var(--gold) !important; color: var(--dark) !important; font-weight: 700 !important; padding: 8px 22px !important; margin-left: 6px; }
.nav-login:hover { background: var(--gold-lt) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
.page-hero { padding-top: 72px; background: var(--dark); min-height: 320px; display: flex; align-items: center; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); opacity: 0.3; }
.page-hero-inner { padding: 60px 60px; position: relative; z-index: 2; }
.page-hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.page-hero-eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--gold); }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 5vw, 66px); font-weight: 700; line-height: 1.08; color: var(--white); letter-spacing: -2px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 16px; color: rgba(255, 255, 255, 0.5); margin-top: 16px; max-width: 520px; line-height: 1.65; }
.page-breadcrumb { display: flex; align-items: center; gap: 8px; font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 500; margin-bottom: 18px; flex-wrap: wrap; }
.page-breadcrumb a { color: rgba(255, 255, 255, 0.4); text-decoration: none; transition: color 0.2s; cursor: pointer; }
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb .bc-sep { color: rgba(255, 255, 255, 0.2); font-size: 10px; }
.page-breadcrumb .bc-current { color: rgba(255, 255, 255, 0.7); }
.page-hero-pattern { position: absolute; top: 0; right: 0; width: 50%; height: 100%; opacity: 0.04; background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%); background-size: 22px 22px; pointer-events: none; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 3.5vw, 50px); font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; color: var(--dark); }
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }
.btn-gold { padding: 14px 32px; background: var(--gold); color: var(--dark); border: none; border-radius: 4px; font-family: 'Outfit', sans-serif; font-size: 13.5px; font-weight: 700; letter-spacing: 0.5px; cursor: pointer; transition: background 0.2s, transform 0.2s; display: inline-block; text-decoration: none; }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline-dark { padding: 14px 32px; background: transparent; color: var(--dark); border: 1.5px solid rgba(4, 4, 41, 0.3); border-radius: 4px; font-family: 'Outfit', sans-serif; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all 0.2s; display: inline-block; text-decoration: none; }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold-dk); transform: translateY(-2px); }
.btn-outline-light { padding: 14px 32px; background: transparent; color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.25); border-radius: 4px; font-family: 'Outfit', sans-serif; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.divider-gold { width: 48px; height: 2px; background: var(--gold); margin: 20px 0; border-radius: 2px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
#page-home .hero { height: 100vh; height: 100dvh; width: 100vw; max-width: 100%; display: grid; grid-template-columns: 35fr 65fr; padding-top: 72px; position: relative; overflow: hidden; box-sizing: border-box; }
#page-home .hero-left { background: var(--dark); padding: clamp(32px, 4vh, 72px) clamp(36px, 4vw, 80px); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; min-height: 0; width: 100%; box-sizing: border-box; }
#page-home .hero-left::before { content: ''; position: absolute; bottom: -80px; right: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(201, 166, 104, 0.18) 0%, transparent 70%); border-radius: 50%; }
#page-home .hero-left::after { content: ''; position: absolute; top: 0; right: 0; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--gold), transparent); opacity: 0.35; }
.hero-eyebrow { font-size: clamp(10px, 0.75vw, 14px); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: clamp(12px, 2vh, 24px); display: flex; align-items: center; gap: 10px; animation: fadeUp 0.7s 0.2s ease both; opacity: 0; }
.hero-eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--gold); }
#page-home .hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 3.2vw, 82px); font-weight: 700; line-height: 1.08; color: var(--white); letter-spacing: -2px; margin-bottom: clamp(8px, 1.5vh, 16px); animation: fadeUp 0.7s 0.35s ease both; opacity: 0; }
#page-home .hero h1 em { font-style: italic; color: var(--gold); }
.hero-tagline { font-size: clamp(13px, 0.9vw, 18px); font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, 0.35); margin-bottom: clamp(20px, 3vh, 44px); animation: fadeUp 0.7s 0.45s ease both; opacity: 0; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.7s 0.55s ease both; opacity: 0; }
.hero-btn-equal { flex: 1; min-width: 200px; text-align: center; }
.hero-art-line { font-family: 'Pinyon Script', cursive; font-style: normal; font-size: 18px; font-weight: 400; letter-spacing: 0.5px; color: var(--white); text-transform: none; }
.hero-scroll { position: absolute; bottom: clamp(16px, 2.5vh, 36px); left: 60px; display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255, 255, 255, 0.25); animation: fadeUp 0.7s 0.8s ease both; opacity: 0; }
.scroll-line { width: 40px; height: 1px; background: var(--gold); opacity: 0.5; }
.hero-right { position: relative; overflow: hidden; background: linear-gradient(160deg, #0b0b3a 0%, #050521 60%, #0e0b2e 100%); min-height: 0; }
.hero-svg-wrap { width: 100%; height: 100%; position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.hero-svg-wrap svg { width: 100%; height: 100%; display: block; }
.hero-svg-wrap picture { display: block; width: 100%; height: 100%; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-brand-badge { position: absolute; top: 32px; left: 32px; z-index: 10; background: rgba(4, 4, 41, 0.88); border: 1px solid rgba(201, 166, 104, 0.55); backdrop-filter: blur(10px); padding: 10px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 1px; animation: floatY 5s ease-in-out infinite; }
.hero-verified-badge { position: absolute; bottom: 40px; right: 32px; z-index: 10; background: var(--white); border-radius: 10px; padding: 14px 20px; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15); animation: floatY 6s ease-in-out infinite; animation-delay: -2s; }
.verified-pill { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--dark); }
.verified-dot { width: 9px; height: 9px; border-radius: 50%; background: #3dba6f; flex-shrink: 0; }
.hero-verified-badge p { font-size: 11px; color: var(--mid); margin-top: 4px; }
.hero-stat-card { display: none; }
.stat-label-sm, .stat-big, .stat-sub-sm { display: none; }
.whats-new { background: var(--offwhite); padding: 100px 60px; }
.whats-new-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wn-content { display: flex; flex-direction: column; justify-content: center; }
.wn-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 3vw, 50px); font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; color: var(--dark); margin-bottom: 36px; }
.wn-content h2 em { font-style: italic; color: var(--gold); }
.wn-features { display: flex; flex-direction: column; gap: 24px; }
.wn-feat { display: flex; gap: 18px; align-items: flex-start; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.wn-feat:last-child { border-bottom: none; padding-bottom: 0; }
.wn-feat-num { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; color: var(--gold); opacity: 0.4; min-width: 40px; line-height: 1; }
.wn-feat-text strong { font-size: 15px; font-weight: 700; color: var(--dark); display: block; margin-bottom: 4px; }
.wn-feat-text p { font-size: 13.5px; color: var(--mid); line-height: 1.65; }
.wn-badge { display: inline-block; margin-top: 32px; padding: 10px 24px; background: var(--dark); color: var(--gold); border-radius: 4px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.wn-badge:hover { background: #333; }
.wn-visual { display: flex; flex-direction: column; gap: 20px; }
.wn-quick-stat { background: var(--white); border-radius: 10px; padding: 24px 28px; border: 1px solid var(--border); display: flex; align-items: center; gap: 20px; transition: transform 0.3s, box-shadow 0.3s; }
.wn-quick-stat:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.wn-qs-icon { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; background: rgba(201, 166, 104, 0.1); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.wn-qs-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; }
.wn-qs-label { font-size: 12px; color: var(--mid); margin-top: 3px; }
.dual-preview { padding: 100px 60px; background: var(--dark); position: relative; overflow: hidden; }
.dual-preview::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 900px; height: 500px; background: radial-gradient(ellipse, rgba(201, 166, 104, 0.06) 0%, transparent 70%); }
.dual-preview-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }
.dual-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; position: relative; z-index: 2; }
.dp-col-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.dp-col-label::after { content: ''; flex: 1; height: 1px; background: rgba(201, 166, 104, 0.2); }
.dp-col-label.renter-label { color: var(--gold); }
.dp-col-label.property-label { color: var(--gold); }
.dp-renter-card { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4); }
.dp-renter-head { background: linear-gradient(135deg, #040429 0%, #0c0c3a 50%, #1a1448 100%); padding: 24px 28px 20px; border-bottom: 1px solid rgba(201, 166, 104, 0.15); position: relative; overflow: hidden; min-height: 200px; display: flex; flex-direction: column; justify-content: space-between; }
.dp-renter-head::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(201, 166, 104, 0.15) 0%, transparent 70%); border-radius: 50%; }
.dp-avatar-row { display: flex; align-items: center; gap: 16px; margin-bottom: 0; }
.dp-avatar { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #c9a668, #a07e42); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--white); border: 2px solid rgba(201, 166, 104, 0.4); flex-shrink: 0; }
.dp-name strong { font-size: 18px; font-weight: 700; color: var(--white); display: block; font-family: 'Cormorant Garamond', serif; }
.dp-name span { font-size: 12px; color: rgba(255, 255, 255, 0.45); }
.dp-budget-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(201, 166, 104, 0.15); border: 1px solid rgba(201, 166, 104, 0.35); padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 700; color: var(--gold); backdrop-filter: blur(4px); position: relative; z-index: 2; align-self: flex-start; }
.dp-rent-asked-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(201, 166, 104, 0.15); border: 1px solid rgba(201, 166, 104, 0.35); padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 700; color: var(--gold); backdrop-filter: blur(4px); position: relative; z-index: 2; }
.dp-renter-body { padding: 24px 28px; }
.dp-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; margin-bottom: 20px; }
.dp-detail { }
.dp-detail-key { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--mid); margin-bottom: 3px; }
.dp-detail-val { font-size: 13.5px; font-weight: 700; color: var(--dark); }
.dp-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.dp-tag { padding: 4px 12px; border-radius: 3px; font-size: 11px; font-weight: 600; background: var(--light); color: var(--mid); border: 1px solid var(--border); }
.dp-tag.match { background: rgba(201, 166, 104, 0.12); color: var(--gold-dk); border-color: rgba(201, 166, 104, 0.3); }
.dp-contact-bar { display: flex; align-items: center; justify-content: flex-end; padding: 16px 20px; background: var(--light); border-radius: 8px; }
.dp-listed { font-size: 11px; color: var(--mid); }
.dp-contact-btn { padding: 9px 20px; background: var(--gold); color: var(--dark); border: none; border-radius: 4px; font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.dp-contact-btn:hover { background: var(--gold-lt); }
.dp-property-card { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4); }
.dp-prop-img { height: 200px; position: relative; overflow: hidden; background: linear-gradient(145deg, #0d0d3a, #1a1a5a, #040429); }
.dp-prop-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4, 4, 41, 0.7) 0%, rgba(4, 4, 41, 0.1) 50%, transparent 100%); }
.dp-prop-img-inner { width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a5e 0%, #0d0d40 40%, #060628 70%, #040429 100%); position: relative; overflow: hidden; }
.dp-prop-img-inner::before { content: ''; position: absolute; top: 15%; right: 12%; width: 32%; height: 50%; background: linear-gradient(145deg, rgba(201, 166, 104, 0.25), rgba(201, 166, 104, 0.08)); border: 2px solid rgba(201, 166, 104, 0.35); border-radius: 2px; box-shadow: inset 0 0 20px rgba(201, 166, 104, 0.1); }
.dp-prop-img-inner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 28%; background: linear-gradient(to top, rgba(201, 166, 104, 0.12), transparent); clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0% 100%); }
.dp-prop-badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 4px 10px; border-radius: 3px; background: var(--gold); color: var(--dark); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.dp-prop-fav { position: absolute; top: 12px; right: 14px; z-index: 2; width: 32px; height: 32px; border-radius: 50%; background: rgba(255, 255, 255, 0.9); display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; }
.dp-prop-price-overlay { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 16px 20px; display: flex; align-items: flex-end; justify-content: space-between; }
.dp-prop-price-big { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--white); line-height: 1; }
.dp-prop-price-big span { font-size: 13px; font-weight: 400; opacity: 0.7; font-family: 'Outfit', sans-serif; }
.dp-prop-verified { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: #7ecfa0; background: rgba(0, 0, 0, 0.4); padding: 4px 8px; border-radius: 3px; }
.dp-prop-body { padding: 22px 24px; }
.dp-prop-name { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; font-family: 'Cormorant Garamond', serif; letter-spacing: -0.3px; }
.dp-prop-loc { font-size: 12.5px; color: var(--mid); margin-bottom: 16px; }
.dp-prop-specs { display: flex; gap: 20px; padding: 16px 0; border-top: 1px solid #f0ebe2; border-bottom: 1px solid #f0ebe2; margin-bottom: 16px; }
.dp-prop-spec { font-size: 12px; color: var(--mid); display: flex; flex-direction: column; align-items: center; gap: 3px; flex: 1; }
.dp-prop-spec strong { font-size: 15px; font-weight: 700; color: var(--dark); }
.dp-prop-spec span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.dp-prop-amenities { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }
.dp-prop-amenity { font-size: 11px; padding: 3px 10px; background: var(--light); color: var(--mid); border-radius: 3px; border: 1px solid var(--border); }
.dp-prop-footer { display: flex; gap: 10px; }
.dp-prop-btn-primary { flex: 1; padding: 11px; background: var(--dark); color: var(--white); border: none; border-radius: 4px; font-family: 'Outfit', sans-serif; font-size: 12.5px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.dp-prop-btn-primary:hover { background: var(--gold); color: var(--dark); }
.dp-prop-btn-sec { padding: 11px 18px; background: transparent; color: var(--dark); border: 1.5px solid var(--border); border-radius: 4px; font-family: 'Outfit', sans-serif; font-size: 12.5px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.dp-prop-btn-sec:hover { border-color: var(--gold); color: var(--gold-dk); }
.features-section { padding: 100px 60px; background: var(--dark); position: relative; overflow: hidden; }
.features-section::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(201, 166, 104, 0.07) 0%, transparent 70%); }
.feat-header { text-align: center; margin-bottom: 60px; }
.feat-scroll-outer { display: none; }
.feat-scroll-controls { display: none; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.feat-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(201, 166, 104, 0.08); padding: 40px 28px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: background 0.3s, border-color 0.3s, transform 0.3s; cursor: default; position: relative; overflow: hidden; }
.feat-card:hover { background: rgba(201, 166, 104, 0.06); border-color: rgba(201, 166, 104, 0.25); transform: translateY(-4px); }
.feat-card.highlight { background: rgba(201, 166, 104, 0.08); border-color: var(--gold); }
.feat-card-icon { width: 58px; height: 58px; border-radius: 50%; background: rgba(201, 166, 104, 0.12); border: 1.5px solid rgba(201, 166, 104, 0.3); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; transition: background 0.3s; }
.feat-card:hover .feat-card-icon { background: rgba(201, 166, 104, 0.2); }
.feat-card h3 { font-size: 13.5px; font-weight: 700; color: var(--white); line-height: 1.35; margin-bottom: 8px; }
.feat-card.highlight h3 { color: var(--gold); }
.feat-card p { font-size: 12px; color: rgba(255, 255, 255, 0.38); line-height: 1.6; }
.feat-card-more { font-size: 11px; color: var(--gold); margin-top: 12px; opacity: 0.7; transition: opacity 0.2s; }
.feat-card:hover .feat-card-more { opacity: 1; }
.feat-unique-tag { position: absolute; top: 12px; right: 12px; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); background: rgba(201, 166, 104, 0.12); padding: 3px 7px; border-radius: 2px; }
.renters-section { padding: 100px 60px; background: var(--offwhite); }
.renters-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.renter-flow { display: flex; flex-direction: column; }
.renter-step { display: flex; gap: 20px; padding: 20px 0 20px 28px; border-left: 1px solid var(--border); position: relative; }
.renter-step::before { content: ''; position: absolute; left: -5px; top: 26px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.renter-step-content strong { font-size: 14px; font-weight: 700; color: var(--dark); display: block; margin-bottom: 4px; }
.renter-step-content span { font-size: 13px; color: var(--mid); }
.renter-card-sample { background: var(--white); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); }
.rcard-header { background: var(--dark); padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; }
.rcard-header span { font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }
.rcard-header small { font-size: 11px; color: rgba(255, 255, 255, 0.3); }
.rcard-item { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px; padding: 15px 22px; border-bottom: 1px solid #f0ebe2; transition: background 0.2s; cursor: pointer; }
.rcard-item:hover { background: #faf7f1; }
.rcard-item:last-child { border-bottom: none; }
.rcard-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--white); }
.av-a { background: linear-gradient(135deg, #c9a668, #a07e42); }
.av-b { background: linear-gradient(135deg, #6a9e7a, #3a6e4a); }
.av-c { background: linear-gradient(135deg, #7a8aae, #4a5a8e); }
.av-d { background: linear-gradient(135deg, #ae8a6a, #8e5a3a); }
.av-e { background: linear-gradient(135deg, #9e7ab0, #6e4a80); }
.av-f { background: linear-gradient(135deg, #ae6a6a, #8e3a3a); }
.rcard-info strong { font-size: 13.5px; font-weight: 700; color: var(--dark); display: block; }
.rcard-info span { font-size: 11.5px; color: var(--mid); }
.rcard-price { font-size: 13px; font-weight: 700; color: var(--gold); white-space: nowrap; }
.rcard-footer { padding: 15px 22px; background: #faf7f1; display: flex; justify-content: center; }
.view-list-btn { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap 0.2s, color 0.2s; cursor: pointer; }
.view-list-btn:hover { color: var(--gold); gap: 12px; }
.home-cta { margin: 0 60px 80px; background: var(--dark); border-radius: 14px; padding: 56px 72px 40px; display: flex; flex-direction: column; gap: 0; position: relative; overflow: hidden; border: 1px solid rgba(201, 166, 104, 0.15); }
.home-cta::before { content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 166, 104, 0.1) 0%, transparent 70%); }
.home-cta-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; position: relative; z-index: 2; }
.home-cta-text { min-width: 0; }
.home-cta-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 2.8vw, 42px); font-weight: 700; color: var(--white); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 10px; }
.home-cta-text h2 em { font-style: italic; color: var(--gold); }
.home-cta-text p { font-size: 14px; color: rgba(255, 255, 255, 0.45); max-width: 380px; line-height: 1.6; }
.home-cta-right { display: flex; align-items: center; justify-content: flex-end; }
.home-cta-btns { display: flex; gap: 12px; }
.home-cta-art-line { width: 100%; text-align: center; padding-top: 32px; margin-top: 32px; border-top: 1px solid rgba(201, 166, 104, 0.12); opacity: 0.75; position: relative; z-index: 2; }
.about-story { padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p { font-size: 15px; color: var(--mid); line-height: 1.75; margin-bottom: 18px; }
.about-story-visual { position: relative; }
.about-img-main { width: 100%; height: 420px; border-radius: 12px; background: linear-gradient(145deg, #2e2416, #5a4020, #8a6030); display: flex; align-items: center; justify-content: center; font-size: 80px; position: relative; overflow: hidden; }
.about-img-main::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4, 4, 41, 0.5), transparent 60%); }
.about-img-badge { position: absolute; bottom: 28px; left: 28px; background: var(--white); border-radius: 8px; padding: 16px 20px; box-shadow: var(--shadow); z-index: 2; }
.about-img-badge .stat-big { font-size: 26px; }
.india-map-wrap { width: 100%; border-radius: 14px; background: linear-gradient(160deg, #040429 0%, #060638 60%, #040429 100%); border: 1px solid rgba(201, 166, 104, 0.18); position: relative; overflow: hidden; min-height: 420px; display: flex; flex-direction: column; }
.india-map-canvas-row { flex: 1; position: relative; min-height: 320px; }
#about-arc-canvas { width: 100%; height: 100%; display: block; position: absolute; inset: 0; }
.india-map-tagline { padding: 18px 24px 20px; border-top: 1px solid rgba(201, 166, 104, 0.12); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.india-map-tagline-text { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; line-height: 1.2; }
.india-map-tagline-text em { color: var(--gold); font-style: italic; }
.india-map-counter { display: flex; align-items: baseline; gap: 6px; flex-shrink: 0; }
.india-map-counter-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; }
.india-map-counter-lbl { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255, 255, 255, 0.3); }
.india-map-legend { display: flex; gap: 14px; padding: 0 24px 16px; flex-wrap: wrap; }
.india-map-leg { display: flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 600; color: rgba(255, 255, 255, 0.35); letter-spacing: 0.5px; }
.india-map-leg-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.about-values { padding: 0 60px 100px; }
.about-values h2 { margin-bottom: 48px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: 10px; padding: 36px 28px; border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(201, 166, 104, 0.1); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.value-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.value-card p { font-size: 13.5px; color: var(--mid); line-height: 1.65; }
.about-team { padding: 100px 60px; background: var(--dark); }
.about-team h2 { color: var(--white); margin-bottom: 16px; }
.about-team > p { font-size: 15px; color: rgba(255, 255, 255, 0.45); margin-bottom: 52px; max-width: 520px; line-height: 1.65; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(201, 166, 104, 0.1); border-radius: 10px; padding: 36px 28px; text-align: center; transition: background 0.3s, border-color 0.3s; }
.team-card:hover { background: rgba(201, 166, 104, 0.07); border-color: rgba(201, 166, 104, 0.25); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--white); border: 2px solid rgba(201, 166, 104, 0.3); }
.team-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.team-card .role { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.team-card p { font-size: 13px; color: rgba(255, 255, 255, 0.4); line-height: 1.6; }
.about-mission { padding: 0 60px 100px; background: var(--light); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-mission-img { display: block; font-size: 0; margin: 0; }
.about-mission-img img { display: block; width: 100%; height: auto; vertical-align: bottom; }
.mission-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 2.5vw, 38px); font-style: italic; font-weight: 600; color: var(--dark); line-height: 1.4; border-left: 3px solid var(--gold); padding-left: 28px; }
.mission-stats { display: flex; flex-direction: column; gap: 32px; }
.mstat { display: flex; gap: 20px; align-items: center; }
.mstat-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 700; color: var(--gold); min-width: 100px; line-height: 1; }
.mstat-text strong { font-size: 15px; font-weight: 700; color: var(--dark); display: block; }
.mstat-text span { font-size: 13px; color: var(--mid); }
.services-intro { padding: 80px 60px; background: var(--offwhite); text-align: center; max-width: 720px; margin: 0 auto; }
.services-intro h2 { margin-bottom: 16px; }
.services-intro p { font-size: 16px; color: var(--mid); line-height: 1.7; }
.services-cards { padding: 0 60px 100px; }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc-card { background: var(--white); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc-card-head { background: var(--dark); padding: 32px 36px; display: flex; align-items: center; gap: 18px; }
.svc-card-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(201, 166, 104, 0.15); border: 1.5px solid rgba(201, 166, 104, 0.35); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.svc-card-head h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--white); letter-spacing: -0.5px; }
.svc-card-head p { font-size: 13px; color: rgba(255, 255, 255, 0.4); margin-top: 3px; }
.svc-card-body { padding: 32px 36px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.svc-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--mid); line-height: 1.55; }
.svc-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }
.svc-card-cta { padding: 0 36px 32px; display: flex; gap: 12px; }
.svc-card-cta button, .svc-card-cta a { flex: 1; text-align: center; }
.process-section { padding: 100px 60px; background: var(--dark); text-align: center; }
.process-section h2 { color: var(--white); margin-bottom: 60px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; max-width: 1400px; margin: 0 auto; width: 100%; }
.process-grid::before { content: ''; position: absolute; top: 28px; left: 5%; right: 5%; height: 1px; background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent); opacity: 0.3; }
.process-step { text-align: center; padding: 40px 32px; position: relative; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(201, 166, 104, 0.15); border-radius: 12px; }
.pstep-num { width: 56px; height: 56px; border-radius: 50%; background: var(--dark); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--gold); position: relative; z-index: 2; }
.process-step h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.process-step p { font-size: 14px; color: rgba(255, 255, 255, 0.5); line-height: 1.65; }
.services-promise { padding: 100px 60px; background: var(--light); }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.promise-card { background: var(--white); border-radius: 10px; padding: 36px 28px; border-left: 3px solid var(--gold); transition: transform 0.3s, box-shadow 0.3s; }
.promise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.promise-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.promise-card p { font-size: 13.5px; color: var(--mid); line-height: 1.65; }
.fees-intro { padding: 80px 60px 0; text-align: center; max-width: 680px; margin: 0 auto; }
.fees-intro p { font-size: 16px; color: var(--mid); margin-top: 14px; line-height: 1.65; }
.fees-main { padding: 60px 60px 100px; }
.fees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto 80px; align-items: stretch; }
.fee-card { background: var(--white); border-radius: 12px; padding: 44px 36px; border: 1px solid var(--border); text-align: center; transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.fee-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.fee-card.featured { background: var(--dark); border-color: var(--gold); }
.fee-card.featured:hover { transform: translateY(-6px); }
.fee-icon { font-size: 32px; margin-bottom: 18px; }
.fee-who { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); margin-bottom: 10px; }
.fee-card.featured .fee-who { color: rgba(255, 255, 255, 0.35); }
.fee-amount { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.fee-card.featured .fee-amount { color: var(--gold); }
.fee-period { font-size: 13px; color: var(--mid); margin-bottom: 20px; }
.fee-card.featured .fee-period { color: rgba(255, 255, 255, 0.38); }
.fee-divider { height: 1px; background: var(--border); margin: 20px 0; }
.fee-card.featured .fee-divider { background: rgba(201, 166, 104, 0.2); }
.fee-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.fee-list li { font-size: 13px; color: var(--mid); display: flex; align-items: center; gap: 8px; }
.fee-card.featured .fee-list li { color: rgba(255, 255, 255, 0.45); }
.fee-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.fee-cta { width: 100%; padding: 13px; border-radius: 4px; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s; border: 1.5px solid var(--border); background: transparent; color: var(--dark); }
.fee-cta:hover { border-color: var(--gold); color: var(--gold-dk); }
.fee-card.featured .fee-cta { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.fee-card.featured .fee-cta:hover { background: var(--gold-lt); }
.fees-breakdown { max-width: 800px; margin: 0 auto; }
.fees-breakdown-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }
.fees-breakdown-scroll::-webkit-scrollbar { height: 4px; }
.fees-breakdown-scroll::-webkit-scrollbar-track { background: var(--light); border-radius: 2px; }
.fees-breakdown-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.fees-breakdown h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; color: var(--dark); margin-bottom: 24px; letter-spacing: -1px; }
.breakdown-table { width: 100%; min-width: 560px; border-collapse: collapse; background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.breakdown-table th { background: var(--dark); color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 16px 20px; text-align: left; }
.breakdown-table td { padding: 16px 20px; font-size: 14px; color: var(--mid); border-bottom: 1px solid #f0ebe2; }
.breakdown-table tr:last-child td { border-bottom: none; }
.breakdown-table td:first-child { font-weight: 600; color: var(--dark); }
.breakdown-table td.highlight-td { color: var(--gold-dk); font-weight: 700; }
.no-hidden { margin-top: 28px; padding: 20px 24px; background: rgba(201, 166, 104, 0.08); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; gap: 14px; }
.no-hidden-icon { font-size: 24px; }
.no-hidden p { font-size: 14px; color: var(--mid); line-height: 1.55; }
.no-hidden strong { color: var(--dark); }
.properties-search-bar { background: var(--dark); padding: 36px 60px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; border-bottom: 1px solid rgba(201, 166, 104, 0.15); }
.srch-input { flex: 1; min-width: 200px; padding: 13px 18px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(201, 166, 104, 0.2); border-radius: 4px; color: var(--white); font-family: 'Outfit', sans-serif; font-size: 14px; outline: none; }
.srch-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.srch-select { padding: 13px 18px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(201, 166, 104, 0.2); border-radius: 4px; color: rgba(255, 255, 255, 0.7); font-family: 'Outfit', sans-serif; font-size: 14px; outline: none; cursor: pointer; appearance: none; min-width: 140px; }
.srch-select option { background: var(--dark); color: var(--white); }
.srch-btn { padding: 13px 28px; background: var(--gold); color: var(--dark); border: none; border-radius: 4px; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.srch-btn:hover { background: var(--gold-lt); }
.properties-body { padding: 60px 60px 100px; }
.properties-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.properties-top h3 { font-size: 15px; font-weight: 600; color: var(--mid); }
.properties-top h3 span { color: var(--dark); font-weight: 700; }
.filter-tabs { display: flex; gap: 8px; }
.tab { padding: 8px 18px; border-radius: 4px; font-size: 13px; font-weight: 500; cursor: pointer; border: 1.5px solid rgba(140, 123, 107, 0.2); background: transparent; color: var(--mid); transition: all 0.2s; font-family: 'Outfit', sans-serif; }
.tab.active, .tab:hover { background: var(--dark); color: var(--gold); border-color: var(--dark); }
.props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prop-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.prop-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.prop-img { height: 200px; position: relative; }
.prop-img-bg { width: 100%; height: 100%; transition: transform 0.4s; }
.prop-card:hover .prop-img-bg { transform: scale(1.06); }
.prop-badge { position: absolute; top: 14px; left: 14px; padding: 4px 10px; border-radius: 3px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.badge-new { background: var(--gold); color: var(--dark); }
.badge-hot { background: #e05a3a; color: var(--white); }
.badge-verified { background: #3dba6f; color: var(--white); }
.prop-fav { position: absolute; top: 12px; right: 14px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255, 255, 255, 0.9); display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; transition: transform 0.2s; }
.prop-fav:hover { transform: scale(1.15); }
.prop-body { padding: 20px 22px; }
.prop-price { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--dark); }
.prop-price span { font-family: 'Outfit', sans-serif; font-size: 12px; color: var(--mid); font-weight: 400; }
.prop-name { font-size: 14px; font-weight: 700; color: var(--dark); margin: 6px 0 4px; line-height: 1.3; }
.prop-loc { font-size: 12px; color: var(--mid); }
.prop-divider { height: 1px; background: #f0ebe2; margin: 14px 0; }
.prop-specs { display: flex; gap: 18px; }
.prop-spec { font-size: 12px; color: var(--mid); display: flex; align-items: center; gap: 4px; }
.prop-spec strong { font-size: 13px; color: var(--dark); }
.rl-intro { padding: 72px 60px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.rl-intro-text h2 { margin-bottom: 16px; }
.rl-intro-text p { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 24px; }
.rl-stats { display: flex; gap: 36px; }
.rl-stat { text-align: center; }
.rl-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1; }
.rl-stat-label { font-size: 11px; color: var(--mid); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.rl-filters { padding: 40px 60px 0; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.rl-filter-label { font-size: 12px; font-weight: 700; color: var(--mid); letter-spacing: 1px; text-transform: uppercase; margin-right: 6px; }
.rl-tag { padding: 7px 16px; border-radius: 3px; font-size: 12px; font-weight: 600; border: 1.5px solid var(--border); background: transparent; color: var(--mid); cursor: pointer; transition: all 0.2s; font-family: 'Outfit', sans-serif; }
.rl-tag.active, .rl-tag:hover { background: var(--dark); color: var(--gold); border-color: var(--dark); }
.rl-grid { padding: 36px 60px 100px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rl-card { background: var(--white); border-radius: 10px; border: 1px solid var(--border); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.rl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rl-card-head { background: var(--dark); padding: 16px 18px; display: flex; align-items: flex-start; gap: 12px; flex-wrap: nowrap; min-height: 0; }
.rl-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--white); border: 2px solid rgba(201, 166, 104, 0.3); }
.rl-card-name { flex: 1; min-width: 0; overflow: hidden; }
.rl-card-name strong { font-size: 14px; font-weight: 700; color: var(--white); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rl-card-name span { font-size: 11px; color: rgba(255, 255, 255, 0.4); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rl-budget { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 700; color: var(--gold); white-space: nowrap; flex-shrink: 0; }
.rl-card-body { padding: 20px 24px; }
.rl-detail { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f5f0e8; font-size: 13px; }
.rl-detail:last-child { border-bottom: none; }
.rl-detail-label { color: var(--mid); font-weight: 500; }
.rl-detail-value { color: var(--dark); font-weight: 600; }
.rl-card-foot { padding: 16px 24px; background: #faf7f1; display: flex; align-items: center; justify-content: space-between; }
.rl-date { font-size: 11px; color: var(--mid); }
.rl-contact-btn { padding: 8px 18px; background: var(--gold); color: var(--dark); border: none; border-radius: 3px; font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.rl-contact-btn:hover { background: var(--gold-lt); }
.login-page { min-height: 100vh; padding-top: 72px; display: grid; grid-template-columns: 1fr 1fr; }
.login-left { background: var(--dark); display: flex; flex-direction: column; justify-content: center; padding: 80px 70px; position: relative; overflow: hidden; }
.login-left::before { content: ''; position: absolute; bottom: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 166, 104, 0.12) 0%, transparent 70%); }
.login-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 4vw, 58px); font-weight: 700; color: var(--white); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; }
.login-left h2 em { font-style: italic; color: var(--gold); }
.login-left p { font-size: 15px; color: rgba(255, 255, 255, 0.45); line-height: 1.7; margin-bottom: 44px; max-width: 380px; }
.login-perks { display: flex; flex-direction: column; gap: 18px; }
.login-perk { display: flex; gap: 14px; align-items: center; }
.perk-icon { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; background: rgba(201, 166, 104, 0.12); border: 1px solid rgba(201, 166, 104, 0.25); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.login-perk span { font-size: 14px; color: rgba(255, 255, 255, 0.55); line-height: 1.45; }
.login-perk strong { color: rgba(255, 255, 255, 0.85); }
.login-right { background: var(--offwhite); display: flex; align-items: center; justify-content: center; padding: 80px 70px; }
.login-form-box { width: 100%; max-width: 420px; }
.login-tabs { display: flex; gap: 0; margin-bottom: 36px; border-bottom: 2px solid var(--border); }
.login-tab { flex: 1; padding: 14px; text-align: center; font-size: 14px; font-weight: 600; cursor: pointer; color: var(--mid); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color 0.2s, border-color 0.2s; }
.login-tab.active { color: var(--dark); border-bottom-color: var(--gold); }
.form-group { margin-bottom: 20px; }
.form-label { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; color: var(--dark); display: block; margin-bottom: 7px; }
.form-input { width: 100%; padding: 13px 16px; background: var(--white); border: 1.5px solid var(--border); border-radius: 4px; font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--dark); outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: rgba(122, 112, 102, 0.5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-select { width: 100%; padding: 13px 16px; background: var(--white); border: 1.5px solid var(--border); border-radius: 4px; font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--dark); outline: none; cursor: pointer; transition: border-color 0.2s; appearance: none; }
.form-select:focus { border-color: var(--gold); }
.form-submit { width: 100%; padding: 15px; background: var(--dark); color: var(--white); border: none; border-radius: 4px; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.2s; margin-top: 8px; }
.form-submit:hover { background: var(--gold); color: var(--dark); }
.form-footer { text-align: center; margin-top: 20px; font-size: 13px; color: var(--mid); }
.form-footer a { color: var(--gold-dk); font-weight: 600; text-decoration: none; cursor: pointer; }
.form-divider { display: flex; align-items: center; gap: 14px; margin: 20px 0; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.form-divider span { font-size: 12px; color: var(--mid); font-weight: 500; white-space: nowrap; }
.form-user-type { display: flex; gap: 12px; margin-bottom: 20px; }
.user-type-btn { flex: 1; padding: 12px; border-radius: 4px; text-align: center; font-size: 13px; font-weight: 600; cursor: pointer; border: 1.5px solid var(--border); background: transparent; color: var(--mid); transition: all 0.2s; font-family: 'Outfit', sans-serif; }
.user-type-btn.active { background: var(--dark); color: var(--gold); border-color: var(--dark); }
footer { background: var(--dark); color: var(--white); padding: 70px 60px 36px; border-top: 1px solid rgba(201, 166, 104, 0.12); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 56px; }
.footer-brand-desc { font-size: 13px; color: rgba(255, 255, 255, 0.35); line-height: 1.7; max-width: 230px; margin-top: 14px; }
.footer-feedback-col { min-width: 180px; }
.feedback-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; max-width: 1100px; margin: 0 auto; }
.footer-feedback-form { display: flex; flex-direction: column; gap: 8px; }
.footer-fb-input, .footer-fb-textarea { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 6px; padding: 9px 12px; font-size: 12.5px; color: rgba(255, 255, 255, 0.8); font-family: 'Outfit', sans-serif; outline: none; resize: none; width: 100%; box-sizing: border-box; transition: border-color 0.2s; }
.footer-fb-input::placeholder, .footer-fb-textarea::placeholder { color: rgba(255, 255, 255, 0.25); }
.footer-fb-input:focus, .footer-fb-textarea:focus { border-color: var(--gold); }
.footer-fb-btn { background: var(--gold); color: var(--dark); border: none; border-radius: 6px; padding: 9px 16px; font-size: 12.5px; font-weight: 700; font-family: 'Outfit', sans-serif; cursor: pointer; transition: background 0.2s; text-align: center; }
.footer-fb-btn:hover { background: var(--gold-lt); }
.footer-fb-btn.sent { background: #2d7a4f; color: #fff; cursor: default; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: rgba(255, 255, 255, 0.4); text-decoration: none; transition: color 0.2s; cursor: pointer; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: rgba(255, 255, 255, 0.22); }
.socials { display: flex; gap: 10px; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(201, 166, 104, 0.18); display: flex; align-items: center; justify-content: center; font-size: 13px; cursor: pointer; transition: border-color 0.2s, background 0.2s; color: rgba(255, 255, 255, 0.38); text-decoration: none; }
.social-btn:hover { border-color: var(--gold); background: rgba(201, 166, 104, 0.1); color: var(--gold); }
.rf-field { display:flex; flex-direction:column; gap:6px; }
.rf-label { font-size:11px; font-weight:700; letter-spacing:0.8px; text-transform:uppercase; color:rgba(255, 255, 255, 0.82); min-height:20px; display:flex; align-items:center; }
.rf-req { color:var(--gold); }
.rf-input, .rf-select { background: rgba(255, 255, 255, 0.05); border: 1.5px solid rgba(201, 166, 104, 0.2); border-radius: 6px; padding: 11px 14px; font-family: 'Outfit', sans-serif; font-size: 13.5px; color: rgba(255, 255, 255, 0.85); outline: none; transition: border-color 0.2s, background 0.2s; width: 100%; box-sizing: border-box; }
.rf-input::placeholder { color: rgba(255, 255, 255, 0.2); }
.rf-input:focus, .rf-select:focus { border-color: var(--gold); background: rgba(201, 166, 104, 0.07); }
.rf-select { appearance: none; cursor: pointer; 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='rgba(201, 166, 104, 0.6)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; }
.rf-select option { background: #0d0d30; color: #fff; }
.rf-chk-group { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 6px; padding: 10px; background: rgba(255,255,255,0.03); border: 1.5px solid rgba(201,166,104,0.2); border-radius: 6px; }
.rf-chk-item { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 6px; cursor: pointer; transition: background 0.15s; font-size: 13px; color: rgba(255,255,255,0.75); user-select: none; }
.rf-chk-item:hover { background: rgba(201,166,104,0.08); }
.rf-chk-item input[type="checkbox"] { width: 15px; height: 15px; accent-color: #c9a668; flex-shrink: 0; cursor: pointer; }
.rf-chk-item input[type="checkbox"]:checked + span { color: #e8b84b; font-weight: 600; }
/* Dropdown multi-select */
.rf-msd { position: relative; }
.rf-msd-btn { width: 100%; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(201,166,104,0.2); border-radius: 6px; padding: 11px 36px 11px 14px; font-family: 'Outfit', sans-serif; font-size: 13px; color: rgba(255,255,255,0.6); text-align: left; cursor: pointer; transition: border-color 0.2s; position: relative; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rf-msd-btn::after { content: '▾'; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: rgba(201,166,104,0.6); font-size: 12px; pointer-events: none; transition: transform 0.2s; }
.rf-msd.open .rf-msd-btn::after { transform: translateY(-50%) rotate(180deg); }
.rf-msd-btn:focus, .rf-msd.open .rf-msd-btn { border-color: rgba(201,166,104,0.6); outline: none; }
.rf-msd-btn.has-value { color: #e8b84b; border-color: rgba(201,166,104,0.4); }
.rf-msd-dropdown { display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #1a1a35; border: 1.5px solid rgba(201,166,104,0.25); border-radius: 8px; z-index: 500; max-height: 220px; overflow-y: auto; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.rf-msd.open .rf-msd-dropdown { display: block; }
.rf-msd-option { display: flex; align-items: center; gap: 10px; padding: 9px 14px; cursor: pointer; font-size: 13px; color: rgba(255,255,255,0.75); transition: background 0.12s; user-select: none; }
.rf-msd-option:hover { background: rgba(201,166,104,0.08); }
.rf-msd-option input[type="checkbox"] { width: 15px; height: 15px; accent-color: #c9a668; flex-shrink: 0; cursor: pointer; }
.rf-msd-option input[type="checkbox"]:checked + span { color: #e8b84b; font-weight: 600; }
.rf-msd-hint { font-size: 11px; color: rgba(255,255,255,0.22); padding: 6px 14px 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
#legal-modal-overlay { display: none; position: fixed; inset: 0; z-index: 9100; background: rgba(4, 4, 41, 0.92); backdrop-filter: blur(6px); flex-direction: column; }
#legal-modal-overlay.open { display: flex; }
#legal-modal-bar { background: var(--dark); border-bottom: 1px solid rgba(201, 166, 104, 0.2); padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; padding-top: calc(14px + env(safe-area-inset-top)); }
#legal-modal-bar-title { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 700; color: var(--gold); letter-spacing: -0.3px; }
#legal-modal-close { padding: 9px 20px; background: var(--gold); color: var(--dark); border: none; border-radius: 5px; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
#legal-modal-body { flex: 1; overflow-y: auto; background: var(--offwhite); -webkit-overflow-scrolling: touch; }
.reg-btn { width: 100%; padding: 15px 13px; background: transparent; color: rgba(255, 255, 255, 0.8); border: 1.5px solid rgba(255, 255, 255, 0.25); border-radius: 6px; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: border-color 0.2s, color 0.2s; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.reg-btn:hover, .reg-btn:focus { border-color: var(--gold); color: var(--gold); outline: none; }
.reg-btn:active { background: rgba(201, 166, 104, 0.1); border-color: var(--gold); color: var(--gold); }
.db-field-group { display:flex; flex-direction:column; gap:5px; }
.db-field-label { font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--mid); }
.db-field-input { width:100%; padding:10px 14px; background:var(--offwhite); border:1px solid var(--border); border-radius:6px; font-size:13.5px; color:var(--dark); font-family:'Outfit', sans-serif; outline:none; transition:border-color 0.2s, background 0.2s; box-sizing:border-box; }
.db-field-input:disabled { background:#f5f3ef; color:var(--dark); cursor:default; }
.db-field-input:not(:disabled) { background:#fff; border-color:rgba(201, 166, 104, 0.5); }
.db-field-input:not(:disabled):focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(201, 166, 104, 0.12); }
textarea.db-field-input { line-height:1.6; }
.rf-label-wrap { display:flex; align-items:center; gap:6px; font-size:11px; font-weight:700; letter-spacing:0.8px; text-transform:uppercase; color:rgba(255, 255, 255, 0.82); min-height:20px; }
.rf-tip { position:relative; display:inline-flex; align-items:center; justify-content:center; width:15px; height:15px; border-radius:50%; background:rgba(201, 166, 104, 0.15); border:1px solid rgba(201, 166, 104, 0.35); font-size:9.5px; font-weight:800; color:rgba(201, 166, 104, 0.75); cursor:default; flex-shrink:0; line-height:1; }
.rf-tip-box { display:none; position:absolute; bottom:calc(100% + 8px); left:auto; right:-4px; transform:none; background:#0d0d2e; border:1px solid rgba(201, 166, 104, 0.25); border-radius:8px; padding:10px 13px; width:200px; max-width:min(200px, 80vw); font-size:11.5px; font-weight:400; color:rgba(255, 255, 255, 0.65); line-height:1.55; z-index:500; box-shadow:0 8px 24px rgba(0, 0, 0, 0.4); pointer-events:none; white-space:normal; text-transform:none; letter-spacing:0; }
.rf-tip-box::after { content:''; position:absolute; top:100%; right:8px; left:auto; transform:none; border:5px solid transparent; border-top-color:#0d0d2e; }
.rf-tip.rf-tip-r .rf-tip-box { right:auto; left:-4px; }
.rf-tip.rf-tip-r .rf-tip-box::after { right:auto; left:8px; }
.rf-tip:hover .rf-tip-box { display:block; }
.rf-upload-box { border: 1.5px dashed rgba(201, 166, 104, 0.25); border-radius: 8px; padding: 24px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; background: rgba(255, 255, 255, 0.02); min-height: 90px; }
.rf-upload-box:hover { border-color: var(--gold); background: rgba(201, 166, 104, 0.05); }
.rf-photo-drop { min-height: 120px; }
.rf-photo-thumb { width: 80px; height: 80px; border-radius: 6px; object-fit: cover; border: 1.5px solid rgba(201, 166, 104, 0.3); position: relative; }
.rf-photo-thumb-wrap { position: relative; display: inline-block; }
.rf-photo-thumb-del { position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; border-radius: 50%; background: #c0392b; color: #fff; font-size: 12px; font-weight: 700; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1; }
@keyframes slideDown { from { opacity:0; transform:translateY(-16px); }
to { opacity:1; transform:translateY(0); }
 }
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); }
to { opacity:1; transform:translateY(0); }
 }
@keyframes floatY { 0%, 100% { transform:translateY(0); }
50% { transform:translateY(-10px); }
 }
@keyframes featScroll { 0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
 }

/* ══════════════════════════════════════════
   RESPONSIVE — COMPREHENSIVE MOBILE-FIRST
══════════════════════════════════════════ */
@media(min-width:999px){
  .hero-btn-equal { padding: 8px 18px; font-size: 11.5px; min-width: 0; }
  .hero-btns { flex-wrap: nowrap; gap: 10px; }
}
/* ── LARGE SCREEN SCALING ────────────────────────────────────────
   Hero stays 35/65 at ALL widths 1441px+. Zoom on hero-left only.
   Inner pages (fees, faq, services etc): max-width caps are removed
   at large screens so content fills the viewport like home sections do.
   Home sections use padding:60px with no max-width → content spans full width.
   Inner page sections match this at 1441px+ by expanding their inner containers.
──────────────────────────────────────────────────────────────── */
@media(min-width:1441px){
  #page-home .hero-left { zoom: 1.2; }
  #page-home > *:not(.hero) { zoom: 1.2; }
}
@media(min-width:1800px){
  #page-home .hero-left { zoom: 1.35; }
  #page-home > *:not(.hero) { zoom: 1.35; }
}
@media(min-width:2100px){
  #page-home .hero-left { zoom: 1.55; }
  #page-home > *:not(.hero) { zoom: 1.55; }
}
@media(min-width:2560px){
  #page-home .hero-left { zoom: 1.85; }
  #page-home > *:not(.hero) { zoom: 1.85; }
}
@media(min-width:3200px){
  #page-home .hero-left { zoom: 2.2; }
  #page-home > *:not(.hero) { zoom: 2.2; }
}
/* ── ALL INNER PAGE CONTENT ZOOM ─────────────────────────────────
   Zooms every content section on every page (text, tables, images,
   cards) matching the home hero zoom ladder.
   Uses > *:not(.page-hero) to skip the dark hero banner at top
   (which uses viewport units and must not be zoomed).
   login / dashboard / feedback excluded (utility pages).
──────────────────────────────────────────────────────────────── */
@media(min-width:1441px){
  #page-about > *:not(.page-hero) { zoom: 1.2; }
  #page-fees > *:not(.page-hero) { zoom: 1.2; }
  #page-faq > *:not(.page-hero) { zoom: 1.2; }
  #page-services > *:not(.page-hero) { zoom: 1.2; }
  #page-mta > *:not(.page-hero) { zoom: 1.2; }
  #page-rent-agreement > *:not(.page-hero) { zoom: 1.2; }
  #page-renters-list > *:not(.page-hero) { zoom: 1.2; }
  #page-properties > *:not(.page-hero) { zoom: 1.2; }
  #page-blog > *:not(.page-hero) { zoom: 1.2; }
  #page-internship > *:not(.page-hero) { zoom: 1.2; }
  #page-refer > *:not(.page-hero) { zoom: 1.2; }
  #page-terms > *:not(.page-hero) { zoom: 1.2; }
  #page-privacy > *:not(.page-hero) { zoom: 1.2; }
  #page-disclaimer > *:not(.page-hero) { zoom: 1.2; }
}
@media(min-width:1800px){
  #page-about > *:not(.page-hero) { zoom: 1.35; }
  #page-fees > *:not(.page-hero) { zoom: 1.35; }
  #page-faq > *:not(.page-hero) { zoom: 1.35; }
  #page-services > *:not(.page-hero) { zoom: 1.35; }
  #page-mta > *:not(.page-hero) { zoom: 1.35; }
  #page-rent-agreement > *:not(.page-hero) { zoom: 1.35; }
  #page-renters-list > *:not(.page-hero) { zoom: 1.35; }
  #page-properties > *:not(.page-hero) { zoom: 1.35; }
  #page-blog > *:not(.page-hero) { zoom: 1.35; }
  #page-internship > *:not(.page-hero) { zoom: 1.35; }
  #page-refer > *:not(.page-hero) { zoom: 1.35; }
  #page-terms > *:not(.page-hero) { zoom: 1.35; }
  #page-privacy > *:not(.page-hero) { zoom: 1.35; }
  #page-disclaimer > *:not(.page-hero) { zoom: 1.35; }
}
@media(min-width:2100px){
  #page-about > *:not(.page-hero) { zoom: 1.55; }
  #page-fees > *:not(.page-hero) { zoom: 1.55; }
  #page-faq > *:not(.page-hero) { zoom: 1.55; }
  #page-services > *:not(.page-hero) { zoom: 1.55; }
  #page-mta > *:not(.page-hero) { zoom: 1.55; }
  #page-rent-agreement > *:not(.page-hero) { zoom: 1.55; }
  #page-renters-list > *:not(.page-hero) { zoom: 1.55; }
  #page-properties > *:not(.page-hero) { zoom: 1.55; }
  #page-blog > *:not(.page-hero) { zoom: 1.55; }
  #page-internship > *:not(.page-hero) { zoom: 1.55; }
  #page-refer > *:not(.page-hero) { zoom: 1.55; }
  #page-terms > *:not(.page-hero) { zoom: 1.55; }
  #page-privacy > *:not(.page-hero) { zoom: 1.55; }
  #page-disclaimer > *:not(.page-hero) { zoom: 1.55; }
}
@media(min-width:2560px){
  #page-about > *:not(.page-hero) { zoom: 1.85; }
  #page-fees > *:not(.page-hero) { zoom: 1.85; }
  #page-faq > *:not(.page-hero) { zoom: 1.85; }
  #page-services > *:not(.page-hero) { zoom: 1.85; }
  #page-mta > *:not(.page-hero) { zoom: 1.85; }
  #page-rent-agreement > *:not(.page-hero) { zoom: 1.85; }
  #page-renters-list > *:not(.page-hero) { zoom: 1.85; }
  #page-properties > *:not(.page-hero) { zoom: 1.85; }
  #page-blog > *:not(.page-hero) { zoom: 1.85; }
  #page-internship > *:not(.page-hero) { zoom: 1.85; }
  #page-refer > *:not(.page-hero) { zoom: 1.85; }
  #page-terms > *:not(.page-hero) { zoom: 1.85; }
  #page-privacy > *:not(.page-hero) { zoom: 1.85; }
  #page-disclaimer > *:not(.page-hero) { zoom: 1.85; }
}
@media(min-width:3200px){
  #page-about > *:not(.page-hero) { zoom: 2.2; }
  #page-fees > *:not(.page-hero) { zoom: 2.2; }
  #page-faq > *:not(.page-hero) { zoom: 2.2; }
  #page-services > *:not(.page-hero) { zoom: 2.2; }
  #page-mta > *:not(.page-hero) { zoom: 2.2; }
  #page-rent-agreement > *:not(.page-hero) { zoom: 2.2; }
  #page-renters-list > *:not(.page-hero) { zoom: 2.2; }
  #page-properties > *:not(.page-hero) { zoom: 2.2; }
  #page-blog > *:not(.page-hero) { zoom: 2.2; }
  #page-internship > *:not(.page-hero) { zoom: 2.2; }
  #page-refer > *:not(.page-hero) { zoom: 2.2; }
  #page-terms > *:not(.page-hero) { zoom: 2.2; }
  #page-privacy > *:not(.page-hero) { zoom: 2.2; }
  #page-disclaimer > *:not(.page-hero) { zoom: 2.2; }
}

/* ── CONTENT WIDTH EXPANSION: fees, faq, blog at 1100px+ ─────────
   Removes narrow max-width caps so content fills viewport width
   the same way home sections do (no max-width, just padding).
──────────────────────────────────────────────────────────────── */
@media(min-width:1100px){
  .fees-intro { max-width: none; width: 100%; }
  .fees-grid { max-width: none !important; width: 100% !important; }
  .fees-breakdown { max-width: none; width: 100%; }
  #page-faq .faq-section > div { max-width: none !important; width: 100%; }
  #page-blog .page > section,
  #page-blog section { max-width: none; width: 100%; }
}
@media(max-width:1100px){
  /* Non-2-col layout adjustments still trigger at 1100px */
  .about-img-main { height:300px; }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .process-grid { grid-template-columns:repeat(3,1fr); gap:20px; }
  .process-grid::before { display:none; }
  .process-step { padding: 28px 20px; }
  /* svc-grid handled by flex scroll on mobile */
}
/* All 2-col sections: stay side-by-side down to 990px, stack below */
@media(max-width:990px){
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .whats-new-inner { grid-template-columns:1fr; gap:48px; }
  .dual-preview-grid { grid-template-columns:1fr; gap:40px; }
  .renters-inner { grid-template-columns:1fr; gap:48px; }
  .renters-left { order:1; }
  .renters-right { order:2; }
  .about-story, .about-mission { grid-template-columns:1fr; gap:48px; }
  .india-map-wrap { min-height: 380px; }
  .india-map-canvas-row { min-height: 290px; }
  .login-page { grid-template-columns:1fr; }
  .rl-intro { grid-template-columns:1fr; gap:36px; }
  .about-problem-grid { grid-template-columns:1fr !important; padding:0 40px 64px !important; }
  .about-fee-inner { grid-template-columns:1fr !important; gap:36px !important; }
  .refer-hero-card { grid-template-columns:1fr !important; gap:28px !important; padding:40px 36px !important; }
  .refer-steps-grid { grid-template-columns:1fr !important; }
  .intern-top-grid { grid-template-columns:1fr !important; }
  .intern-stages-grid { grid-template-columns:1fr !important; }
  .intern-skills-grid { grid-template-columns:1fr !important; }
  .intern-cta-grid { grid-template-columns:1fr !important; text-align:center; }
  .fees-grid { grid-template-columns:1fr !important; max-width:480px; }
  .fees-intro { padding:60px 40px 0; }
  .fees-main { padding:40px 40px 80px; }
  .svc-main-section { padding:64px 40px!important; }
  .svc-card-head { padding:28px 28px; }
  .svc-card-body, .svc-card-cta { padding-left:28px; padding-right:28px; }
  .process-section { padding:80px 40px; }
}
/* Hero: 50/50 from 991px up to 1440px, then 35/65 above 1440px */
@media(min-width:991px) and (max-width:1440px){
  #page-home .hero { grid-template-columns: 1fr 1fr; }
  .hero-right { display: block; }
}
@media(min-width:1441px){
  #page-home .hero { grid-template-columns: 35fr 65fr; }
  .hero-right { display: block; }
}
/* Tablet range 990px–769px: go single col, hide image */
@media(max-width:990px) and (min-width:769px){
  #page-home .hero { grid-template-columns: 1fr; height:auto; min-height:100vh; }
  #page-home .hero-left { padding: 80px 60px 80px 60px; }
  .hero-right { display: none; }
  .hero-scroll { left: 60px; }
}
@media(max-width:998px){
  nav { padding:0 20px; position:fixed; }
  .footer-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 32px; }
  #page-feedback .feedback-layout { grid-template-columns: 1fr !important; }
  footer { padding: 48px 24px 28px; }
  .nav-links { display:none; flex-direction:column; position:absolute; top:72px; left:0; right:0; background:rgba(250,248,244,0.99); padding:8px 0 20px; gap:0; z-index:9999; box-shadow:0 8px 32px rgba(4,4,41,0.12); max-height:calc(100vh - 72px); overflow-y:auto; border-top:1px solid rgba(201,166,104,0.25); }
  .nav-links.open { display:flex; }
  .nav-links li { border-bottom:1px solid rgba(4,4,41,0.07); }
  .nav-links li:last-child { border-bottom:none; padding:12px 20px 0; }
  .nav-links a { padding:16px 24px; font-size:16px; color:rgba(4,4,41,0.8)!important; border-radius:0; display:block; width:100%; box-sizing:border-box; }
  .nav-links a:hover { background:rgba(4,4,41,0.05); }
  .nav-links li:last-child a { background:var(--gold); color:var(--dark)!important; border-radius:8px; text-align:center; font-weight:700; padding:14px 24px; }
  .nav-links li:last-child a:hover { background:var(--gold-dk); }
  .nav-login { margin-left:0!important; }
  .nav-hamburger { display:flex; }
  .nav-hamburger span { background:var(--dark)!important; transition:all 0.3s ease; }
  .nav-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .home-cta-row { grid-template-columns:1fr; gap:24px; text-align:center; }
  .home-cta-right { justify-content:center; }
  .home-cta-text p { max-width:100%; }
  .home-cta-btns { flex-direction:column; width:100%; max-width:340px; margin:0 auto; }
  .home-cta-btns button,.home-cta-btns .btn-gold,.home-cta-btns .btn-outline-light { width:100%; text-align:center; }
}
@media(max-width:768px){
  #page-home .hero { grid-template-columns:1fr; height:100vh; height:100dvh; min-height:100vh; min-height:100dvh; }
  #page-home .hero-left { padding:100px 28px 60px; justify-content:center; align-items:center; text-align:center; }
  #page-home .hero-left .hero-eyebrow { justify-content:center; margin-bottom:28px; }
  #page-home .hero-left .hero-eyebrow::before { display:none; }
  #page-home .hero h1 { margin-bottom:28px; }
  .hero-tagline { margin-bottom:36px; }
  .hero-eyebrow { margin-bottom:28px; }
  .hero-right { display:none; }
  .hero-scroll { left:24px; bottom:24px; }
  .page-hero-inner { padding:48px 24px; }
  .whats-new { padding:64px 24px; }
  .dual-preview { padding:64px 24px; }
  .features-section { padding:64px 0; }
  .features-grid { display:none; }
  .feat-scroll-outer { display: block; }
  .feat-scroll-controls { display: flex; }
  .feat-scroll-track {
    display: flex;
    gap: 12px;
    animation: featScroll 22s linear infinite;
    animation-play-state: paused;
    width: max-content;
  }
  .feat-scroll-track.scrolling { animation-play-state: running; }
  .feat-scroll-track:hover { animation-play-state: paused !important; }
  .feat-scroll-outer {
    overflow: hidden;
    padding: 8px 0 16px;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }
  .feat-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    width: 72vw;
    max-width: 260px;
  }
  .feat-col .feat-card { padding: 22px 18px; flex: none; }
  .feat-col .feat-card h3 { font-size: 12px; }

  /* Manual scroll controls */
  .feat-scroll-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin-top: 12px;
  }
  .feat-scroll-arrow {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(4,4,41,0.07); border: 1px solid rgba(4,4,41,0.12);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 14px; color: var(--dark);
    transition: background 0.2s;
  }
  .feat-scroll-arrow:hover { background: var(--gold); }
  .feat-scroll-dots { display: flex; gap: 6px; }
  .feat-scroll-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(4,4,41,0.18); cursor: pointer; transition: background 0.2s, transform 0.2s;
  }
  .feat-scroll-dot.active { background: var(--gold); transform: scale(1.3); }

  /* svc-grid back to normal single column on mobile */
  .svc-grid { display: grid !important; flex-wrap: unset !important; grid-template-columns: 1fr !important; gap: 20px !important; width: auto; }
  .svc-card { flex: unset; max-width: unset; scroll-snap-align: unset; }
  .svc-grid-scroll-outer { overflow-x: visible; scroll-snap-type: none; padding: 0; }

  /* Promise grid & Values grid horizontal scroll */
  .promise-scroll-outer, .values-scroll-outer {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 16px;
    scrollbar-width: none;
  }
  .promise-scroll-outer::-webkit-scrollbar, .values-scroll-outer::-webkit-scrollbar { display: none; }
  .promise-grid { display: flex !important; flex-wrap: nowrap !important; gap: 16px !important; width: max-content; margin-top: 52px; }
  .values-grid { display: flex !important; flex-wrap: nowrap !important; gap: 16px !important; width: max-content; }
  .promise-card { flex: 0 0 78vw; max-width: 300px; scroll-snap-align: start; }
  .value-card { flex: 0 0 78vw; max-width: 300px; scroll-snap-align: start; }

  .renters-section { padding:64px 24px; }
  .home-cta { margin:0 20px 64px; padding:32px 24px 28px; }
  .home-cta-row { flex-direction:column; align-items:center; text-align:center; gap:20px; }
  .home-cta-btns { flex-direction:column; width:100%; }
  .home-cta-btns button,.home-cta-btns .btn-gold,.home-cta-btns .btn-outline-light { width:100%; text-align:center; }
  .hero-btns { flex-direction:column; margin-top:24px; gap:16px; width:100%; }
  .hero-btns button { width:100%; text-align:center; padding:16px 24px; font-size:14px; }
  .hero-tagline { margin-bottom:28px; }
  .hero-scroll { bottom:32px; }
  .hero-art-line { font-size:17px; }
  .about-fee-section { padding:0 24px 64px!important; }
  .about-fee-section > div { padding:36px 28px!important; }
  .svc-main-section { padding:64px 24px!important; }
  .about-story { padding:64px 24px; }
  .about-story-visual { display: block; }
  .india-map-wrap { min-height: 340px; }
  .india-map-canvas-row { min-height: 260px; }

  /* Values carousel arrows on mobile */
  .values-carousel-wrap, .promise-carousel-wrap { position: relative; }
  .values-scroll-outer, .promise-scroll-outer {
  }
  .values-scroll-outer.at-end, .promise-scroll-outer.at-end {
  }
  .values-scroll-outer.at-middle, .promise-scroll-outer.at-middle {
  }
  .values-nav {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 18px;
  }
  .values-nav-arrow {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--dark); border: 1.5px solid rgba(201,166,104,0.4);
    color: var(--gold); font-size: 16px; display: flex;
    align-items: center; justify-content: center; cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    touch-action: manipulation; -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
  }
  .values-nav-arrow:active { background: rgba(201,166,104,0.15); border-color: var(--gold); }
  .values-nav-arrow.disabled { opacity: 0.25; pointer-events: none; }
  .values-nav-dots { display: flex; gap: 6px; align-items: center; }
  .values-nav-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(201,166,104,0.3); transition: background 0.2s, transform 0.2s;
  }
  .values-nav-dot.active { background: var(--gold); transform: scale(1.3); }
  .about-values { padding:0 24px 64px; }
  /* values-grid handled by flex scroll on mobile */
  .about-mission { padding:0 24px 64px; }
  .mission-stats { gap:20px; }
  /* svc-grid handled by flex scroll on mobile */
  .svc-card-head { padding:24px; }
  .svc-card-body,.svc-card-cta { padding-left:24px; padding-right:24px; }
  .svc-card-cta { flex-direction:column; }
  .process-section { padding:64px 24px; }
  .process-grid { grid-template-columns:1fr; gap:28px; max-width:340px; margin:0 auto; }
  /* promise-grid handled by flex scroll on mobile */
  .fees-intro { padding:64px 24px 0; }
  .fees-main { padding:40px 24px 64px; }
  .fees-grid { grid-template-columns:1fr !important; max-width:100%; }
  .breakdown-table { font-size:12px; }
  .breakdown-table th,.breakdown-table td { padding:10px 12px; }
  .properties-search-bar { padding:24px; flex-direction:column; }
  .srch-input,.srch-select { width:100%; }
  .properties-body { padding:40px 24px 64px; }
  .properties-top { flex-direction:column; gap:16px; align-items:flex-start; }
  .filter-tabs { flex-wrap:wrap; }
  .props-grid { grid-template-columns:1fr; }
  .rl-intro { padding:64px 24px 0; }
  .rl-stats { flex-wrap:wrap; gap:24px; justify-content:flex-start; }
  .rl-stats .rl-stat { flex:1; min-width:80px; text-align:center; }
  .rl-filters { padding:32px 24px 0; flex-wrap:wrap; }
  .rl-grid { padding:28px 24px 64px; grid-template-columns:1fr; }
  .login-left { display:none; }
  .login-right { padding:48px 24px; }
  .form-row { grid-template-columns:1fr; }
  .form-user-type { flex-wrap:wrap; }
  footer { padding:48px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction:column; gap:16px; text-align:center; }
  .dp-detail-grid { grid-template-columns:1fr; gap:10px; }
}
@media(max-width:420px){
  #page-home .hero h1 { font-size:42px; letter-spacing:-1.5px; }
  .hero-right { height:260px; }
  .features-grid { grid-template-columns:1fr; }
  .rl-stats { flex-direction:row; justify-content:space-between; gap:8px; }
  .rl-stats .rl-stat { flex:1; text-align:center; }
  .page-hero h1 { font-size:36px; }
  .dp-prop-specs { gap:8px; }
  .wn-quick-stat { padding:16px 18px; }
  .wn-qs-num { font-size:22px; }
}
/* ══ HOME PROPERTY LISTINGS SECTION ══ */
/* ── TESTIMONIALS ── */
.testi-section {
  padding: 56px 60px 56px;
  background: var(--dark);
  margin-bottom: 72px;
}
.testi-inner { max-width: 1280px; margin: 0 auto; }
.testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
/* Override section-title colour inside navy section */
.testi-section .section-title { color: var(--white); }
.testi-section .section-title em { color: var(--gold); }
.testi-section p { color: rgba(255,255,255,0.55) !important; }
.testi-nav-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  padding-bottom: 4px;
}
.testi-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,166,104,0.4);
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  line-height: 1;
}
.testi-nav-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: scale(1.08);
}
.testi-track-wrap {
  overflow: hidden;
  position: relative;
}
.testi-side-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,166,104,0.45);
  background: rgba(4,4,41,0.72);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 17px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, opacity 0.2s;
  line-height: 1;
  opacity: 0.7;
}
.testi-side-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
.testi-side-prev { left: 10px; }
.testi-side-next { right: 10px; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testi-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,166,104,0.2);
  border-radius: 14px;
  padding: 24px 22px 20px;
  position: relative;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  transition: box-shadow 0.25s, transform 0.25s, background 0.25s;
  cursor: default;
}
.testi-card:hover {
  background: rgba(255,255,255,0.08);
  box-shadow: 0 12px 48px rgba(0,0,0,0.35);
  transform: translateY(-3px);
}
.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 12px;
  font-weight: 700;
  user-select: none;
}
.testi-text {
  font-size: 13.5px;
  line-height: 1.68;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
  min-height: 72px;
}
.testi-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(201,166,104,0.18);
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0;
}
.testi-meta {
  flex: 1;
  min-width: 0;
}
.testi-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testi-meta span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.testi-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}
.testi-badge-landlord {
  background: rgba(201,166,104,0.15);
  color: var(--gold-lt);
  border: 1px solid rgba(201,166,104,0.35);
}
.testi-badge-renter {
  background: rgba(80,180,130,0.12);
  color: #6ed4a8;
  border: 1px solid rgba(80,180,130,0.25);
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,166,104,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.testi-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Testimonials — responsive */
@media (max-width: 1439px) and (min-width: 999px) {
  .testi-card { flex: 0 0 calc(33.333% - 16px); }
}
@media (max-width: 998px) and (min-width: 601px) {
  .testi-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 700px) {
  .testi-section { padding: 40px 0 40px; margin-bottom: 48px; }
  .testi-inner { padding: 0 24px; }
  .testi-track-wrap { margin: 0 -24px; padding: 0 24px; overflow-x: visible; }
  .testi-card { flex: 0 0 calc(100vw - 64px); }
  .testi-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testi-nav-btns { align-self: flex-end; }
}

.home-props-section { padding: 0 60px 100px; background: var(--offwhite); }
.home-props-inner { max-width: 1200px; margin: 0 auto; }
.home-props-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px; gap: 24px;
}
.home-props-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 22px;
}
.home-prop-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.home-prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.home-prop-img {
  height: 160px; width: 100%;
  transition: transform 0.35s;
}
.home-prop-card:hover .home-prop-img { transform: scale(1.04); }
.home-prop-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 10px; border-radius: 20px; text-transform: uppercase;
}
.home-prop-badge.badge-new { background: #e8f5e9; color: #2a7a3a; }
.home-prop-badge.badge-hot { background: #fff3e0; color: #c05a00; }
.home-prop-badge.badge-verified { background: #e3f0ff; color: #1a4a9a; }
.home-prop-body { padding: 16px 18px 20px; }
.home-prop-price { font-size: 18px; font-weight: 700; color: var(--dark); font-family: 'Cormorant Garamond', serif; margin-bottom: 4px; }
.home-prop-price span { font-size: 12px; font-weight: 400; color: var(--mid); font-family: 'Outfit', sans-serif; }
.home-prop-name { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 5px; line-height: 1.4; }
.home-prop-loc { font-size: 11.5px; color: var(--mid); margin-bottom: 12px; }
.home-prop-specs { display: flex; gap: 10px; flex-wrap: wrap; }
.home-prop-specs span { font-size: 11px; color: var(--mid); background: var(--offwhite); padding: 3px 8px; border-radius: 4px; }

@media(max-width:990px){
  .home-props-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px){
  .home-props-section { padding: 0 0 64px; }
  .home-props-header { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .home-props-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 14px;
    padding: 4px 24px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .home-props-grid::-webkit-scrollbar { display: none; }
  .home-props-card-wrap, .home-prop-card {
    flex: 0 0 76vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
}
@media(max-width:480px){
  .home-prop-card { flex: 0 0 80vw; max-width: 280px; }
}

/* ══ FAQ PAGE ══ */
.faq-section { padding: 80px 60px; }
.faq-category { margin-bottom: 52px; }
.faq-cat-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--dark); letter-spacing: -0.3px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); display: inline-block; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; background: var(--white); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; font-size: 14.5px; font-weight: 600; color: var(--dark); transition: background 0.2s; gap: 16px; }
.faq-q:hover { background: var(--offwhite); }
.faq-chevron { font-size: 20px; color: var(--gold); flex-shrink: 0; line-height: 1; transition: transform 0.2s; }
.faq-a { display: none; padding: 0 22px 20px; font-size: 14px; color: var(--mid); line-height: 1.75; }
.faq-a ol, .faq-a ul { padding-left: 20px; margin: 8px 0; }
.faq-a ol li, .faq-a ul li { margin-bottom: 8px; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { background: #fdf9f0; }

/* ══ LEGAL PAGES ══ */
.legal-body { padding: 60px 60px 100px; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-intro { font-size: 15.5px; color: var(--mid); line-height: 1.8; margin-bottom: 36px; padding: 24px 28px; background: var(--offwhite); border-radius: 10px; border-left: 4px solid var(--gold); }
.legal-section { margin-bottom: 32px; }
.legal-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.legal-section p { font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 12px; }
.legal-copyright { font-size: 12px; color: var(--mid); margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.legal-body.reveal { opacity: 1 !important; transform: none !important; }
.mta-toc { background: var(--dark); border-radius: 12px; padding: 24px 28px; margin-bottom: 32px; }
.mta-toc h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 16px; }
.mta-toc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mta-toc-grid span { font-size: 13px; color: rgba(255,255,255,0.5); cursor: pointer; padding: 6px 10px; border-radius: 5px; transition: color 0.2s, background 0.2s; }
.mta-toc-grid span:hover { color: var(--gold); background: rgba(201,166,104,0.1); }

/* ══ RESPONSIVE ADDITIONS ══ */
@media(max-width:768px){
  .faq-section { padding: 48px 24px; }
  .legal-body { padding: 48px 24px 64px; }
  .mta-toc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .refer-section { padding: 48px 24px !important; }
  .refer-hero-card { padding: 32px 24px !important; }
  .intern-cta-grid { text-align: center; }
}
@media(max-width:480px){
  .footer-grid { grid-template-columns: 1fr !important; }
  .page-hero-inner { padding:32px 16px !important; }
  .page-hero h1 { font-size:32px !important; }
  .faq-section { padding:40px 16px !important; }
  .legal-body { padding:32px 16px 60px !important; }
}

/* ══ CONTENT+IMAGE 2-COL SECTIONS (services & fees) ══ */

/* 999px and below: collapse to 1 col, hide both content images */
@media(max-width:998px){
  .content-image-2col { grid-template-columns: 1fr !important; }
  .svc-content-img { display: none !important; }
  .fees-row2-img { display: none !important; }
  .blog-content-img { display: none !important; }
  .about-mission-img { display: none !important; }
  /* on mobile show the 3-match callout inline (it's inside the remaining col) */
  .fees-3match-callout { display: block !important; }
  .fees-3match-fullwidth { display: none !important; }
  /* collapse fees Row 2 grid too — image hidden so just show text col */
  .fees-row2 { display: block !important; }
}

/* 999px–1440px: 2-col grid visible BUT 3-match callout pulled full-width below Row 2 */
@media(min-width:999px) and (max-width:1440px){
  .fees-3match-callout { display: none !important; }
  .fees-3match-fullwidth { display: block !important; }
}

/* 1441px+: 3-match callout stays inside the right col of Row 2 */
@media(min-width:1441px){
  .fees-3match-callout { display: block !important; }
  .fees-3match-fullwidth { display: none !important; }
}
