/* ============================================
   hamzilproperty.com — Professional Property Site
   Bg: #FFFFFF · Accent: #F5843A · Dark: #1A1A1A
   Tinted bg: #FFF8F4 · Hover orange: #D4682A
   Fonts: DM Serif Display (headings) + DM Sans
   Signature: 3-dot cluster motif, stat strip,
   property cards, Hasrah heritage section,
   floating WhatsApp button
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --white:      #FFFFFF;
    --tinted:     #FFF8F4;
    --cool-grey:  #F8F9FB;
    --orange:     #F5843A;
    --orange-d:   #D4682A;
    --orange-l:   #FDE8D8;
    --orange-glow:rgba(245,132,58,0.12);
    --hasrah-bg:  #F5EFE0;
    --hasrah-acc: #7A5C3A;
    --text:       #1A1A1A;
    --text-mid:   #374151;
    --text-muted: #6B7280;
    --text-faint: #9CA3AF;
    --border:     #E5E7EB;
    --border-o:   rgba(245,132,58,0.25);
    --shadow:     rgba(0,0,0,0.06);
    --font-d:     'DM Serif Display', Georgia, serif;
    --font-b:     'DM Sans', system-ui, sans-serif;
    --radius:     8px;
    --radius-lg:  14px;
    --max-w:      1100px;
    --section-gap:96px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--white); color: var(--text); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.text-orange { color: var(--orange); }
.font-700 { font-weight: 700; }

/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 200;
    background: #25D366; color: #fff;
    display: flex; align-items: center; gap: 10px;
    padding: 12px 20px; border-radius: 40px;
    font-size: 15px; font-weight: 600; font-family: var(--font-b);
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.2s;
}
.whatsapp-float:hover { background: #20ba5a; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ---- NAV ---- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 28px;
    border-bottom: 1px solid transparent;
    transition: all 0.35s;
    background: transparent;
}
/* Scrolled: white background, dark text */
.nav.scrolled {
    background: rgba(255,255,255,0.97);
    border-color: var(--border);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 12px var(--shadow);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-w); margin: 0 auto; }

/* Logo — single line, dots + HAMZiL (white on hero, dark when scrolled) + Property (always orange) */
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-dots { flex-shrink: 0; }
.nav__logo-h {
    font-family: var(--font-b);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fff;
    transition: color 0.35s;
}
.nav__logo-p {
    font-family: var(--font-b);
    font-size: 20px;
    font-weight: 600;
    color: var(--orange);
    margin-left: 0;       /* no gap — flush against HAMZiL */
    transition: color 0.35s;
}

/* When scrolled, HAMZiL switches to dark */
.nav.scrolled .nav__logo-h { color: var(--text); }

/* Nav links — white on dark hero, dark when scrolled */
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
    padding: 7px 14px; font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,0.12); }

/* Scrolled state: links go dark */
.nav.scrolled .nav__links a { color: var(--text-muted); }
.nav.scrolled .nav__links a:hover { color: var(--text); background: var(--tinted); }

/* CTA button — always orange fill */
.nav__cta { background: var(--orange) !important; color: #fff !important; font-weight: 600 !important; border-radius: 6px; }
.nav__cta:hover { background: var(--orange-d) !important; }

/* Mobile toggle — white on hero, dark when scrolled */
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: background 0.35s; }
.nav.scrolled .nav__toggle span { background: var(--text); }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius); font-size: 15px; font-weight: 600; font-family: var(--font-b); cursor: pointer; border: none; transition: all 0.2s; }
.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { background: var(--orange-d); transform: translateY(-1px); }
.btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.55); }
.btn--outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }
.btn--orange-outline { background: transparent; color: var(--orange); border: 1.5px solid var(--border-o); }
.btn--orange-outline:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #20ba5a; }
.btn--hasrah { background: var(--hasrah-acc); color: #fff; }
.btn--hasrah:hover { background: #5c4429; }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }

/* ---- SECTION LABELS ---- */
.section-label-group { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); }
.section-title { font-family: var(--font-d); font-size: clamp(30px, 4vw, 44px); color: var(--text); margin-bottom: 10px; line-height: 1.15; }
.section-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 48px; }

/* ---- SECTIONS ---- */
.section { padding: var(--section-gap) 0; }
.section--tinted { background: var(--tinted); }
.section--hasrah { background: var(--hasrah-bg); }

/* ---- HERO ---- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg-photo { position: absolute; inset: 0; background: linear-gradient(135deg, #1a3a5c 0%, #2d6a9f 50%, #1a3a5c 100%); }
.hero__bg-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,25,40,0.85) 0%, rgba(15,25,40,0.5) 60%, rgba(15,25,40,0.3) 100%); }
.hero__inner { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; padding: 140px 0 60px; }
.hero__content { max-width: 560px; }
.hero__kicker { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,132,58,0.9); margin-bottom: 20px; }
.hero__headline { font-family: var(--font-d); font-size: clamp(44px, 7vw, 80px); color: #fff; line-height: 1.05; margin-bottom: 16px; }
.hero__tagline-ms { font-size: 16px; color: rgba(255,255,255,0.65); font-style: italic; margin-bottom: 32px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- HERO STATS STRIP ---- */
.hero__stats { position: relative; z-index: 2; background: var(--white); border-top: 3px solid var(--orange); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); }
.hero__stats-inner { display: flex; align-items: center; justify-content: space-around; padding: 24px 28px; flex-wrap: wrap; gap: 12px; max-width: var(--max-w); margin: 0 auto; }
.hero__stat { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.hero__stat-num { font-family: var(--font-d); font-size: 32px; color: var(--orange); line-height: 1; }
.hero__stat-label { font-size: 12px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hero__stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ---- ABOUT ---- */
.about__inner { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.about__lead { font-size: 18px; color: var(--text-mid); font-weight: 500; margin-bottom: 16px; }
.about__distinction { margin-top: 24px; padding: 20px 24px; background: var(--white); border-left: 4px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; box-shadow: 0 2px 10px var(--shadow); }
.about__distinction p { color: var(--text-mid); font-size: 15px; }
.about__ms { font-style: italic; color: var(--text-muted) !important; font-size: 14px !important; margin-top: 10px; }
.about__team-head { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 16px; }
.team-card { display: flex; gap: 14px; padding: 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; }
.team-card__photo { width: 52px; height: 52px; border-radius: 50%; background: var(--orange-l); border: 2px solid var(--orange); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--orange-d); font-size: 16px; flex-shrink: 0; }
.team-card__name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.team-card__role { font-size: 12px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.team-card__note { font-size: 13px; color: var(--text-muted); }

/* ---- AREAS ---- */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.area-card { padding: 24px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); transition: all 0.2s; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 10px; }
.area-card:hover { border-color: var(--orange); box-shadow: 0 4px 20px var(--orange-glow); transform: translateY(-2px); }
.area-card--featured { border-color: var(--border-o); background: var(--tinted); }
.area-card--hasrah { border-color: rgba(122,92,58,0.2); background: #faf6ee; }
.area-card__badge { position: absolute; top: 14px; right: 14px; background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; }
.area-card__top { display: flex; align-items: center; gap: 8px; }
.area-card__flag { font-size: 20px; }
.area-card__state { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.area-card h3 { font-family: var(--font-d); font-size: 20px; color: var(--text); }
.area-card p { font-size: 14px; color: var(--text-muted); margin: 0; }
.area-card__stat { display: flex; align-items: baseline; gap: 6px; font-size: 13px; color: var(--text-muted); margin-top: auto; }
.area-card__hasrah-note { font-size: 12px; color: var(--hasrah-acc); }
.area-card__link { font-size: 13px; font-weight: 600; color: var(--orange); transition: letter-spacing 0.2s; }
.area-card:hover .area-card__link { letter-spacing: 0.06em; }

/* ---- PROPERTIES ---- */
.properties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.prop-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 1px 6px var(--shadow); transition: all 0.2s; }
.prop-card:hover { box-shadow: 0 6px 20px var(--orange-glow); border-color: var(--border-o); transform: translateY(-2px); }
.prop-card__photo { height: 160px; background: linear-gradient(135deg, #e8eff8 0%, #d0ddf0 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.prop-card__photo-label { font-family: var(--font-d); font-size: 16px; color: #7a90b0; font-style: italic; }
.prop-card__body { padding: 18px; }
.prop-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; flex-wrap: wrap; gap: 6px; }
.prop-card__type { font-size: 11px; color: var(--text-faint); font-weight: 500; }
.prop-card__name { font-family: var(--font-d); font-size: 17px; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.prop-card__area { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.prop-card__rent { font-size: 16px; font-weight: 700; color: var(--orange); margin-bottom: 14px; }
.properties-note { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-faint); font-style: italic; margin-top: 8px; }

/* ---- STATUS BADGES ---- */
.status-badge { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 4px; letter-spacing: 0.04em; display: inline-block; }
.status-badge--available { background: rgba(16,185,129,0.12); color: #059669; border: 1px solid rgba(16,185,129,0.25); }
.status-badge--occupied   { background: rgba(107,114,128,0.1); color: #4B5563; border: 1px solid rgba(107,114,128,0.2); }
.status-badge--mixed      { background: rgba(245,132,58,0.12); color: var(--orange-d); border: 1px solid rgba(245,132,58,0.25); }
.status-badge--soon       { background: rgba(245,158,11,0.12); color: #D97706; border: 1px solid rgba(245,158,11,0.25); }

/* ---- STANDARDS ---- */
.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.standard-card { padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: border-color 0.2s, box-shadow 0.2s; }
.standard-card:hover { border-color: var(--border-o); box-shadow: 0 4px 16px var(--orange-glow); }
.standard-card__num { font-family: var(--font-d); font-size: 28px; margin-bottom: 8px; }
.standard-card__dot { margin-bottom: 14px; }
.standard-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.standard-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* ---- TECHNOLOGY ---- */
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tech-card { padding: 32px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.tech-card--live { border-color: var(--border-o); }
.tech-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
.tech-badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px; letter-spacing: 0.06em; }
.tech-badge--live { background: rgba(245,132,58,0.12); color: var(--orange); border: 1px solid rgba(245,132,58,0.25); }
.tech-badge--dev  { background: rgba(245,158,11,0.1); color: #D97706; border: 1px solid rgba(245,158,11,0.2); }
.tech-card__link { font-size: 13px; color: var(--orange); font-weight: 600; transition: color 0.2s; }
.tech-card__link:hover { color: var(--orange-d); }
.tech-card h3 { font-family: var(--font-d); font-size: 22px; color: var(--text); margin-bottom: 12px; }
.tech-card > p { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; }
.tech-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.tech-feature { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-mid); }
.tech-feature--planned { color: var(--text-muted); }
.tech-card__note { font-size: 12px; color: var(--text-faint); font-style: italic; }
.portal-notify-form { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.portal-notify-form input { flex: 1; min-width: 150px; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: var(--font-b); }
.portal-notify-form input:focus { outline: none; border-color: var(--orange); }

/* ---- HASRAH SECTION ---- */
.section--hasrah { border-top: 1px solid rgba(122,92,58,0.15); border-bottom: 1px solid rgba(122,92,58,0.15); }
.hasrah__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hasrah__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hasrah-acc); margin-bottom: 12px; }
.hasrah__title { font-family: var(--font-d); font-size: clamp(36px, 5vw, 56px); color: var(--hasrah-acc); margin-bottom: 8px; line-height: 1.1; }
.hasrah__sub { font-size: 16px; color: rgba(122,92,58,0.7); margin-bottom: 20px; }
.hasrah__inner p { color: rgba(61,40,20,0.7); }
.hasrah__visual { display: flex; align-items: center; justify-content: center; }
.hasrah__ornament { text-align: center; padding: 40px; background: rgba(255,255,255,0.6); border-radius: var(--radius-lg); border: 1px solid rgba(122,92,58,0.2); }
.hasrah__name-eq { font-family: var(--font-d); font-size: 20px; color: var(--hasrah-acc); margin-bottom: 16px; }
.hasrah__name-eq span { display: inline-block; padding: 4px 14px; background: rgba(122,92,58,0.1); border-radius: 4px; }
.hasrah__name-result { font-family: var(--font-d); font-size: 52px; color: var(--hasrah-acc); letter-spacing: 0.1em; }

/* ---- OWNER INTEREST ---- */
.owner__inner { display: grid; grid-template-columns: 1fr 440px; gap: 64px; align-items: start; }
.owner__text h2 { font-family: var(--font-d); font-size: 36px; color: var(--text); margin-bottom: 16px; }
.owner__caveat { font-size: 13px; color: var(--text-faint); font-style: italic; margin-top: 12px; }
.owner__form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 2px 12px var(--shadow); }
.owner-form { display: flex; flex-direction: column; gap: 12px; }

/* ---- CONTACT ---- */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__left h2 { font-family: var(--font-d); font-size: 36px; color: var(--text); margin-bottom: 12px; }
.contact__left > p { color: var(--text-muted); margin-bottom: 24px; }
.contact__methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact__email { font-size: 15px; color: var(--orange); font-weight: 600; transition: color 0.2s; }
.contact__email:hover { color: var(--orange-d); }
.contact__coverage-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 10px; }
.contact__coverage-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.contact__coverage-tags span { padding: 5px 12px; background: var(--tinted); border: 1px solid var(--border-o); border-radius: 40px; font-size: 13px; color: var(--orange-d); font-weight: 500; }
.enquiry-form { display: flex; flex-direction: column; gap: 12px; }

/* ---- FORM ---- */
.field-group { display: flex; flex-direction: column; gap: 5px; }
.field-group label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.field-group input, .field-group select, .field-group textarea { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 11px 14px; font-size: 15px; color: var(--text); font-family: var(--font-b); transition: border-color 0.2s, box-shadow 0.2s; width: 100%; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }
.field-group input::placeholder, .field-group textarea::placeholder { color: var(--text-faint); }
.field-group.has-error input, .field-group.has-error select { border-color: #ef4444; }
.field-error { font-size: 12px; color: #ef4444; }
.alert--success { padding: 14px 18px; background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25); border-radius: var(--radius); color: #059669; font-size: 15px; margin-bottom: 12px; }

/* ---- FOOTER ---- */
.site-footer { background: var(--text); color: #fff; padding: 56px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer__wordmark { font-family: var(--font-b); font-size: 18px; font-weight: 700; letter-spacing: 0.04em; }
.footer__wordmark span { color: var(--orange); }
.footer__tagline { font-family: var(--font-d); font-size: 14px; font-style: italic; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.footer__parent { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer__parent a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__parent a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 14px; margin-top: 16px; }
.footer__social a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer__social a:hover { color: var(--orange); }
.footer__col-head { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.footer__links a { display: block; font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: color 0.2s; }
.footer__links a:hover { color: var(--orange); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ---- SUBPAGES ---- */
.page-hero { background: var(--tinted); padding: 120px 0 60px; border-bottom: 3px solid var(--orange); }
.page-hero__inner { }
.page-back { display: inline-block; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; transition: color 0.2s; }
.page-back:hover { color: var(--orange); }
.page-hero h1 { font-family: var(--font-d); font-size: clamp(40px, 6vw, 64px); color: var(--text); line-height: 1.1; margin: 10px 0 14px; }
.page-hero__sub { font-size: 17px; color: var(--text-muted); }
.page-hero__stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 24px; }
.hero-mini-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-mini-stat span:last-child { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.cluster-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0; }
.cluster-card { padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.cluster-card h3 { font-family: var(--font-d); font-size: 20px; margin-bottom: 10px; color: var(--text); }
.cluster-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.cluster-detail { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.cluster-detail:last-child { border-bottom: none; }
.cluster-detail span { color: var(--text-muted); }
.cluster-detail strong { color: var(--text); }
.subpage-cta-box { padding: 28px; background: var(--tinted); border: 1px solid var(--border-o); border-radius: var(--radius-lg); text-align: center; }
.subpage-cta-box p { color: var(--text-muted); margin-bottom: 16px; }
.subpage-cta-box__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ---- DOT CLUSTER COMPONENT ---- */
.dot-cluster { flex-shrink: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1000px) {
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .about__inner { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr; }
    .hasrah__inner { grid-template-columns: 1fr; }
    .hasrah__visual { display: none; }
    .owner__inner { grid-template-columns: 1fr; }
    .contact__inner { grid-template-columns: 1fr; }
    .properties-grid { grid-template-columns: repeat(2, 1fr); }
    .standards-grid { grid-template-columns: repeat(2, 1fr); }
    .cluster-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    :root { --section-gap: 72px; }
    .nav__links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); padding: 90px 28px 32px; gap: 6px; box-shadow: 0 0 0 100vw rgba(0,0,0,0.3); }
    .nav__links.open { display: flex; }
    .nav__links.open a { color: var(--text-muted) !important; background: none !important; font-size: 18px; padding: 12px 0; border-radius: 0; }
    .nav__links.open a:hover { color: var(--orange) !important; }
    .nav__toggle { display: flex; }
    .hero__cta { flex-direction: column; align-items: flex-start; }
    .hero__stats-inner { justify-content: flex-start; gap: 24px; }
    .hero__stat-divider { display: none; }
    .areas-grid { grid-template-columns: 1fr; }
    .properties-grid { grid-template-columns: 1fr; }
    .standards-grid { grid-template-columns: 1fr; }
    .portal-notify-form { flex-direction: column; }
    .footer__inner { grid-template-columns: 1fr; }
    .footer__bottom-inner { flex-direction: column; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; }
}