/* ============================================
   FINANCE CRAFT — Redesigned 2026
   Modern, fresh mortgage broker website
   Palette: White / Orange (#F15A29) / Light Grey / Dark (minimal)
   Font: Roboto (Google Fonts)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Roboto', Arial, sans-serif; color: #4A5568; background: #fff; line-height: 1.75; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: #F15A29; text-decoration: none; transition: color .2s; }
a:hover { color: #D04B20; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: #1A202C; }
h1 { font-size: 3rem; margin-bottom: 1.25rem; }
h2 { font-size: 2.25rem; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: .65rem; }
h4 { font-size: 1.1rem; margin-bottom: .5rem; }
p { margin-bottom: 1rem; }

/* --- Design Tokens --- */
:root {
  --orange: #F15A29;
  --orange-dark: #D04B20;
  --orange-light: #FEF0EB;
  --orange-mid: #FDE8DF;
  --dark: #1A202C;
  --mid: #4A5568;
  --light-text: #718096;
  --border: #E2E8F0;
  --bg-section: #F8FAFB;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,.06);
  --shadow-hover: 0 12px 40px rgba(0,0,0,.1);
}

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-dark { color: var(--dark); }
.bg-section { background: var(--bg-section); }
.bg-white { background: var(--white); }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }

/* --- Eyebrow / Label --- */
.eyebrow {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* --- Buttons --- */
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: .95rem; text-align: center; cursor: pointer; transition: all .25s; border: 2px solid transparent; }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(241,90,41,.3); }
.btn-outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--orange); border-color: #fff; }
.btn-white:hover { background: var(--orange-light); transform: translateY(-1px); }
.btn-dark-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-dark-outline:hover { background: var(--dark); color: #fff; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn-lg { padding: 17px 42px; font-size: 1.05rem; }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 32px; }
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo img { height: 64px; width: auto; display: block; }
.logo-text { font-size: 1.5rem; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }
.logo-text span { color: var(--orange); }

/* Nav */
.nav-main { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; }
.nav-main > a, .nav-main .has-dropdown > a {
  padding: 8px 16px;
  color: #4A5568;
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .3px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-main > a:hover, .nav-main .has-dropdown > a:hover { color: var(--orange); background: var(--orange-light); }
.nav-main .has-dropdown { position: relative; }
.nav-main .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 8px;
  z-index: 100;
  border: 1px solid var(--border);
}
/* Invisible bridge fills the gap so hover isn't lost moving from button to menu */
.nav-main .dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-main .has-dropdown:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 9px 16px; color: #4A5568; font-size: .88rem; border-radius: 8px; transition: background .15s, color .15s; }
.dropdown a:hover { background: var(--orange-light); color: var(--orange); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.header-phone { font-weight: 700; font-size: .95rem; color: var(--dark); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.header-phone:hover { color: var(--orange); }
.header-phone svg { width: 16px; height: 16px; color: var(--orange); }
.header-cta { background: var(--orange); color: #fff !important; padding: 10px 22px; border-radius: 50px; font-weight: 600; font-size: .88rem; white-space: nowrap; }
.header-cta:hover { background: var(--orange-dark) !important; color: #fff !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(241,90,41,.3); }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--dark); padding: 4px; }

/* =============================================
   HERO — HOMEPAGE (Split Layout)
   ============================================= */
.hero-split {
  background: var(--bg-section);
  padding: 56px 0;
  overflow: hidden;
  position: relative;
}
.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.hero-content h1 .highlight { color: var(--orange); }
.hero-content .lead {
  font-size: 1.15rem;
  color: var(--mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow);
}
.trust-pill .stars { color: #F59E0B; font-size: .9rem; }
.trust-pill .g-dot { width: 16px; height: 16px; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%234285F4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="%2334A853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/><path fill="%23FBBC05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="%23EA4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/></svg>') center/contain no-repeat; }

/* Hero Image Panel */
.hero-image-panel { position: relative; }
.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--orange-mid);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--orange-mid) 0%, var(--orange-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--orange);
  font-size: .9rem;
  font-weight: 600;
  min-height: 380px;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-badge .badge-num { font-size: 1.8rem; font-weight: 800; color: var(--orange); line-height: 1; }
.hero-badge .badge-label { font-size: .8rem; color: var(--light-text); line-height: 1.4; font-weight: 500; }
.hero-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  background: var(--orange);
  border-radius: 16px;
  opacity: .15;
  z-index: 0;
}

/* =============================================
   SUB-HERO (inner pages)
   ============================================= */
.sub-hero {
  background: linear-gradient(135deg, #F8FAFB 0%, #fff 100%);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}
.sub-hero-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.sub-hero h1 { font-size: 2.4rem; margin-bottom: .5rem; color: var(--dark); }
.sub-hero .lead { font-size: 1.05rem; color: var(--mid); margin-bottom: 0; max-width: 600px; }
.sub-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs { padding: 12px 0; background: var(--bg-section); font-size: .82rem; border-bottom: 1px solid var(--border); }
.breadcrumbs a { color: var(--light-text); }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .sep { color: #CBD5E0; margin: 0 6px; }
.breadcrumbs .current { color: var(--orange); font-weight: 500; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar-section { background: var(--white); padding: 48px 0; border-bottom: 1px solid var(--border); }
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .stat-label { font-size: .88rem; color: var(--light-text); font-weight: 500; }

/* =============================================
   LENDER LOGOS / TRUST STRIP
   ============================================= */
.trust-strip { padding: 36px 0; background: var(--bg-section); border-bottom: 1px solid var(--border); }
.trust-strip-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.trust-strip-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--light-text); margin-right: 8px; }
.lender-logos { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.lender-logo { font-size: .8rem; font-weight: 700; color: #CBD5E0; letter-spacing: 1px; text-transform: uppercase; transition: color .2s; }
.lender-logo:hover { color: var(--mid); }

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: .5rem; }
.section-header p { font-size: 1.05rem; color: var(--mid); max-width: 560px; margin: 0 auto; }

/* =============================================
   CARDS
   ============================================= */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--orange-mid); }
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 1.4rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { color: var(--dark); margin-bottom: .5rem; font-size: 1.2rem; }
.card h3 a { color: var(--dark); }
.card h3 a:hover { color: var(--orange); }
.card p { color: var(--mid); font-size: .95rem; margin-bottom: 0; }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 600; font-size: .88rem; margin-top: 16px; }
.card .card-link:hover { gap: 10px; }

/* Service card variant */
.service-card { border-top: 3px solid transparent; }
.service-card:hover { border-top-color: var(--orange); }

/* =============================================
   HOW IT WORKS (Steps)
   ============================================= */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.6%;
  right: 16.6%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-mid), var(--orange), var(--orange-mid));
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px;
  height: 64px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(241,90,41,.3);
}
.step-item h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step-item p { font-size: .92rem; color: var(--mid); margin-bottom: 0; }

/* =============================================
   HOMEPAGE ABOUT — COMPACT HORIZONTAL
   ============================================= */
.about-compact { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; }
.about-compact-photo { text-align: center; flex-shrink: 0; }
.shane-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--orange-mid);
  margin: 0 auto 16px;
  border: 5px solid #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.shane-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.shane-circle-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 600;
  background: linear-gradient(160deg, var(--orange-light), var(--orange-mid));
  padding: 16px;
  text-align: center;
}
.shane-name-tag {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.shane-title-tag {
  font-size: .78rem;
  color: var(--light-text);
}

/* =============================================
   REVIEWS WIDGET PLACEHOLDER
   ============================================= */
.reviews-widget-placeholder {
  background: var(--bg-section);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
}
.reviews-widget-placeholder .widget-icon { font-size: 2.5rem; margin-bottom: 12px; }
.reviews-widget-placeholder h4 { color: var(--dark); margin-bottom: 8px; }
.reviews-widget-placeholder p { color: var(--mid); font-size: .92rem; max-width: 480px; margin: 0 auto 20px; }
.reviews-widget-placeholder .widget-steps { text-align: left; max-width: 420px; margin: 0 auto 20px; }
.reviews-widget-placeholder .widget-steps li { padding: 6px 0; color: var(--mid); font-size: .88rem; }
.reviews-widget-placeholder .widget-steps li::before { content: ''; }

/* =============================================
   ABOUT SECTION / BIO SPLIT
   ============================================= */
.about-split { display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: start; }
.about-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--orange-mid);
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(160deg, var(--orange-light) 0%, var(--orange-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem;
}
.about-accent-box {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--orange);
  color: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(241,90,41,.3);
}
.about-accent-box .num { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-accent-box .label { font-size: .82rem; opacity: .9; font-weight: 500; }
.about-credentials { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
}
.credential-badge .check { color: var(--orange); }
.mfaa-badge { max-width: 100px; height: auto; }
.mfaa-badge-placeholder {
  width: 100px;
  height: 100px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--orange);
  text-align: center;
  line-height: 1.3;
}

/* =============================================
   GOOGLE REVIEWS / TESTIMONIALS
   ============================================= */
.reviews-section { }
.reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: var(--shadow);
}
.google-rating-badge .g-logo { width: 26px; height: 26px; }
.google-rating-badge .rating-num { font-size: 1.4rem; font-weight: 800; color: var(--dark); line-height: 1; }
.google-rating-badge .rating-details { line-height: 1.4; }
.google-rating-badge .stars { color: #F59E0B; font-size: .85rem; }
.google-rating-badge .count { font-size: .75rem; color: var(--light-text); }

/* ── Reviews carousel wrapper ───────────────────────────────────────────── */
.reviews-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-carousel {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.reviews-track .review-card {
  flex-shrink: 0;
  /* width set dynamically by JS based on viewport */
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--dark);
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.carousel-btn:hover:not(:disabled) {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(241,90,41,.28);
}
.carousel-btn:disabled { opacity: .3; cursor: default; }
.carousel-btn svg { pointer-events: none; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E0;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s, transform .2s, width .2s;
}
.carousel-dot.active {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
}

/* ── Review cards — clean Google-branded style ──────────────────────────── */
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 8px 28px rgba(0,0,0,.05);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.review-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.09), 0 20px 48px rgba(0,0,0,.07);
  transform: translateY(-4px);
}
/* Google 4-colour gradient accent bar at top of each card */
.review-card::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
  flex-shrink: 0;
}
.review-card-body {
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.review-card .review-stars {
  color: #F9A825;
  font-size: 1.05rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1;
}
.review-card .review-text {
  color: #4A5568;
  font-size: .9rem;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 0;
  font-style: normal;
}
.review-card .review-text.expanded { display: block; -webkit-line-clamp: unset; }
.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #F0F2F5;
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #E8F0FE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a73e8;
  font-size: .95rem;
  flex-shrink: 0;
}
.reviewer-avatar img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.reviewer-name { font-weight: 600; font-size: .88rem; color: #1A202C; line-height: 1.3; }
.reviewer-date { font-size: .76rem; color: #9AA5B4; margin-top: 1px; }
.reviews-cta { text-align: center; margin-top: 36px; }

/* Read more / less toggle */
.read-more-btn {
  background: none;
  border: none;
  color: #1a73e8;
  font-size: .82rem;
  cursor: pointer;
  padding: 4px 0 0;
  font-family: inherit;
  display: inline-block;
}
.read-more-btn:hover { text-decoration: underline; }

/* Elfsight widget container */
.elfsight-widget-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* =============================================
   TESTIMONIAL (alternate style)
   ============================================= */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
}
.testimonial-card p { font-style: italic; color: var(--mid); margin-bottom: 16px; }
.testimonial-card .author { font-weight: 700; font-size: .9rem; color: var(--dark); }
.testimonial-card .location { font-size: .82rem; color: var(--light-text); }

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .88rem; color: var(--dark); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  color: var(--dark);
  background: #fff;
}
.form-control:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(241,90,41,.1); }
textarea.form-control { resize: vertical; min-height: 130px; }

.enquiry-box { background: var(--bg-section); border-radius: 20px; padding: 40px; border: 1px solid var(--border); }
.enquiry-box h3 { margin-bottom: 6px; }
.enquiry-box p { color: var(--mid); font-size: .92rem; margin-bottom: 24px; }
.enquiry-box .btn-primary { width: 100%; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #E04515 100%);
  color: #fff;
  text-align: center;
  padding: 88px 0;
}
.cta-section h2 { color: #fff; font-size: 2.4rem; margin-bottom: .75rem; }
.cta-section p { font-size: 1.1rem; opacity: .9; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white-solid { background: #fff; color: var(--orange); border: 2px solid #fff; border-radius: 50px; padding: 15px 36px; font-weight: 700; font-size: 1rem; transition: all .25s; }
.btn-white-solid:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.15); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); border-radius: 50px; padding: 15px 36px; font-weight: 600; font-size: 1rem; transition: all .25s; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; transform: translateY(-2px); }

/* =============================================
   TWO COLUMN LAYOUT
   ============================================= */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.two-col-content { }
.two-col-sidebar { position: sticky; top: 96px; }

/* =============================================
   SERVICE LIST
   ============================================= */
.service-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--mid);
  font-size: .95rem;
}
.service-list li::before {
  content: '';
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: var(--orange-light);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23F15A29' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-list li:last-child { border-bottom: none; }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  gap: 12px;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background .2s;
}
.faq-question::after { content: '+'; font-size: 1.3rem; color: var(--orange); font-weight: 400; flex-shrink: 0; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 0 20px; color: var(--mid); line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 500px; }

/* =============================================
   MAP
   ============================================= */
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.map-container iframe { width: 100%; height: 400px; border: 0; }

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-img { height: 200px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 2.5rem; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card .category {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--orange); }
.blog-card .date { font-size: .8rem; color: var(--light-text); }

/* =============================================
   CONTACT INFO BOXES
   ============================================= */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-info-card .icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--orange);
}
.contact-info-card h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--light-text); margin-bottom: 8px; }
.contact-info-card p { color: var(--dark); font-weight: 600; font-size: 1rem; margin-bottom: 0; }
.contact-info-card a { color: var(--dark); font-weight: 600; }
.contact-info-card a:hover { color: var(--orange); }

/* =============================================
   CALCULATOR
   ============================================= */
.calc-container { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.calc-input-group { margin-bottom: 20px; }
.calc-input-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: .9rem; color: var(--dark); }
.calc-input-group input[type="number"],
.calc-input-group input[type="range"],
.calc-input-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 1rem; font-family: inherit; color: var(--dark); }
.calc-input-group input[type="number"]:focus,
.calc-input-group select:focus { outline: none; border-color: var(--orange); }
.calc-result { background: var(--orange-light); border-radius: 14px; padding: 28px; text-align: center; margin-top: 28px; }
.calc-result .result-amount { font-size: 2.4rem; font-weight: 800; color: var(--orange); }
.calc-result .result-label { font-size: .88rem; color: var(--mid); }
input[type="range"] { -webkit-appearance: none; height: 6px; background: var(--border); border-radius: 3px; outline: none; border: none; padding: 0; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; background: var(--orange); border-radius: 50%; cursor: pointer; box-shadow: 0 2px 8px rgba(241,90,41,.3); }

/* =============================================
   SUBURB STATS
   ============================================= */
.suburb-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.suburb-stat { background: var(--bg-section); border-radius: 12px; padding: 24px; text-align: center; border: 1px solid var(--border); }
.suburb-stat .value { font-size: 1.8rem; font-weight: 800; color: var(--orange); display: block; }
.suburb-stat .label { font-size: .82rem; color: var(--light-text); }

/* =============================================
   FOOTER
   ============================================= */
.footer-main { background: var(--bg-section); border-top: 1px solid var(--border); padding: 40px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand p { color: var(--light-text); font-size: .9rem; line-height: 1.75; margin-top: 16px; margin-bottom: 20px; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--dark); margin-bottom: 18px; font-weight: 700; }
.footer-col a { display: block; color: var(--light-text); padding: 4px 0; font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.social-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: .9rem;
  transition: all .2s;
}
.social-icon:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer-badges { display: flex; align-items: center; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.footer-bottom { background: var(--dark); color: #94A3B8; padding: 14px 0; font-size: .82rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: #94A3B8; margin-left: 20px; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { padding: 8px 0; font-size: .75rem; color: #64748B; line-height: 1.6; text-align: left; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-split-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 36px; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-split-inner { grid-template-columns: 1fr; }
  .hero-image-panel { order: -1; }
  .hero-badge { bottom: -12px; right: -8px; }
  .about-split { grid-template-columns: 1fr; }
  .about-accent-box { left: 16px; }
  .about-compact { grid-template-columns: 1fr; text-align: center; }
  .about-compact-photo { margin: 0 auto; }
  .nav-main { display: none; }
  .mobile-toggle { display: block; }
  .header-right { gap: 12px; }
  .header-phone { display: none; }
  .nav-main.open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,.12);
    z-index: 999;
    border-bottom: 1px solid var(--border);
  }
  .nav-main.open .has-dropdown { border-bottom: 1px solid var(--border); padding-bottom: 10px; margin-bottom: 6px; }
  .nav-main.open .has-dropdown > a { padding: 10px 16px; }
  .nav-main.open .has-dropdown .dropdown { position: static; box-shadow: none; padding-left: 16px; border: none; background: transparent; min-width: unset; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .card-grid, .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-sidebar { position: static; }
  .blog-grid { grid-template-columns: 1fr; }
  .sub-hero-inner { flex-direction: column; }
  .cta-section { padding: 60px 0; }
  .cta-section h2 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .section { padding: 56px 0; }
  .suburb-stats { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  h1 { font-size: 1.9rem; }
  .hero-content h1 { font-size: 2rem; }
  .btn-lg { padding: 14px 28px; font-size: 1rem; }
  .btn { padding: 12px 24px; }
}
