/* =========================================================
   Adelaide Budget Removals — conversion rebuild
   Results Media
   ========================================================= */

:root {
  /* Brand */
  --navy-900: #071E34;
  --navy-800: #0A2A48;
  --navy:     #0B2E4F;
  --navy-700: #103E69;
  --navy-600: #16507F;

  --orange:     #FF6B1A;
  --orange-600: #EE5C0C;
  --orange-50:  #FFF2E9;

  --ink:    #0F1C2B;
  --slate:  #50607420;
  --text:   #243443;
  --muted:  #64748B;

  --bg:      #FFFFFF;
  --bg-soft: #F4F8FC;
  --bg-card: #FFFFFF;
  --line:    #E4ECF4;

  --green: #16A34A;
  --gold:  #FFB400;

  /* System */
  --radius:    16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(11,46,79,.06);
  --shadow:    0 12px 30px -10px rgba(11,46,79,.18);
  --shadow-lg: 0 30px 60px -18px rgba(11,46,79,.32);
  --maxw: 1180px;
  --gap: clamp(16px, 4vw, 28px);

  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--orange);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  padding: 15px 26px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--b); color: #fff; line-height: 1;
  box-shadow: 0 10px 22px -8px rgba(255,107,26,.6);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(255,107,26,.7); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 18px 34px; font-size: 1.12rem; }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; box-shadow: none; border: 1.5px solid rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.2); }
.btn--navy { background: var(--navy); box-shadow: 0 10px 22px -10px rgba(11,46,79,.6); }
.btn--navy:hover { background: var(--navy-700); }
.btn--block { width: 100%; }
.btn svg { width: 20px; height: 20px; }

.link-arrow { font-family: var(--font-head); font-weight: 700; color: var(--orange-600); display: inline-flex; align-items: center; gap: .4em; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .15s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-head); font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; font-size: .78rem; color: var(--orange-600);
}
.eyebrow--light { color: #FFC8A6; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }
.pad { padding: clamp(64px, 9vw, 110px) 0; }
.pad-sm { padding: clamp(48px, 7vw, 80px) 0; }
.bg-soft { background: var(--bg-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: box-shadow .2s, border-color .2s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  background: linear-gradient(135deg, var(--navy-700), var(--navy));
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-name { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 1.06rem; line-height: 1.05; letter-spacing: -.02em; }
.brand-name span { display: block; font-size: .68rem; font-weight: 600; color: var(--orange-600); letter-spacing: .02em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--ink); padding: 9px 13px; border-radius: 9px; transition: color .15s, background .15s; }
.nav a:hover { color: var(--orange-600); background: var(--orange-50); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1rem; }
.header-phone svg { width: 18px; height: 18px; color: var(--orange-600); }
.header-phone small { display:block; font-size:.62rem; font-weight:600; color: var(--muted); letter-spacing:.04em; text-transform:uppercase; }
.nav-toggle { display: none; background: var(--navy); border: 0; width: 46px; height: 46px; border-radius: 12px; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:""; display:block; width: 20px; height: 2px; background:#fff; margin: 0 auto; border-radius:2px; position: relative; transition: .2s; }
.nav-toggle span::before { position:absolute; top:-6px; } .nav-toggle span::after { position:absolute; top:6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top:0; transform: rotate(45deg); }
.nav-toggle.open span::after { top:0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #EaF2Fb; isolation: isolate;
  background:
    radial-gradient(1100px 500px at 78% -8%, rgba(255,107,26,.28), transparent 60%),
    radial-gradient(900px 600px at 8% 110%, rgba(22,80,127,.55), transparent 55%),
    linear-gradient(160deg, var(--navy-900), var(--navy) 55%, var(--navy-800));
  overflow: hidden;
}
.hero::before {
  content:""; position:absolute; inset:0; z-index:-1; opacity:.5;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
          mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 8vw, 96px);
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5.2vw, 3.5rem); font-weight: 800; margin-bottom: .35em; }
.hero h1 .hl { color: var(--orange); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.22rem); color: #C6D6E6; max-width: 540px; margin-bottom: 28px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px 14px; margin-bottom: 30px; }
.chip { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 600; color: #DCE8F4; }
.chip svg { width: 18px; height: 18px; color: #4ADE80; flex: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trustline { margin-top: 26px; display:flex; align-items:center; gap: 12px; color:#AEC2D6; font-size:.92rem; }
.stars { display:inline-flex; gap:2px; color: var(--gold); }
.stars svg { width:17px; height:17px; }

/* Quote form card */
.quote-card {
  background: #fff; color: var(--text); border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.6); position: relative;
}
.quote-card::before {
  content: "60-SEC QUOTE"; position:absolute; top:-13px; right: 22px;
  background: var(--orange); color:#fff; font-family: var(--font-head); font-weight:800;
  font-size:.66rem; letter-spacing:.08em; padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 8px 16px -6px rgba(255,107,26,.7);
}
.quote-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.quote-card .sub { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { margin-bottom: 12px; }
.field label { display:block; font-size:.78rem; font-weight:700; color: var(--ink); font-family: var(--font-head); margin-bottom: 5px; letter-spacing:.01em; }
.field input, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .98rem; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 14px center; padding-right: 38px; }
.field input:focus, .field select:focus { outline: 0; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-50); }
.form-note { text-align:center; font-size:.84rem; color: var(--muted); margin-top: 12px; }
.form-note svg { width:14px;height:14px;color:var(--green);vertical-align:-2px;margin-right:3px;}
.form-success { display:none; text-align:center; padding: 24px 8px; }
.form-success.show { display:block; }
.form-success .tick { width:64px;height:64px;border-radius:50%;background:var(--orange-50);display:grid;place-items:center;margin:0 auto 14px;}
.form-success .tick svg { width:34px;height:34px;color:var(--green);}
.form-success h3 { color: var(--ink); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.06); }
.trust-strip .container { display:flex; flex-wrap:wrap; justify-content:center; gap: 14px 38px; padding: 20px 0; }
.trust-item { display:inline-flex; align-items:center; gap:9px; color:#BBD0E4; font-family:var(--font-head); font-weight:600; font-size:.95rem; }
.trust-item svg { width:20px;height:20px;color:var(--orange); flex:none; }

/* ---------- Services ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #D4E2EF; }
.card-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--orange-50); display:grid; place-items:center; margin-bottom: 18px; }
.card-icon svg { width: 28px; height: 28px; color: var(--orange-600); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .97rem; flex: 1; }
.card .link-arrow { margin-top: 14px; }

/* ---------- Why us ---------- */
.why-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why {
  display:flex; gap: 16px; padding: 24px; border-radius: var(--radius);
  background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-sm);
}
.why-ic { width:48px;height:48px;border-radius:12px;flex:none; background: linear-gradient(135deg,var(--navy-700),var(--navy)); display:grid;place-items:center; }
.why-ic svg { width:24px;height:24px;color:#fff; }
.why h3 { font-size:1.08rem; margin-bottom:5px; }
.why p { margin:0; color: var(--muted); font-size:.95rem; }

/* ---------- Steps ---------- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; counter-reset: step; }
.step { position:relative; padding: 32px 26px; background:#fff; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-num { font-family:var(--font-head); font-weight:800; font-size: 2.6rem; color: var(--orange); opacity:.25; line-height:1; }
.step h3 { margin: 6px 0 8px; }
.step p { margin:0; color: var(--muted); font-size:.97rem; }

/* ---------- Pricing / promise band ---------- */
.promise {
  background:
    radial-gradient(700px 400px at 90% 10%, rgba(255,107,26,.22), transparent 60%),
    linear-gradient(155deg, var(--navy), var(--navy-800));
  color:#fff; border-radius: var(--radius-lg); overflow:hidden; position:relative;
}
.promise-inner { display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,5vw,56px); align-items:center; padding: clamp(36px,5vw,60px); }
.promise h2 { color:#fff; }
.promise p { color:#C6D6E6; }
.promise-list { list-style:none; padding:0; margin: 18px 0 0; display:grid; gap: 12px; }
.promise-list li { display:flex; gap:11px; align-items:flex-start; color:#E3EDF7; font-weight:500; }
.promise-list svg { width:22px;height:22px;color:#4ADE80;flex:none; }
.promise-card { background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 28px; text-align:center; backdrop-filter: blur(4px); }
.promise-card .big { font-family:var(--font-head); font-weight:800; font-size: 2.6rem; color:#fff; line-height:1; }
.promise-card .big span { color: var(--orange); }
.promise-card p { margin:.6em 0 18px; font-size:.96rem; }

/* ---------- Reviews ---------- */
.reviews-wrap { display:grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items:stretch; }
.review-feature {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px);
  box-shadow: var(--shadow); position:relative;
}
.review-feature .quote-mark { font-family: var(--font-head); font-size: 5rem; color: var(--orange-50); line-height:.7; position:absolute; top: 24px; right: 30px; }
.review-feature .stars { margin-bottom: 16px; }
.review-feature blockquote { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.2rem,2.4vw,1.6rem); color: var(--ink); line-height: 1.35; margin: 0 0 22px; letter-spacing:-.01em; }
.review-author { display:flex; align-items:center; gap: 13px; }
.review-author .av { width:48px;height:48px;border-radius:50%; background: linear-gradient(135deg,var(--orange),#FF9A5A); display:grid;place-items:center; color:#fff; font-family:var(--font-head); font-weight:800; font-size:1.1rem; }
.review-author b { font-family:var(--font-head); color: var(--ink); display:block; }
.review-author small { color: var(--muted); }
.google-card { background: var(--bg-soft); border:1px dashed #C9D8E6; border-radius: var(--radius); padding: 28px; display:flex; flex-direction:column; justify-content:center; text-align:center; }
.google-card .glogo { font-family:var(--font-head); font-weight:800; font-size:1.5rem; margin-bottom:6px; letter-spacing:-.02em;}
.google-card .glogo b:nth-child(1){color:#4285F4}.google-card .glogo b:nth-child(2){color:#EA4335}.google-card .glogo b:nth-child(3){color:#FBBC05}.google-card .glogo b:nth-child(4){color:#4285F4}.google-card .glogo b:nth-child(5){color:#34A853}.google-card .glogo b:nth-child(6){color:#EA4335}
.google-card p { color: var(--muted); font-size:.95rem; }

/* ---------- Areas ---------- */
.areas-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(170px,1fr)); gap: 10px; margin-top: 8px; }
.area-pill { display:flex; align-items:center; gap:8px; padding: 11px 16px; background:#fff; border:1px solid var(--line); border-radius: 999px; font-weight:600; font-size:.93rem; color: var(--ink); box-shadow: var(--shadow-sm); }
.area-pill svg { width:15px;height:15px;color:var(--orange-600); flex:none; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin-inline:auto; display:grid; gap: 12px; }
.faq-item { background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); overflow:hidden; transition: box-shadow .15s, border-color .15s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color:#D4E2EF; }
.faq-item summary { list-style:none; cursor:pointer; padding: 19px 22px; font-family:var(--font-head); font-weight:700; color: var(--ink); font-size:1.06rem; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary .ic { width:26px;height:26px;border-radius:50%;background:var(--orange-50);display:grid;place-items:center;flex:none;transition:transform .2s;}
.faq-item summary .ic svg { width:15px;height:15px;color:var(--orange-600);}
.faq-item[open] summary .ic { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--muted); }
.faq-item .faq-body p { margin:0; }

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(160deg, var(--navy-900), var(--navy)); color:#fff; text-align:center; }
.final-cta h2 { color:#fff; }
.final-cta p { color:#C6D6E6; max-width: 560px; margin: 0 auto 28px; font-size:1.1rem; }
.final-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color:#9FB4C8; padding: 60px 0 30px; font-size:.95rem; }
.footer-grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer h4 { color:#fff; font-size:.95rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:16px; }
.footer a:hover { color:#fff; }
.footer ul { list-style:none; padding:0; margin:0; display:grid; gap:9px; }
.footer .brand-name, .footer .brand-name span { color:#fff; }
.footer .f-about { margin-top:16px; max-width: 300px; }
.f-contact li { display:flex; gap:10px; align-items:flex-start; }
.f-contact svg { width:17px;height:17px;color:var(--orange);flex:none;margin-top:3px;}
.footer-bottom { display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; padding-top:24px; font-size:.86rem; color:#6E869C; }
.footer-bottom a { color:#9FB4C8; }

/* ---------- Sticky mobile bar ---------- */
.mobile-bar { display:none; position:fixed; bottom:0; left:0; right:0; z-index:70; background:#fff; border-top:1px solid var(--line); padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap:10px; box-shadow: 0 -8px 24px -12px rgba(11,46,79,.35); }
.mobile-bar .btn { flex:1; }
.mobile-bar .call-ic { width:54px; flex:none; background:var(--navy); display:grid;place-items:center;border-radius:999px; }
.mobile-bar .call-ic svg { width:22px;height:22px;color:#fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity:0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity:1; transform:none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 620px; }
  .cards { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-wrap { grid-template-columns: 1fr; }
  .promise-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav, .header-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background:#fff; padding: 14px; gap: 4px; box-shadow: var(--shadow); border-bottom: 1px solid var(--line); }
  .nav.open a { padding: 13px; font-size: 1.05rem; }
  .steps { grid-template-columns: 1fr; }
  .mobile-bar { display:flex; }
  body { padding-bottom: 78px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .header-cta .btn { padding: 12px 18px; font-size: .95rem; }
}
@media (max-width: 460px) {
  .cards, .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity:1; transform:none; transition:none; }
}
