/* ─── TOKENS ─────────────────────────────────── */
:root {
  --blue:       #2563EB;
  --blue-dark:  #1D4ED8;
  --blue-light: #EFF6FF;
  --blue-mid:   #BFDBFE;
  --ink:        #0F172A;
  --ink-2:      #334155;
  --muted:      #64748B;
  --border:     #E2E8F0;
  --bg:         #FFFFFF;
  --bg-soft:    #F8FAFC;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --font-d: 'Bricolage Grotesque', sans-serif;
  --font-b: 'Figtree', sans-serif;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body { font-family:var(--font-b); background:var(--bg); color:var(--ink); line-height:1.6; -webkit-font-smoothing:antialiased; }
a { text-decoration:none; color:inherit; }
img { display:block; max-width:100%; }
svg { display:block; }

/* ─── ICON BADGE (square, rounded) ──────────── */
.icon-badge {
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-light);
  border-radius: 10px;
  flex-shrink: 0;
}
.icon-badge svg { color: var(--blue); }
.icon-badge.sm  { width:38px; height:38px; }
.icon-badge.md  { width:46px; height:46px; }
.icon-badge.lg  { width:54px; height:54px; }

/* dark variant for contact section */
.icon-badge.dark { background: rgba(37,99,235,0.18); }
.icon-badge.dark svg { color: #93C5FD; }
.icon-badge.green { background: rgba(34,197,94,0.12); }
.icon-badge.green svg { color: #4ADE80; }
.icon-badge.sky { background: rgba(56,189,248,0.12); }
.icon-badge.sky svg { color: #38BDF8; }
.icon-badge.amber { background: rgba(251,191,36,0.12); }
.icon-badge.amber svg { color: #FBBF24; }

/* ─── NAV ────────────────────────────────────── */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:64px;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 20px;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
}
.nav-logo {
  font-family:var(--font-d);
  font-size:1.25rem; font-weight:800;
  color:var(--ink); letter-spacing:-0.02em;
}
.nav-logo span { color:var(--blue); }
.nav-right { display:flex; align-items:center; gap:10px; }

.lang-switch {
  display:flex; gap:2px;
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:3px;
}
.lang-btn {
  font-family:var(--font-b);
  font-size:0.72rem; font-weight:600; letter-spacing:0.04em;
  padding:4px 9px; border:none; background:none; cursor:pointer;
  border-radius:5px; color:var(--muted); transition:all .18s;
}
.lang-btn.active { background:var(--blue); color:#fff; }
.lang-btn.inactive { cursor:default; opacity:0.4; }

.nav-cta {
  display:inline-flex; align-items:center; gap:7px;
  background:var(--blue); color:#fff;
  font-family:var(--font-b);
  font-size:0.84rem; font-weight:600;
  padding:9px 16px; border-radius:var(--radius-sm);
  transition:background .18s, transform .15s; white-space:nowrap;
}
.nav-cta:hover { background:var(--blue-dark); transform:translateY(-1px); }
.nav-cta-label { display:none; }
@media (min-width:768px) { .nav-cta-label { display:inline; } }

.nav-links { display:none; }
@media (min-width:768px) {
  .nav { padding:0 40px; }
  .nav-links {
    display:flex; gap:28px;
    font-size:0.9rem; font-weight:500; color:var(--ink-2);
  }
  .nav-links a { transition:color .18s; }
  .nav-links a:hover { color:var(--blue); }
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  padding:96px 20px 56px;
  background:var(--bg); position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; top:-60px; right:-80px;
  width:480px; height:480px;
  background:radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events:none;
}
.hero-inner {
  position:relative; z-index:1;
  display:flex; flex-direction:column; gap:36px;
}

.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--blue-light); color:var(--blue);
  font-size:0.75rem; font-weight:600;
  letter-spacing:0.04em; text-transform:uppercase;
  padding:5px 12px; border-radius:100px;
  border:1px solid var(--blue-mid); width:fit-content;
  animation:fadeUp .4s ease both;
}
.hero-text { animation:fadeUp .4s .08s ease both; }
.hero h1 {
  font-family:var(--font-d);
  font-size:clamp(2.2rem, 8vw, 3.6rem);
  font-weight:800; line-height:1.08;
  letter-spacing:-0.03em; color:var(--ink);
  margin-bottom:16px;
}
.hero h1 .accent { color:var(--blue); }
.hero-sub {
  font-size:1.05rem; color:var(--muted);
  line-height:1.7; max-width:480px; margin-bottom:28px;
}
.hero-btns { display:flex; flex-wrap:wrap; gap:10px; }

.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--blue); color:#fff;
  font-family:var(--font-b);
  font-size:0.97rem; font-weight:600;
  padding:13px 22px; border-radius:var(--radius-sm);
  transition:background .18s, transform .15s;
}
.btn-primary:hover { background:var(--blue-dark); transform:translateY(-2px); }

.btn-outline {
  display:inline-flex; align-items:center; gap:8px;
  background:#fff; color:var(--ink);
  font-family:var(--font-b);
  font-size:0.97rem; font-weight:600;
  padding:13px 22px; border-radius:var(--radius-sm);
  border:1.5px solid var(--border);
  transition:border-color .18s, transform .15s;
}
.btn-outline:hover { border-color:var(--blue); transform:translateY(-2px); }

.hero-photo { animation:fadeUp .4s .18s ease both; }
.photo-placeholder {
  width:100%; max-width:340px; aspect-ratio:3/4;
  background:var(--bg-soft);
  border:2px dashed var(--border);
  border-radius:var(--radius-lg);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:12px; color:var(--muted); font-size:0.82rem;
}
.photo-placeholder strong { font-weight:600; color:var(--ink-2); font-size:0.9rem; }

@media (min-width:768px) {
  .hero { padding:112px 40px 72px; }
  .hero-inner { flex-direction:row; align-items:center; gap:60px; }
  .hero-text { flex:1; }
  .hero-photo { flex-shrink:0; width:300px; }
  .photo-placeholder { max-width:300px; }
}
@media (min-width:1024px) {
  .hero { padding:120px 80px 80px; }
  .hero-photo { width:340px; }
}

/* ─── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background:var(--bg-soft);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:18px 20px;
}
.trust-items {
  display:flex; flex-wrap:wrap;
  gap:12px 28px;
  justify-content:center; align-items:center;
}
.trust-item {
  display:flex; align-items:center; gap:8px;
  font-size:0.82rem; font-weight:500; color:var(--ink-2);
  white-space:nowrap;
}
.trust-item svg { color:var(--blue); flex-shrink:0; }

@media (min-width:768px) { .trust-bar { padding:18px 40px; } }

/* ─── SECTION SHARED ─────────────────────────── */
.section { padding:64px 20px; }
.section-alt { background:var(--bg-soft); }
.section-label {
  font-size:0.72rem; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase;
  color:var(--blue); margin-bottom:8px;
}
.section-title {
  font-family:var(--font-d);
  font-size:clamp(1.7rem, 5vw, 2.4rem);
  font-weight:800; letter-spacing:-0.025em;
  color:var(--ink); line-height:1.15; margin-bottom:12px;
}
.section-body {
  font-size:1rem; color:var(--muted);
  line-height:1.7; max-width:520px;
}
.section-head { margin-bottom:40px; }

@media (min-width:768px)  { .section { padding:80px 40px; } }
@media (min-width:1024px) { .section { padding:96px 80px; } }

/* ─── SERVICES ───────────────────────────────── */
.services-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}
@media (min-width:640px)  { .services-grid { gap:20px; } }
@media (min-width:1024px) { .services-grid { grid-template-columns:repeat(4,1fr); } }

.svc-card {
  background:var(--bg);
  border:1.5px solid var(--border);
  border-radius:var(--radius-md);
  padding:24px 20px;
  display:flex; flex-direction:column; gap:12px;
  transition:border-color .2s, box-shadow .2s, transform .2s;
}
.svc-card:hover {
  border-color:var(--blue);
  box-shadow:0 8px 32px rgba(37,99,235,0.10);
  transform:translateY(-3px);
}
.svc-card h3 {
  font-family:var(--font-d);
  font-size:1rem; font-weight:700;
  color:var(--ink); line-height:1.3;
}
.svc-card p { font-size:0.84rem; color:var(--muted); line-height:1.6; flex:1; }
.svc-link {
  display:inline-flex; align-items:center; gap:5px;
  font-size:0.8rem; font-weight:600; color:var(--blue); margin-top:4px;
}
.svc-link svg { transition:transform .18s; }
.svc-card:hover .svc-link svg { transform:translateX(3px); }

/* ─── WHY US ─────────────────────────────────── */
.why-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:24px;
}
@media (min-width:1024px) { .why-grid { grid-template-columns:repeat(4,1fr); gap:28px; } }

.why-card { display:flex; flex-direction:column; gap:10px; }
.why-card h4 {
  font-family:var(--font-d);
  font-size:0.97rem; font-weight:700; color:var(--ink);
}
.why-card p { font-size:0.85rem; color:var(--muted); line-height:1.6; }

/* ─── HOW IT WORKS ───────────────────────────── */
.steps { display:flex; flex-direction:column; gap:0; }
.step {
  display:flex; gap:20px;
  padding:28px 0; border-bottom:1px solid var(--border);
}
.step:last-child { border-bottom:none; }
.step-num {
  font-family:var(--font-d);
  font-size:2rem; font-weight:800;
  color:var(--blue-mid); line-height:1;
  min-width:40px; letter-spacing:-0.04em;
}
.step h4 {
  font-family:var(--font-d);
  font-size:1.05rem; font-weight:700;
  color:var(--ink); margin-bottom:6px;
}
.step p { font-size:0.9rem; color:var(--muted); line-height:1.65; }

@media (min-width:768px) {
  .steps { flex-direction:row; }
  .step {
    flex-direction:column; gap:16px; flex:1;
    padding:0 32px 0 0;
    border-bottom:none; border-right:1px solid var(--border);
  }
  .step:last-child { border-right:none; padding-right:0; }
}

/* ─── ABOUT ──────────────────────────────────── */
.about-inner { display:flex; flex-direction:column; gap:36px; }
.about-photo-placeholder {
  width:100%; max-width:320px; aspect-ratio:4/5;
  background:var(--bg-soft);
  border:2px dashed var(--border);
  border-radius:var(--radius-lg);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:12px; color:var(--muted); text-align:center; padding:20px;
}
.about-photo-placeholder p { font-size:0.8rem; line-height:1.5; max-width:140px; }
.about-photo-placeholder strong { font-weight:600; color:var(--ink-2); font-size:0.9rem; }

.about-text { display:flex; flex-direction:column; gap:16px; }
.about-name {
  font-family:var(--font-d);
  font-size:1.6rem; font-weight:800;
  letter-spacing:-0.02em; color:var(--ink);
}
.about-title-tag {
  display:inline-block;
  background:var(--blue-light); color:var(--blue);
  font-size:0.78rem; font-weight:600;
  padding:4px 12px; border-radius:100px; margin-bottom:4px;
}
.about-p { font-size:0.95rem; color:var(--muted); line-height:1.75; }
.about-facts { display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.fact-pill {
  display:flex; align-items:center; gap:7px;
  background:var(--bg-soft); border:1px solid var(--border);
  border-radius:100px; padding:6px 14px;
  font-size:0.8rem; font-weight:500; color:var(--ink-2);
}
.fact-pill svg { color:var(--blue); flex-shrink:0; }

@media (min-width:768px) {
  .about-inner { flex-direction:row; align-items:flex-start; gap:60px; }
  .about-photo-wrap { flex-shrink:0; width:280px; }
  .about-text { flex:1; }
}
@media (min-width:1024px) { .about-photo-wrap { width:320px; } }

/* ─── CONTACT ────────────────────────────────── */
.contact-section { background:var(--ink); }
.contact-section .section-label { color:var(--blue-mid); }
.contact-section .section-title { color:#fff; }
.contact-section .section-body  { color:rgba(255,255,255,0.50); }

.contact-inner { display:flex; flex-direction:column; gap:40px; }
@media (min-width:768px) {
  .contact-inner { flex-direction:row; align-items:flex-start; gap:80px; }
}

.contact-cards { display:flex; flex-direction:column; gap:12px; max-width:440px; }
.contact-card {
  display:flex; align-items:center; gap:16px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.09);
  border-radius:var(--radius-md); padding:18px 20px;
  transition:background .18s, border-color .18s, transform .18s;
}
.contact-card:hover {
  background:rgba(37,99,235,0.16);
  border-color:rgba(37,99,235,0.45);
  transform:translateX(4px);
}
.contact-card strong { display:block; font-weight:600; color:#fff; font-size:0.93rem; margin-bottom:2px; }
.contact-card span   { font-size:0.82rem; color:rgba(255,255,255,0.40); }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background:#080F1E; padding:32px 20px;
  display:flex; flex-direction:column; gap:16px;
}
.footer-top { display:flex; flex-direction:column; gap:12px; }
.footer-logo { font-family:var(--font-d); font-size:1.15rem; font-weight:800; color:#fff; }
.footer-logo span { color:var(--blue); }
.footer-desc { font-size:0.8rem; color:rgba(255,255,255,0.30); max-width:360px; line-height:1.6; }
.footer-suburbs { font-size:0.72rem; color:rgba(255,255,255,0.15); line-height:1.7; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.07);
  padding-top:16px; font-size:0.75rem; color:rgba(255,255,255,0.22);
}
@media (min-width:768px) {
  .footer { padding:40px; }
  .footer-top { flex-direction:row; justify-content:space-between; align-items:flex-start; }
}

/* ─── BREADCRUMB ─────────────────────────────── */
.breadcrumb {
  padding: 72px 20px 0;
  background: var(--bg);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
}
.breadcrumb li + li::before {
  content: '›';
  margin: 0 8px;
  color: var(--border);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb li:last-child { color: var(--ink-2); }
.breadcrumb + section.hero { padding-top: 20px; }
.breadcrumb + section.section { padding-top: 24px; }

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.reveal { opacity:0; transform:translateY(20px); transition:opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity:1; transform:none; }
