/* Raymond Partners — Shared Styles
   Brand: #003c78 (navy blue) | Tradie4 reference adaptation */

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

:root {
  --brand: #003c78;
  --brand-light: #1a5fa6;
  --brand-dark: #002555;
  --brand-tint: #e8f0fc;
  --dark: #0d0f1a;
  --dark2: #1a1c2e;
  --grey: #f5f7fa;
  --mid-grey: #e2e6ed;
  --text: #1a1a2e;
  --text-light: #5a6272;
  --white: #fff;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(0,60,120,0.10);
  --shadow-lg: 0 8px 40px rgba(0,60,120,0.18);
}

html { scroll-behavior: smooth; }
body { background: #fff; color: var(--text); font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; font-size: 16px; line-height: 1.6; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
p { line-height: 1.7; }

.eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); display: block; margin-bottom: 0.6rem; }
.eyebrow-white { color: rgba(255,255,255,0.75); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.5); backdrop-filter: blur(4px); }
.btn-secondary:hover { background: rgba(255,255,255,0.25); border-color: #fff; }
.btn-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { background: var(--brand-tint); }

/* ── NAV (G17, G20, G36) ─────────────────────────────────── */
.nav-wrapper { position: fixed; top: 16px; left: 0; right: 0; z-index: 1000; display: flex; justify-content: center; padding: 0 16px; }
.nav-pill { display: inline-flex; align-items: center; gap: 32px; width: fit-content; margin: 0 auto; background: rgba(0,28,64,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 50px; padding: 10px 10px 10px 20px; box-shadow: 0 4px 32px rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.1); }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 6px; margin: 0; }
.nav-links a { color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.9rem; padding: 8px 16px; border-radius: 50px; transition: all 0.2s; white-space: nowrap; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav-links a.nav-cta { background: var(--brand); color: #fff; padding: 8px 20px; }
.nav-links a.nav-cta:hover { background: var(--brand-light); }

/* Mobile hamburger — base rule MUST come before the @media override (G17) */
.mobile-menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; cursor: pointer; color: #fff; font-size: 1.1rem; transition: background 0.2s; }
.mobile-menu-toggle:hover { background: rgba(255,255,255,0.2); }

.mobile-panel { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999; background: var(--dark); transform: translateX(100%); transition: transform 0.3s ease; pointer-events: auto; overflow-y: auto; }
.mobile-panel.open { transform: translateX(0); }
.mobile-panel-inner { padding: 80px 32px 48px; }
.mobile-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.1); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; }
.mobile-panel nav a { display: block; color: #fff; font-size: 1.4rem; font-weight: 700; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-panel .mobile-phone { display: block; margin-top: 32px; background: var(--brand); color: #fff; text-align: center; padding: 16px; border-radius: var(--radius); font-weight: 700; font-size: 1.1rem; }

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none !important; }
  .mobile-panel { display: none; }
}

/* ── HERO (G10, G16, G32) ────────────────────────────────── */
.hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.hero-overlay-dark { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,28,64,0.65) 0%, rgba(0,60,120,0.55) 50%, rgba(0,20,50,0.75) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 140px 5% 60px; max-width: 720px; }
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.88); font-size: 1.15rem; margin-bottom: 36px; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-since { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.9); border-radius: 50px; padding: 6px 14px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; }

.hero-cards { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); padding: 0 5%; margin-top: 0; }
.hero-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,0.15); padding: 24px 28px; color: #fff; }
.hero-card:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.1); }
.hero-card-icon { font-size: 1.5rem; margin-bottom: 10px; }
.hero-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.hero-card p { font-size: 0.85rem; color: rgba(255,255,255,0.72); margin: 0; }

@media (max-width: 767px) {
  .hero-cards { grid-template-columns: 1fr; }
  .hero-card:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero-content { padding: 120px 24px 40px; }
}

/* ── SECTION CONTAINERS ─────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
.section { padding: 80px 5%; }
.section-sm { padding: 56px 5%; }

/* ── ABOUT TEASER ────────────────────────────────────────── */
.about-teaser { background: var(--brand-tint); padding: 72px 5%; }
.about-teaser-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-teaser h2 { margin-bottom: 16px; }
.about-teaser p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 28px; }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.about-stat-num { font-size: 2.2rem; font-weight: 800; color: var(--brand); line-height: 1; margin-bottom: 6px; }
.about-stat-label { font-size: 0.85rem; color: var(--text-light); font-weight: 600; }

@media (max-width: 767px) {
  .about-teaser-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ── SERVICES SPLIT (tradie4 reference) ──────────────────── */
.services-split { background: #fff; padding: 80px 5%; }
.services-split-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.services-left h2 { margin-bottom: 20px; }
.services-left p { color: var(--text-light); margin-bottom: 32px; }
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-card-row { display: flex; align-items: center; gap: 20px; padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--mid-grey); background: #fff; transition: all 0.2s; margin-bottom: 12px; text-decoration: none; color: var(--text); }
.service-card-row:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateX(4px); }
.service-icon-badge { width: 48px; height: 48px; border-radius: 12px; background: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem; color: #fff; }
.service-card-text { flex: 1; }
.service-card-text h3 { font-size: 1rem; margin-bottom: 4px; }
.service-card-text p { font-size: 0.875rem; color: var(--text-light); margin: 0; }
.service-arrow { color: var(--brand); font-size: 1.1rem; flex-shrink: 0; }

@media (max-width: 900px) {
  .services-split-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section { background: var(--grey); padding: 80px 5%; }
.testimonials-section h2 { text-align: center; margin-bottom: 48px; }
.testimonials-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; }
.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border-top: 4px solid var(--brand); }
.testimonial-quote { font-size: 1rem; line-height: 1.7; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-quote::before { content: '"'; font-size: 2rem; color: var(--brand); line-height: 0; vertical-align: -0.4em; margin-right: 2px; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band { position: relative; padding: 80px 5%; overflow: hidden; background: var(--brand-dark); }
.cta-band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.cta-band-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; text-align: center; color: #fff; }
.cta-band-content h2 { color: #fff; margin-bottom: 12px; }
.cta-band-content p { color: rgba(255,255,255,0.82); margin-bottom: 32px; font-size: 1.1rem; }

/* ── LOCATION SECTION (G24 — no iframe) ─────────────────── */
.location-section { background: #fff; padding: 80px 5%; }
.location-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.location-graphic { background: var(--brand); border-radius: var(--radius-lg); padding: 48px 40px; color: #fff; }
.location-graphic h3 { font-size: 1.4rem; margin-bottom: 24px; opacity: 0.9; }
.location-nap { display: flex; flex-direction: column; gap: 16px; }
.location-nap-item { display: flex; align-items: flex-start; gap: 14px; font-size: 0.95rem; }
.location-nap-item .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.location-nap-item span { line-height: 1.5; }
.location-text h2 { margin-bottom: 16px; }
.location-text p { color: var(--text-light); margin-bottom: 24px; }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 4px 24px; margin-top: 16px; }
.hours-label { font-weight: 600; font-size: 0.9rem; }
.hours-value { font-size: 0.9rem; color: var(--text-light); }

@media (max-width: 767px) {
  .location-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 64px 5% 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.55); max-width: 280px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background 0.2s; color: #fff; }
.footer-social a:hover { background: var(--brand-light); }
footer h4 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: color 0.2s; }
footer ul li a:hover { color: #fff; }
.footer-bottom { max-width: 1160px; margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-credit a { color: rgba(255,255,255,0.55); }
.footer-credit a:hover { color: #fff; }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── MOBILE STICKY CTA (G8) ─────────────────────────────── */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; height: 58px; }
.sticky-cta a { display: flex; align-items: center; justify-content: center; width: 50%; height: 100%; font-weight: 700; font-size: 1rem; letter-spacing: 0.02em; }
.sticky-cta .cta-call { background: var(--brand); color: #fff; }
.sticky-cta .cta-message { background: #0a0a0a; color: #fff; }

@media (max-width: 1023px) { .sticky-cta { display: flex; } body { padding-bottom: 58px; } }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero { background: var(--brand); color: #fff; padding: 120px 5% 56px; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }

/* ── FAQ / DETAILS ───────────────────────────────────────── */
.faq-section { background: #fff; padding: 80px 5%; }
.faq-inner { max-width: 840px; margin: 0 auto; }
.faq-inner h2 { margin-bottom: 40px; }
details { border: 1px solid var(--mid-grey); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
details[open] { box-shadow: var(--shadow); }
summary { padding: 20px 24px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; font-size: 1rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.3rem; color: var(--brand); flex-shrink: 0; transition: transform 0.2s; }
details[open] summary::after { content: '−'; }
.faq-answer { padding: 0 24px 24px; color: var(--text-light); line-height: 1.75; font-size: 0.95rem; }

/* ── SERVICE PAGE ────────────────────────────────────────── */
.service-content { padding: 72px 5%; }
.service-content-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; gap: 64px; }
.service-body h2 { margin-bottom: 16px; }
.service-body h3 { margin: 32px 0 12px; font-size: 1.1rem; }
.service-body ul { margin: 12px 0 24px 20px; list-style: disc; color: var(--text-light); }
.service-body ul li { margin-bottom: 8px; line-height: 1.6; }
.service-body p { margin-bottom: 16px; color: var(--text-light); }
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--brand); color: #fff; border-radius: var(--radius-lg); padding: 32px; margin-bottom: 20px; }
.sidebar-card h3 { color: #fff; margin-bottom: 12px; }
.sidebar-card p { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin-bottom: 20px; }
.sidebar-card a { display: block; text-align: center; }
.sidebar-other { background: var(--grey); border-radius: var(--radius-lg); padding: 28px; }
.sidebar-other h4 { margin-bottom: 16px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }
.sidebar-other li { border-bottom: 1px solid var(--mid-grey); }
.sidebar-other li:last-child { border-bottom: none; }
.sidebar-other a { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; font-size: 0.9rem; color: var(--text); transition: color 0.2s; }
.sidebar-other a:hover { color: var(--brand); }

@media (max-width: 900px) {
  .service-content-inner { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-section { padding: 72px 5%; }
.contact-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 480px; gap: 64px; }
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap p { color: var(--text-light); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid var(--mid-grey); border-radius: var(--radius); font-size: 1rem; font-family: inherit; transition: border-color 0.2s; background: #fff; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,60,120,0.12); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-hp { display: none; }
.form-submit { width: 100%; padding: 15px; border: none; border-radius: 50px; background: var(--brand); color: #fff; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--brand-light); }
.contact-info { background: var(--grey); border-radius: var(--radius-lg); padding: 40px; height: fit-content; }
.contact-info h3 { margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-info-item .icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-info-item-text strong { display: block; font-size: 0.875rem; margin-bottom: 4px; }
.contact-info-item-text span { font-size: 0.9rem; color: var(--text-light); }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.team-section { padding: 72px 5%; background: #fff; }
.team-grid { max-width: 1160px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 24px; }
.team-card { background: var(--grey); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.8rem; color: var(--brand); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.team-card ul { list-style: none; margin: 0; padding: 0; }
.team-card ul li { font-size: 0.8rem; color: var(--text-light); padding: 3px 0; border-bottom: 1px solid var(--mid-grey); }
.team-card ul li:last-child { border-bottom: none; }

/* ── SERVICES HUB PAGE ───────────────────────────────────── */
.services-hub { padding: 72px 5%; }
.services-hub-grid { max-width: 1160px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 28px; }
.service-hub-card { border: 1px solid var(--mid-grey); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.2s; display: block; color: var(--text); }
.service-hub-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--brand); }
.service-hub-card-img { height: 200px; overflow: hidden; }
.service-hub-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-hub-card:hover .service-hub-card-img img { transform: scale(1.04); }
.service-hub-card-body { padding: 24px; }
.service-hub-card-body h3 { margin-bottom: 8px; }
.service-hub-card-body p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 16px; }
.service-hub-card-link { font-size: 0.875rem; font-weight: 700; color: var(--brand); display: flex; align-items: center; gap: 6px; }

/* ── UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.darkband { background: var(--dark2); color: #fff; }
.darkband h2, .darkband h3 { color: #fff; }

/* ── SITE HEADER (nav outer wrapper alias) ───────────────── */
.site-header { position: fixed; top: 16px; left: 0; right: 0; z-index: 1000; display: flex; justify-content: center; padding: 0 16px; }
.header-inner { width: 100%; display: flex; justify-content: center; }

/* ── NAV CTA BUTTON (inner-page button in nav) ───────────── */
.nav-links a.nav-cta-btn { background: var(--brand); color: #fff !important; padding: 8px 20px; border-radius: 50px; font-weight: 700; }
.nav-links a.nav-cta-btn:hover { background: var(--brand-light); }
.nav-links a.active { color: #fff; }
.mobile-phone-link { background: var(--brand) !important; border-radius: 8px; text-align: center; padding: 14px !important; margin-top: 16px; }

/* ── BUTTONS (standalone) ────────────────────────────────── */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: all 0.2s; cursor: pointer; border: none; background: var(--brand); color: #fff; text-align: center; }
.btn-primary:hover { background: var(--brand-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: all 0.2s; cursor: pointer; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-full { width: 100%; margin-bottom: 10px; }
.btn-submit { width: 100%; padding: 15px; border: none; border-radius: 50px; background: var(--brand); color: #fff; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background 0.2s; }
.btn-submit:hover { background: var(--brand-light); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── SECTION HELPERS ─────────────────────────────────────── */
.section-pad { padding: 80px 5%; }
.section-title { text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text-light); margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── CTA BAND INNER ──────────────────────────────────────── */
.cta-band-inner { max-width: 700px; margin: 0 auto; text-align: center; color: #fff; }
.cta-band-inner h2 { color: #fff; margin-bottom: 12px; }
.cta-band-inner p { color: rgba(255,255,255,0.82); margin-bottom: 32px; font-size: 1.1rem; }
.cta-band-inner .btn-primary { background: #fff; color: var(--brand); margin-right: 12px; }
.cta-band-inner .btn-primary:hover { background: var(--brand-tint); }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: start; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; }
.about-highlight-card { background: var(--brand); color: #fff; border-radius: var(--radius-lg); padding: 36px; display: flex; flex-direction: column; gap: 28px; }
.stat-row { display: flex; flex-direction: column; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 20px; }
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-number { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.72); font-weight: 600; }

.owner-profile { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: start; max-width: 900px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.owner-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 1.6rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.owner-bio h2 { margin-bottom: 4px; }
.owner-title { color: var(--brand); font-weight: 600; font-size: 0.9rem; margin-bottom: 16px !important; display: block; }
.owner-bio p { color: var(--text-light); line-height: 1.75; }

.team-role { font-size: 0.8rem; color: var(--brand); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.team-skills { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }

.credentials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 24px; }
.credential-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.cred-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--brand-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cred-icon svg { width: 24px; height: 24px; stroke: var(--brand); }
.credential-card h3 { margin-bottom: 8px; font-size: 1rem; }
.credential-card p { font-size: 0.875rem; color: var(--text-light); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .owner-profile { grid-template-columns: 1fr; }
  .owner-avatar { margin: 0 auto; }
}

/* ── SERVICES HUB PAGE (shc-* classes) ───────────────────── */
.shc-img-wrap { height: 200px; overflow: hidden; }
.shc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-hub-card:hover .shc-img-wrap img { transform: scale(1.04); }
.shc-body { padding: 24px; }
.shc-body h2 { font-size: 1.2rem; margin-bottom: 8px; }
.shc-body p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 16px; }
.shc-cta { font-size: 0.875rem; font-weight: 700; color: var(--brand); }

/* ── AREA TAGS ───────────────────────────────────────────── */
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-tags span { background: #fff; border: 2px solid var(--mid-grey); border-radius: 50px; padding: 8px 20px; font-size: 0.9rem; font-weight: 600; color: var(--text); }

/* ── SERVICE PAGE LAYOUT ─────────────────────────────────── */
.service-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }
.service-main h2 { margin-bottom: 16px; }
.service-main h3 { margin: 32px 0 12px; font-size: 1.1rem; }
.service-main > p { color: var(--text-light); margin-bottom: 16px; }
.service-feature-img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 32px; }
.service-list { margin: 12px 0 24px 20px; list-style: disc; }
.service-list li { margin-bottom: 8px; line-height: 1.6; color: var(--text-light); }
.sidebar-card { background: var(--brand); color: #fff; border-radius: var(--radius-lg); padding: 32px; margin-bottom: 20px; }
.sidebar-card h3 { color: #fff; margin-bottom: 8px; font-size: 1.1rem; }
.sidebar-card p { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin-bottom: 20px; }
.sidebar-card .btn-primary { background: #fff; color: var(--brand); }
.sidebar-card .btn-primary:hover { background: var(--brand-tint); }
.sidebar-card .btn-ghost { border-color: rgba(255,255,255,0.5); }
.sidebar-services { background: var(--grey) !important; border-radius: var(--radius-lg); padding: 24px; }
.sidebar-services h3 { color: var(--text) !important; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 12px; }
.sidebar-services a { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; font-size: 0.9rem; color: var(--text); border-bottom: 1px solid var(--mid-grey); transition: color 0.2s; }
.sidebar-services a:last-child { border-bottom: none; }
.sidebar-services a:hover { color: var(--brand); }
.disclaimer-box { background: var(--brand-tint); border-left: 4px solid var(--brand); border-radius: var(--radius); padding: 16px 20px; margin-top: 24px; font-size: 0.875rem; color: var(--text-light); }
.disclaimer-box strong { color: var(--text); }

@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-light); margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid var(--mid-grey); border-radius: var(--radius); font-size: 1rem; font-family: inherit; transition: border-color 0.2s; background: #fff; color: var(--text); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,60,120,0.12); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-status { margin-top: 12px; font-size: 0.9rem; padding: 12px 16px; border-radius: var(--radius); display: none; }
.form-status.success { display: block; background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-status.error { display: block; background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; background: var(--grey); border-radius: var(--radius-lg); padding: 24px; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 22px; height: 22px; stroke: var(--brand); }
.contact-card h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 4px; }
.contact-card a, .contact-card p { font-size: 0.95rem; color: var(--text); }
.contact-card a:hover { color: var(--brand); }

.location-map-card { background: var(--brand); border-radius: var(--radius-lg); padding: 32px; color: #fff; }
.location-map-visual { display: flex; align-items: center; justify-content: center; min-height: 120px; }
.location-map-text { text-align: center; }
.location-suburb { font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.location-street { font-size: 1rem; color: rgba(255,255,255,0.82); margin-bottom: 4px; }
.location-region { font-size: 0.875rem; color: rgba(255,255,255,0.65); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── FAQ HUB ─────────────────────────────────────────────── */
.faq-hub { max-width: 840px; margin: 0 auto; }
.faq-group { margin-bottom: 48px; }
.faq-group h2 { font-size: 1.4rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--brand); display: inline-block; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-list details p { padding: 0 24px 20px; color: var(--text-light); font-size: 0.95rem; line-height: 1.75; }

/* ── FOOTER COL DIRECT LINKS ─────────────────────────────── */
.footer-col { display: flex; flex-direction: column; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.875rem; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-col p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.6; margin-bottom: 4px; }
.footer-social svg { width: 18px; height: 18px; }

/* ── MOBILE PANEL (hamburger icon lines) ─────────────────── */
.mobile-menu-toggle span { display: block; width: 18px; height: 2px; background: #fff; margin: 3px auto; border-radius: 2px; pointer-events: none; }
