/* ============================================================
   MI Real Estate & Construction — Karachi
   Main stylesheet. You normally do NOT need to edit this file.
   ============================================================ */

:root {
  --ink: #0b1119;          /* near-black background */
  --coal: #0f1a26;         /* dark section background */
  --coal-2: #16232f;       /* dark card background */
  --line: rgba(18, 104, 181, 0.22);
  --gold: #1268b5;
  --gold-strong: #3d9ae0;
  --gold-soft: #bfdcf5;
  --cream: #eef3f7;
  --paper: #ffffff;
  --text-on-dark: #eef0f2;
  --muted-on-dark: #a9adb6;
  --text-on-light: #1c1c1c;
  --muted-on-light: #55606b;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --shadow-light: 0 12px 30px rgba(10, 30, 50, 0.12);
  --container: 1180px;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text-on-dark);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.18; }

.kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title { font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 16px; }

.section-lead { max-width: 640px; font-size: 17px; }

.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

.gold { color: var(--gold-strong); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(18, 104, 181, 0.32);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(18, 104, 181, 0.45); }

.btn-ghost { border-color: var(--gold); color: var(--gold-soft); background: transparent; }
.btn-ghost:hover { background: rgba(18, 104, 181, 0.12); transform: translateY(-2px); }

.btn-dark { background: var(--ink); color: var(--gold-soft); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.25); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(11, 17, 25, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--line);
}

.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }

.brand-mark {
  width: 46px; height: 46px;
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-size: 19px; font-weight: 700;
  color: var(--gold-strong);
  background: rgba(18, 104, 181, 0.08);
  flex: none;
}

.brand-mark.has-logo { background: #ffffff; border-color: rgba(255,255,255,0.65); padding: 3px; }
.brand-mark.has-logo img { width: 100%; height: 100%; object-fit: contain; }

.brand-name { font-family: var(--font-head); font-size: 19px; font-weight: 700; letter-spacing: 0.02em; }
.brand-name small { display: block; font-family: var(--font-body); font-size: 10.5px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: 15px; font-weight: 500; color: var(--text-on-dark); position: relative; padding: 4px 0; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 2px; background: var(--gold); transition: width 0.25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--gold-soft); }

.nav-cta { padding: 11px 22px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: none; border: 1.5px solid var(--line); border-radius: 8px;
  color: var(--gold-soft); font-size: 22px; line-height: 1;
  width: 44px; height: 42px; cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 110px;
  background:
    radial-gradient(1000px 500px at 85% 10%, rgba(18, 104, 181, 0.14), transparent 60%),
    linear-gradient(180deg, #0d1724 0%, var(--ink) 100%);
  overflow: hidden;
}

.hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.8s ease;
}
.hero-photo.loaded { opacity: 0.28; }

.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,17,25,0.55) 0%, rgba(11,17,25,0.25) 45%, var(--ink) 100%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.hero-inner { max-width: 720px; }

.hero h1 { font-size: clamp(40px, 6vw, 70px); margin: 10px 0 22px; }
.hero h1 em { font-style: italic; color: var(--gold-strong); }

.hero p { font-size: 18.5px; color: var(--muted-on-dark); max-width: 560px; margin-bottom: 34px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 52px; }
.hero-badges span { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted-on-dark); }
.hero-badges b { color: var(--gold-soft); font-weight: 600; }

/* ---------- Stats strip ---------- */

.stats-strip { background: var(--coal); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 46px 0;
}

.stat { text-align: center; padding: 8px 12px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }

.stat-num { font-family: var(--font-head); font-size: clamp(34px, 4vw, 48px); color: var(--gold-strong); font-weight: 700; }
.stat-label { font-size: 13.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-on-dark); margin-top: 6px; }

/* ---------- Generic sections ---------- */

.section { padding: 96px 0; }

.section-dark { background: var(--ink); }
.section-coal { background: var(--coal); }

.section-light { background: var(--cream); color: var(--text-on-light); }
.section-light .section-lead, .section-light p { color: var(--muted-on-light); }
.section-light h2, .section-light h3 { color: #152230; }

.section-head { margin-bottom: 52px; }

/* ---------- About split ---------- */

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }

.split-media { position: relative; }

.split-media img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
}

.split-media .media-frame {
  position: absolute; inset: 22px -22px -22px 22px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1; opacity: 0.5;
}

.experience-chip {
  position: absolute; left: -18px; bottom: 26px;
  background: var(--ink); color: var(--gold-soft);
  padding: 18px 24px; border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  text-align: center;
}
.experience-chip b { display: block; font-family: var(--font-head); font-size: 30px; color: var(--gold-strong); }
.experience-chip span { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }

.checklist { margin: 26px 0 34px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.checklist .tick {
  flex: none; width: 24px; height: 24px; margin-top: 2px;
  border-radius: 50%; background: rgba(18, 104, 181, 0.16);
  color: var(--gold); display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
}
.section-light .checklist li { color: var(--text-on-light); }

/* ---------- CEO section ---------- */

.ceo-split { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 60px; align-items: center; }

.ceo-photo-wrap { position: relative; max-width: 380px; }
.ceo-photo-wrap img {
  width: 100%; height: 440px; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.ceo-photo-wrap::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1; opacity: 0.45;
}

.ceo-quote {
  font-family: var(--font-head);
  font-size: clamp(19px, 2.2vw, 24px);
  font-style: italic;
  line-height: 1.55;
  color: var(--text-on-dark);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 26px 0 30px;
}

.ceo-who b { display: block; font-family: var(--font-head); font-size: 21px; color: var(--gold-soft); }
.ceo-who span { font-size: 13.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-on-dark); }

.ceo-sign {
  height: 96px;
  width: auto;
  margin-top: 22px;
  opacity: 0.95;
}

@media (max-width: 1000px) {
  .ceo-split { grid-template-columns: 1fr; }
  .ceo-photo-wrap { margin: 0 auto; }
  .ceo-photo-wrap::after { display: none; }
}

/* ---------- Services ---------- */

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.service-card {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow); }

.service-icon {
  width: 58px; height: 58px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(18, 104, 181, 0.12);
  border: 1px solid var(--line);
  font-size: 26px;
  margin-bottom: 22px;
}

.service-card h3 { font-size: 21px; margin-bottom: 12px; color: var(--gold-soft); }
.service-card p { font-size: 15px; color: var(--muted-on-dark); }

.section-light .service-card { background: var(--paper); box-shadow: var(--shadow-light); border-color: rgba(90,115,140,0.18); }
.section-light .service-card h3 { color: #152230; }
.section-light .service-card p { color: var(--muted-on-light); }

/* ---------- Projects ---------- */

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.project-card {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.project-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow); }

.project-media { position: relative; height: 250px; overflow: hidden; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-media img { transform: scale(1.06); }

.project-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(11, 17, 25, 0.85);
  color: var(--gold-soft);
  border: 1px solid var(--gold);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.project-tag.own { background: linear-gradient(135deg, var(--gold-strong), var(--gold)); color: #ffffff; border-color: transparent; }

.project-body { padding: 26px 26px 30px; }
.project-body h3 { font-size: 22px; margin-bottom: 6px; color: var(--gold-soft); }
.project-loc { font-size: 13.5px; color: var(--muted-on-dark); display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.project-body p { font-size: 15px; color: var(--muted-on-dark); margin-bottom: 18px; }

.project-link { font-size: 14px; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; }
.project-link:hover { color: var(--gold-strong); }

/* Project detail blocks (projects page) */

.project-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 54px; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--line); }
.project-detail:last-of-type { border-bottom: none; }
.project-detail.flip .pd-media { order: 2; }

.pd-media { display: grid; gap: 14px; }
.pd-media .pd-main { width: 100%; height: 340px; object-fit: cover; border-radius: var(--radius); cursor: zoom-in; }
.pd-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pd-thumbs img { width: 100%; height: 150px; object-fit: cover; border-radius: 10px; cursor: zoom-in; transition: opacity 0.2s; }
.pd-thumbs img:hover { opacity: 0.85; }

.pd-body h3 { font-size: clamp(26px, 3vw, 34px); margin: 8px 0 14px; color: var(--gold-soft); }
.pd-body p { color: var(--muted-on-dark); margin-bottom: 16px; }

.pd-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 22px 0 28px; }
.pd-facts div { border-left: 2px solid var(--gold); padding-left: 14px; }
.pd-facts b { display: block; font-size: 15px; color: var(--gold-soft); }
.pd-facts span { font-size: 13px; color: var(--muted-on-dark); }

/* ---------- Why us ---------- */

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.why-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(90,115,140,0.16);
}
.why-item .service-icon { margin-bottom: 0; flex: none; }
.why-item h3 { font-size: 18.5px; margin-bottom: 6px; color: #152230; }
.why-item p { font-size: 14.5px; }

/* ---------- Testimonials ---------- */

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.testi-card {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.testi-stars { color: var(--gold-strong); letter-spacing: 3px; margin-bottom: 16px; font-size: 15px; }
.testi-card blockquote { font-size: 15.5px; color: var(--text-on-dark); font-style: italic; margin-bottom: 20px; }
.testi-who b { display: block; color: var(--gold-soft); font-size: 15px; }
.testi-who span { font-size: 13px; color: var(--muted-on-dark); }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(700px 300px at 15% 20%, rgba(255,255,255,0.10), transparent 60%),
    linear-gradient(135deg, #0d4f8b 0%, var(--gold) 45%, #0a3d6d 100%);
  color: #ffffff;
  padding: 78px 0;
}
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-row h2 { font-size: clamp(28px, 3.6vw, 40px); max-width: 620px; }
.cta-row p { margin-top: 10px; font-weight: 500; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: start; }

.contact-info-card {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: grid; gap: 24px;
}
.contact-line { display: flex; gap: 16px; align-items: flex-start; }
.contact-line .service-icon { width: 48px; height: 48px; font-size: 21px; margin: 0; flex: none; }
.contact-line b { display: block; font-size: 15px; color: var(--gold-soft); margin-bottom: 3px; }
.contact-line span, .contact-line a { font-size: 15px; color: var(--muted-on-dark); }
.contact-line a:hover { color: var(--gold-strong); }

.contact-form {
  background: var(--paper);
  color: var(--text-on-light);
  border-radius: var(--radius);
  padding: 42px 38px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 26px; margin-bottom: 8px; }
.contact-form .form-note { font-size: 14px; color: var(--muted-on-light); margin-bottom: 26px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }

.contact-form label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #526070; margin-bottom: 7px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid #c9d6e2;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
  color: var(--text-on-light);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(18,104,181,0.18);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form .btn { width: 100%; justify-content: center; margin-top: 22px; }

.map-wrap { margin-top: 60px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; filter: grayscale(35%); }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding: 190px 0 90px;
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(18, 104, 181, 0.16), transparent 60%),
    linear-gradient(180deg, #0d1724 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); margin: 8px 0 14px; }
.page-hero p { color: var(--muted-on-dark); max-width: 640px; font-size: 17.5px; }

.crumb { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-on-dark); }
.crumb a:hover { color: var(--gold-strong); }
.crumb .sep { margin: 0 8px; color: var(--gold); }

/* ---------- Process steps ---------- */

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  background: var(--paper); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-light); border: 1px solid rgba(90,115,140,0.16);
  position: relative;
}
.step-num { font-family: var(--font-head); font-size: 44px; color: rgba(18,104,181,0.4); font-weight: 700; line-height: 1; margin-bottom: 14px; }
.step h3 { font-size: 18px; margin-bottom: 8px; color: #152230; }
.step p { font-size: 14px; color: var(--muted-on-light); }

/* ---------- Footer ---------- */

.site-footer { background: #081018; border-top: 1px solid var(--line); padding: 74px 0 0; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 54px; }

.footer-brand p { color: var(--muted-on-dark); font-size: 14.5px; margin-top: 16px; max-width: 300px; }

.footer-col h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col li { color: var(--muted-on-dark); font-size: 14.5px; }
.footer-col a:hover { color: var(--gold-strong); }

.social-row { display: flex; gap: 12px; margin-top: 22px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--gold-soft); font-size: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-row a:hover { background: rgba(18,104,181,0.15); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--muted-on-dark);
}

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6, 10, 16, 0.93);
  display: none; align-items: center; justify-content: center;
  padding: 5vh 5vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 10px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 22px; right: 28px;
  background: none; border: none; color: #fff; font-size: 38px; cursor: pointer; line-height: 1;
}

/* ---------- "Looking for" category tiles ---------- */

.lookfor-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }

.look-tile {
  background: var(--paper);
  border: 1px solid rgba(90,115,140,0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  padding: 28px 14px;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  display: block;
}
.look-tile:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow); }

/* Hover: the hovered tile pops up, its neighbours shrink and fade */
@media (hover: hover) {
  .lookfor-grid:hover .look-tile { transform: scale(0.93); opacity: 0.55; }
  .lookfor-grid .look-tile:hover { transform: scale(1.08) translateY(-8px); opacity: 1; border-color: var(--gold); box-shadow: var(--shadow); z-index: 2; }
  .look-tile { position: relative; }

  .steps-grid:hover .step { transform: scale(0.94); opacity: 0.55; }
  .steps-grid .step:hover { transform: scale(1.06) translateY(-6px); opacity: 1; box-shadow: var(--shadow); z-index: 2; }
}
.step { transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease; }
.look-tile { transition: transform 0.25s ease, opacity 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.look-tile .service-icon { margin: 0 auto 14px; }
.look-tile b { display: block; font-size: 15px; color: #152230; }
.look-tile span { font-size: 12.5px; color: var(--muted-on-light); }

/* ---------- FAQ accordion ---------- */

.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }

.faq-item {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: var(--gold); }

.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 16.5px; font-weight: 600; text-align: left;
  color: var(--text-on-dark);
}
.faq-q .faq-arrow { color: var(--gold-strong); font-size: 20px; transition: transform 0.25s ease; flex: none; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 24px 22px; font-size: 15px; color: var(--muted-on-dark); }

.section-light .faq-item { background: var(--paper); border-color: rgba(90,115,140,0.2); box-shadow: var(--shadow-light); }
.section-light .faq-q { color: #152230; }
.section-light .faq-a p { color: var(--muted-on-light); }

/* ---------- Comparison table ---------- */

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }

.compare-table { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--coal-2); }
.compare-table th, .compare-table td { padding: 18px 20px; text-align: left; font-size: 14.5px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.compare-table thead th {
  background: rgba(18,104,181,0.1);
  font-family: var(--font-head); font-size: 17px; color: var(--gold-soft);
  border-bottom: 1px solid var(--line);
}
.compare-table tbody th { color: var(--gold); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.compare-table td { color: var(--muted-on-dark); }
.compare-table .col-own { background: rgba(18,104,181,0.06); }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: none; }

/* ---------- Area chips ---------- */

.chips-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--coal-2);
  color: var(--gold-soft);
  font-size: 14px; font-weight: 500;
}
.section-light .chip { background: var(--paper); color: #3d4b59; border-color: rgba(90,115,140,0.25); box-shadow: var(--shadow-light); }

/* ---------- Package cards ---------- */

.pkg-card { position: relative; display: flex; flex-direction: column; }
.pkg-card .pkg-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #ffffff; font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px; white-space: nowrap;
}
.pkg-card ul { margin: 18px 0 26px; display: grid; gap: 10px; }
.pkg-card ul li { font-size: 14.5px; color: var(--muted-on-dark); display: flex; gap: 10px; }
.pkg-card ul li::before { content: "✓"; color: var(--gold); font-weight: 700; }
.section-light .pkg-card ul li { color: var(--muted-on-light); }
.pkg-card .btn { margin-top: auto; justify-content: center; }

/* ---------- Highlight band ---------- */

.insight-band {
  background:
    radial-gradient(800px 350px at 85% 15%, rgba(18,104,181,0.2), transparent 60%),
    var(--coal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
}
.insight-band .split { align-items: center; }
.insight-num { font-family: var(--font-head); font-size: clamp(60px, 8vw, 110px); font-weight: 700; color: var(--gold-strong); line-height: 1; }
.insight-num small { display: block; font-family: var(--font-body); font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-on-dark); margin-top: 12px; }

/* ---------- Office gallery ---------- */

.office-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.office-grid img {
  width: 100%; height: 340px; object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.office-grid img:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

@media (max-width: 1000px) { .office-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .office-grid { grid-template-columns: 1fr; } .office-grid img { height: 300px; } }

/* ---------- Reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .cards-grid, .projects-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .lookfor-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .project-detail { grid-template-columns: 1fr; }
  .project-detail.flip .pd-media { order: 0; }
  .split-media .media-frame { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed; inset: 0 0 auto 0; top: 70px;
    background: rgba(11, 17, 25, 0.98);
    flex-direction: column; align-items: flex-start;
    padding: 28px 6vw 34px; gap: 22px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform 0.3s ease;
  }
  .main-nav.open { transform: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .cards-grid, .projects-grid, .testi-grid, .why-grid, .form-grid, .steps-grid { grid-template-columns: 1fr; }
  .lookfor-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid .full { grid-column: auto; }
  .section { padding: 72px 0; }
  .hero { padding-top: 130px; }
  .experience-chip { left: 10px; }
  .split-media img { height: 340px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .cta-row { flex-direction: column; align-items: flex-start; }
}
