*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #0d1f3c;
    --navy-mid: #152d52;
    --charcoal: #1a1a2e;
    --body-text: #374151;
    --muted: #6b7280;
    --white: #ffffff;
    --grey-bg: #f8f9fb;
    --grey-border: #e5e7eb;
    --gold: #c9a843;
    --gold-light: #e2c46a;
    --font: 'Plus Jakarta Sans', sans-serif;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(13,31,60,0.08);
    --shadow-hover: 0 8px 40px rgba(13,31,60,0.16);
    --transition: 0.25s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); color: var(--body-text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100vw; }

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 60px;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--grey-border);
    padding: 14px 60px;
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo-main { font-size: 1.05rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; line-height: 1.1; transition: color 0.3s; }
.nav-logo-sub { font-size: 0.62rem; font-weight: 500; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.3s; }
nav.scrolled .nav-logo-main { color: var(--navy); }
nav.scrolled .nav-logo-sub { color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.82); transition: color 0.2s; }
nav.scrolled .nav-links a { color: var(--body-text); }
.nav-links a:hover { color: var(--white); }
nav.scrolled .nav-links a:hover { color: var(--navy); }
.nav-cta { background: var(--white); color: var(--navy); padding: 10px 22px; border-radius: 7px; font-size: 0.875rem; font-weight: 700; text-decoration: none; transition: all var(--transition); }
nav.scrolled .nav-cta { background: var(--navy); color: var(--white); }
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: background 0.3s; }
nav.scrolled .nav-hamburger span { background: var(--navy); }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); text-decoration: none; font-size: 1.5rem; font-weight: 700; }
.mobile-menu-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; line-height: 1; }
.mobile-cta { background: var(--white) !important; color: var(--navy) !important; padding: 14px 36px; border-radius: 8px; font-size: 1rem !important; }

/* HERO */
.hero {
    min-height: 100vh;
    background: #07111f;
    position: relative; overflow: hidden;
    display: flex; align-items: center;
    padding: 120px 60px 80px;
}
.hero-bg-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.38; }
.hero-grid {
    position: absolute; inset: 0;
    background: linear-gradient(150deg, rgba(7,17,31,0.72) 0%, rgba(13,31,60,0.55) 55%, rgba(13,31,60,0.3) 100%);
}
.hero-glow { position: absolute; bottom: 0; left: 0; right: 0; height: 280px; background: linear-gradient(to top, #07111f 0%, transparent 100%); }
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.88); font-size: 0.75rem; font-weight: 600; padding: 6px 14px; border-radius: 100px; margin-bottom: 28px; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; color: var(--white); line-height: 1.13; letter-spacing: -0.03em; margin-bottom: 20px; }
.hero h1 em { color: rgba(255,255,255,0.42); font-style: normal; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 500px; margin-bottom: 40px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--white); color: var(--navy); padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all var(--transition); display: inline-block; }
.btn-primary:hover { background: #eef2ff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.22); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.28); padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all var(--transition); display: inline-block; }
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.35); font-size: 0.72rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); }

/* STATS */
.stats-bar { background: var(--navy); padding: 36px 60px; }
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 12px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.03em; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }

/* SECTIONS */
section { padding: 120px 60px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.11em; color: var(--gold); margin-bottom: 12px; }
.section-title { font-size: clamp(2.2rem, 3.8vw, 3.2rem); font-weight: 800; color: var(--charcoal); letter-spacing: -0.04em; line-height: 1.12; margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 540px; line-height: 1.75; }
.divider { width: 44px; height: 3px; background: var(--gold); border-radius: 2px; margin: 14px 0 32px; }

/* MEET PARM */
.meet-parm { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: center; margin-top: 56px; }
.meet-parm-photo { position: relative; }
.meet-parm-photo img { width: 100%; border-radius: 16px; object-fit: cover; aspect-ratio: 4/5; display: block; background: #1a2d4a; }
.meet-parm-photo-placeholder { width: 100%; border-radius: 16px; aspect-ratio: 4/5; background: linear-gradient(160deg, #152d52 0%, #0d1f3c 100%); display: flex; align-items: center; justify-content: center; }
.meet-parm-photo-placeholder svg { width: 80px; height: 80px; opacity: 0.18; stroke: white; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.meet-parm-photo-badge { position: absolute; bottom: -18px; left: 24px; background: var(--navy); color: white; border-radius: 12px; padding: 14px 20px; box-shadow: 0 8px 32px rgba(13,31,60,0.25); }
.meet-parm-photo-badge strong { display: block; font-size: 1rem; font-weight: 800; }
.meet-parm-photo-badge span { font-size: 0.72rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.meet-parm-text { padding-bottom: 20px; }
.meet-parm-text p { font-size: 1rem; color: var(--body-text); line-height: 1.8; margin-bottom: 18px; }
.meet-parm-text p:last-of-type { margin-bottom: 32px; }

/* PROPERTY CARDS */
.properties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.property-card { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: transparent; }
.property-photo { height: 210px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.property-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; position: absolute; inset: 0; }
.property-card:hover .property-photo img { transform: scale(1.05); }
.badge-province { position: absolute; top: 14px; left: 14px; padding: 4px 11px; border-radius: 100px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; background: rgba(13,31,60,0.82); color: white; }
.badge-occupied { position: absolute; top: 14px; right: 14px; background: rgba(0,0,0,0.58); color: rgba(255,255,255,0.88); padding: 4px 10px; border-radius: 100px; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.03em; }
.badge-available { position: absolute; top: 14px; right: 14px; background: rgba(22,163,74,0.85); color: white; padding: 4px 10px; border-radius: 100px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.03em; }
.property-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.property-name { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; line-height: 1.3; }
.property-location { font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; }
.property-price { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.02em; }
.property-price span { font-size: 0.78rem; font-weight: 500; color: var(--muted); }
.property-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.chip { background: var(--grey-bg); color: var(--body-text); padding: 4px 10px; border-radius: 6px; font-size: 0.73rem; font-weight: 600; }
.property-features { font-size: 0.8rem; color: var(--muted); margin-bottom: 18px; line-height: 1.65; flex: 1; }
.btn-waitlist { display: block; text-align: center; background: var(--navy); color: var(--white); padding: 11px; border-radius: 8px; font-weight: 700; font-size: 0.875rem; text-decoration: none; transition: all var(--transition); }
.btn-waitlist:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-apply { display: block; text-align: center; background: #16a34a; color: var(--white); padding: 11px; border-radius: 8px; font-weight: 700; font-size: 0.875rem; text-decoration: none; transition: all var(--transition); }
.btn-apply:hover { background: #15803d; transform: translateY(-1px); }
.view-all-wrap { text-align: center; margin-top: 48px; }
.btn-navy { display: inline-block; background: var(--navy); color: var(--white); padding: 13px 32px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all var(--transition); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline-navy { display: inline-block; border: 2px solid var(--navy); color: var(--navy); padding: 11px 28px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all var(--transition); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* WHY DK */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
.why-card { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 30px; transition: all var(--transition); }
.why-card:hover { box-shadow: var(--shadow); }
.why-icon { width: 46px; height: 46px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-icon svg { width: 20px; height: 20px; stroke: var(--navy); fill: none; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.why-card p { font-size: 0.865rem; color: var(--muted); line-height: 1.7; }

/* AREAS / WHERE WE MANAGE */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; }
.area-card { position: relative; height: 420px; border-radius: var(--radius); overflow: hidden; text-decoration: none; display: block; }
.area-card-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.area-card:hover .area-card-bg { transform: scale(1.07); }
.area-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,31,0.94) 0%, rgba(13,31,60,0.5) 50%, rgba(13,31,60,0.15) 100%); }
.area-card-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px 22px; }
.area-province { display: inline-block; font-size: 0.63rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); background: rgba(201,168,67,0.14); border: 1px solid rgba(201,168,67,0.38); border-radius: 20px; padding: 4px 10px; margin-bottom: 11px; width: fit-content; }
.area-city { font-size: 1.45rem; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 5px; letter-spacing: -0.02em; }
.area-count { font-size: 0.78rem; color: rgba(255,255,255,0.62); margin-bottom: 14px; }
.area-link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.77rem; font-weight: 700; color: var(--gold); opacity: 0; transform: translateY(8px); transition: opacity 0.3s ease, transform 0.3s ease; }
.area-card:hover .area-link { opacity: 1; transform: translateY(0); }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.t-card { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 28px; }
.t-stars { font-size: 1rem; margin-bottom: 14px; letter-spacing: 1px; }
.t-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.t-badge { background: var(--grey-bg); color: var(--body-text); padding: 4px 10px; border-radius: 6px; font-size: 0.73rem; font-weight: 600; }
.t-quote { font-size: 0.84rem; color: var(--body-text); line-height: 1.7; margin-bottom: 18px; }
.t-name { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); }
.t-meta { font-size: 0.73rem; color: var(--muted); margin-top: 4px; }

/* CTA SECTION */
.cta-section { background: var(--navy); }
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.cta-section .section-tag { color: rgba(255,255,255,0.45); }
.cta-section .section-title { color: var(--white); }
.cta-section .section-sub { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--navy); padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all var(--transition); display: inline-block; }
.btn-white:hover { background: #eef2ff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.32); padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all var(--transition); display: inline-block; }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.08); }

/* FOOTER */
footer { background: #060d1a; padding: 64px 60px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand-name { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.footer-brand-sub { font-size: 0.62rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 16px; }
.footer-desc { font-size: 0.84rem; color: rgba(255,255,255,0.42); line-height: 1.7; max-width: 270px; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { color: rgba(255,255,255,0.58); text-decoration: none; font-size: 0.875rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-col p { font-size: 0.875rem; color: rgba(255,255,255,0.58); line-height: 1.8; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: rgba(255,255,255,0.28); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }
.footer-bottom a[href*="getweblyft"] { color: var(--gold); }
.footer-bottom a[href*="getweblyft"]:hover { color: #e0bc5a; }

/* PAGE HERO */
.page-hero { background: linear-gradient(150deg, #07111f 0%, #0d1f3c 100%); padding: 140px 60px 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 64px 64px; }
.page-hero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; margin-bottom: 12px; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 480px; line-height: 1.7; }

/* FORMS */
.form-wrap { background: var(--white); border: 1px solid var(--grey-border); border-radius: 16px; padding: 40px; max-width: 760px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.76rem; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea { border: 1.5px solid var(--grey-border); border-radius: 8px; padding: 11px 14px; font-size: 0.9rem; font-family: var(--font); color: var(--charcoal); outline: none; transition: border var(--transition); background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-group input[type="checkbox"] { width: 16px; height: 16px; margin-right: 8px; accent-color: var(--navy); }
.form-group input[type="file"] { padding: 8px 12px; background: var(--grey-bg); cursor: pointer; color: var(--muted); }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--muted); cursor: pointer; }
.form-submit { background: var(--navy); color: var(--white); border: none; padding: 14px 36px; border-radius: 8px; font-weight: 700; font-size: 0.9rem; font-family: var(--font); cursor: pointer; transition: all var(--transition); margin-top: 8px; }
.form-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; }

/* RESOURCES */
.resources-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; align-items: start; }
.resource-box { background: var(--grey-bg); border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 28px; }
.resource-box h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 16px; }
.resource-box p { font-size: 0.865rem; color: var(--muted); line-height: 1.7; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.checklist li { font-size: 0.865rem; color: var(--body-text); padding-left: 22px; position: relative; }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--navy); font-weight: 700; }

/* CHECKLISTS GRID */
.checklists-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; border: 1px solid var(--grey-border); border-radius: var(--radius); overflow: hidden; margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--grey-border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; font-weight: 600; color: var(--charcoal); font-size: 0.92rem; background: var(--white); transition: background var(--transition); gap: 16px; }
.faq-q:hover { background: var(--grey-bg); }
.faq-icon { color: var(--navy); font-size: 1.2rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 0.865rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; margin-top: 48px; align-items: start; }
.contact-info-card { background: var(--navy); border-radius: var(--radius); padding: 36px; color: white; }
.contact-info-card h3 { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 28px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.contact-info-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.contact-info-value { font-size: 0.9rem; color: rgba(255,255,255,0.88); font-weight: 500; }

/* CHATBOT */
.chat-trigger { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; background: var(--navy); border-radius: 50%; border: 3px solid var(--gold); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(13,31,60,0.45), 0 0 0 0 rgba(201,168,67,0.4); z-index: 9999; transition: all var(--transition); animation: chatPulse 2.5s ease-in-out infinite; }
.chat-trigger:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(13,31,60,0.55), 0 0 0 8px rgba(201,168,67,0.15); animation: none; }
@keyframes chatPulse { 0%,100% { box-shadow: 0 4px 24px rgba(13,31,60,0.45), 0 0 0 0 rgba(201,168,67,0.4); } 50% { box-shadow: 0 4px 24px rgba(13,31,60,0.45), 0 0 0 10px rgba(201,168,67,0); } }
.chat-trigger svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.chat-panel { position: fixed; bottom: 96px; right: 28px; width: 336px; background: var(--white); border-radius: 16px; box-shadow: 0 8px 48px rgba(13,31,60,0.22); z-index: 900; overflow: hidden; display: none; flex-direction: column; max-height: 520px; }
.chat-panel.open { display: flex; }
.chat-header { background: var(--navy); border-bottom: 2px solid var(--gold); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; }
.chat-header-name { font-size: 0.92rem; font-weight: 700; color: white; }
.chat-header-status { font-size: 0.7rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.chat-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
.chat-close { background: none; border: none; color: rgba(255,255,255,0.55); cursor: pointer; font-size: 1.3rem; line-height: 1; }
.chat-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { background: var(--grey-bg); border-radius: 12px 12px 12px 3px; padding: 12px 14px; font-size: 0.84rem; color: var(--charcoal); line-height: 1.6; max-width: 88%; white-space: pre-line; }
.chat-options { display: flex; flex-direction: column; gap: 7px; }
.chat-pill { background: var(--white); border: 1.5px solid var(--grey-border); color: var(--navy); padding: 9px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; cursor: pointer; text-align: left; font-family: var(--font); transition: all var(--transition); }
.chat-pill:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.chat-typing { display: flex; gap: 4px; padding: 12px 14px; background: var(--grey-bg); border-radius: 12px 12px 12px 3px; width: fit-content; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: bounce 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.18s; }
.chat-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes bounce { 0%,60%,100%{opacity:.3;transform:translateY(0)} 30%{opacity:1;transform:translateY(-4px)} }
.chat-input-row { border-top: 1px solid var(--grey-border); padding: 11px 14px; display: flex; gap: 8px; }
.chat-input { flex: 1; border: 1.5px solid var(--grey-border); border-radius: 100px; padding: 8px 14px; font-size: 0.8rem; font-family: var(--font); outline: none; transition: border var(--transition); }
.chat-input:focus { border-color: var(--navy); }
.chat-send { background: var(--navy); border: none; border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: opacity var(--transition); }
.chat-send:hover { opacity: 0.82; }
.chat-send svg { width: 13px; height: 13px; stroke: white; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* SLIDESHOW */
.property-slideshow { position: relative; height: 260px; overflow: hidden; background: #1a2a3a; }
.slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.7s ease; }
.slide.active { opacity: 1; }
.slide-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.42); color: white; border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; z-index: 10; opacity: 0.55; transition: opacity 0.2s, background 0.2s; line-height: 1; }
.property-slideshow:hover .slide-btn { opacity: 1; }
.slide-btn:hover { background: rgba(0,0,0,0.72); }
.slide-prev { left: 10px; }
.slide-next { right: 10px; }
.slide-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 10; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.45); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.dot.active { background: var(--gold); transform: scale(1.3); }
.slide-counter { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.48); color: rgba(255,255,255,0.88); font-size: 0.68rem; font-weight: 600; padding: 3px 8px; border-radius: 100px; z-index: 10; }
.avail-row { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.avail-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.avail-dot.occupied { background: #9ca3af; }
.avail-dot.available { background: #16a34a; }
.avail-text { font-size: 0.8rem; font-weight: 700; }
.avail-text.occupied { color: #6b7280; }
.avail-text.available { color: #16a34a; }

/* APPLY PAGE */
.apply-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; width: 100%; min-width: 0; }
.apply-layout > * { min-width: 0; }
.apply-layout .form-wrap { max-width: 100%; width: 100%; box-sizing: border-box; }
.apply-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; min-width: 0; }
.apply-sidebar .resource-box, .apply-sidebar .contact-info-card { min-width: 0; word-break: break-word; overflow: hidden; }
.form-wrap * { max-width: 100%; box-sizing: border-box; }
.form-group input, .form-group select, .form-group textarea { width: 100%; }

/* UTILITIES */
.grey-section { background: var(--grey-bg); }
.mt-48 { margin-top: 48px; }
.text-center { text-align: center; }
.info-strip { background: var(--navy); color: rgba(255,255,255,0.7); text-align: center; padding: 10px 20px; font-size: 0.8rem; font-weight: 500; }
.info-strip a { color: white; font-weight: 700; text-decoration: none; }

/* RESPONSIVE */

/* LAPTOP (max 1200px) */
@media (max-width: 1200px) {
    nav, nav.scrolled { padding-left: 40px; padding-right: 40px; }
    .hero { padding-left: 40px; padding-right: 40px; }
    section { padding: 100px 40px; }
    .stats-bar { padding-left: 40px; padding-right: 40px; }
    footer { padding-left: 40px; padding-right: 40px; }
    .page-hero { padding-left: 40px; padding-right: 40px; }
    .apply-layout { grid-template-columns: 1fr; gap: 32px; }
    .apply-sidebar { position: static; }
}

/* TABLET / IPAD (max 1024px) */
@media (max-width: 1024px) {
    nav, nav.scrolled { padding-left: 28px; padding-right: 28px; }
    .hero { padding: 110px 28px 72px; }
    section { padding: 88px 28px; }
    .stats-bar { padding: 32px 28px; }
    footer { padding: 56px 28px 36px; }
    .page-hero { padding: 130px 28px 64px; }

    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .properties-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .area-card { height: 360px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
    .resources-grid { grid-template-columns: 1fr; }
    .apply-layout { grid-template-columns: 1fr; gap: 32px; }
    .apply-sidebar { position: static; }
    .meet-parm { gap: 48px; }
}

/* MOBILE (max 768px) */
@media (max-width: 768px) {
    nav, nav.scrolled { padding: 16px 20px; }
    .hero { padding: 110px 20px 64px; min-height: 92vh; }
    section { padding: 72px 20px; }
    .stats-bar { padding: 24px 20px; }
    .page-hero { padding: 120px 20px 52px; }
    footer { padding: 48px 20px 28px; }

    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-sub { font-size: 0.95rem; }
    .hero-scroll { display: none; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 15px 20px; box-sizing: border-box; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
    .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.1); }

    .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

    .properties-grid { grid-template-columns: 1fr; gap: 18px; }
    .why-grid { grid-template-columns: 1fr; gap: 14px; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .area-card { height: 260px; }
    .area-city { font-size: 1.1rem; }
    .area-count { font-size: 0.72rem; }

    .apply-layout { grid-template-columns: 1fr; gap: 32px; }
    .apply-sidebar { position: static; }

    .meet-parm { grid-template-columns: 1fr; gap: 48px; }
    .meet-parm-photo-badge { left: 16px; bottom: -14px; padding: 10px 16px; }
    .meet-parm-photo img, .meet-parm-photo-placeholder { aspect-ratio: 3/2; }

    .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }

    .checklists-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: 1; }
    .form-wrap { padding: 24px 18px; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

    .chat-panel { right: 10px; left: 10px; width: auto; bottom: 86px; }
    .chat-trigger { right: 18px; bottom: 18px; }

    .page-hero h1 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
    .cta-section { padding: 72px 20px; }
    .cta-inner { padding: 0 4px; }
}

/* SMALL PHONE (max 480px) */
@media (max-width: 480px) {
    .hero { padding: 100px 16px 56px; }
    section { padding: 60px 16px; }
    .stats-bar { padding: 20px 16px; }
    footer { padding: 40px 16px 24px; }
    .page-hero { padding: 110px 16px 44px; }

    .hero h1 { font-size: 1.85rem; }
    .section-title { font-size: 1.7rem; }

    .areas-grid { grid-template-columns: 1fr; gap: 10px; }
    .area-card { height: 230px; }

    .stat-num { font-size: 1.6rem; }
    .why-card { padding: 20px 16px; }
    .property-slideshow { height: 220px; }
    .meet-parm { gap: 36px; }

    .chat-panel { right: 8px; left: 8px; }
    .cta-section { padding: 60px 16px; }
    .btn-white, .btn-outline-white { width: 100%; text-align: center; box-sizing: border-box; }
}
