/* ============================================================
   SCUTT GROUP SOLUTIONS — WEBSITE STYLESHEET v2
   scuttgroupsolutions.com.au
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --navy:        #1B2A4A;
  --navy-dark:   #111D33;
  --navy-mid:    #253560;
  --orange:      #E8521A;
  --orange-dk:   #C44010;
  --orange-pale: #FEF0EB;
  --green:       #00A878;
  --green-pale:  #E6F7F2;
  --white:       #FFFFFF;
  --ice:         #F4F7FF;
  --slate-100:   #F1F5F9;
  --slate-200:   #E2E8F0;
  --slate-400:   #94A3B8;
  --slate-600:   #475569;
  --slate-800:   #1E293B;
  --display:     'Inter', 'Helvetica Neue', Arial, sans-serif;
  --body:        'Inter', system-ui, sans-serif;
  --r-sm: 4px; --r-md: 8px; --r-lg: 14px;
  --sh-card: 0 2px 12px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --sh-hover: 0 12px 36px rgba(27,42,74,.16);
  --trans: .22s ease;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--slate-800); background: var(--white); -webkit-font-smoothing: antialiased; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--orange-dk); }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--display); color: var(--navy); line-height: 1.15; font-weight: 900; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.45rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; font-weight: 800; }
p  { color: var(--slate-600); font-size: 1.0625rem; line-height: 1.78; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--slate-800); font-weight: 600; }
.eyebrow {
  font-family: var(--body); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--orange);
  display: block; margin-bottom: .75rem;
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.wrap--narrow { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ── NAV ──────────────────────────────────────────────────── */
.site-nav { position: sticky; top: 0; z-index: 100; background: var(--navy); border-bottom: 3px solid var(--orange); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.nav-logo { font-family: var(--display); font-size: 1.25rem; font-weight: 900; color: var(--white); line-height: 1.2; white-space: nowrap; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav-links a { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.78); padding: .5rem .9rem; border-radius: var(--r-sm); transition: color var(--trans), background var(--trans); }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links .btn-nav { background: var(--orange); color: var(--white) !important; border-radius: var(--r-sm); margin-left: .5rem; }
.nav-links .btn-nav:hover { background: var(--orange-dk); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
.nav-mobile { display: none; position: absolute; top: 71px; left: 0; right: 0; background: var(--navy-dark); padding: 1rem 1.5rem; flex-direction: column; gap: .25rem; z-index: 99; }
.nav-mobile a { color: rgba(255,255,255,.8); font-weight: 600; font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.06); display: block; }
.nav-mobile.open { display: flex; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--body); font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .9rem 2rem; border-radius: var(--r-sm); cursor: pointer; transition: all var(--trans); border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(232,82,26,.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: .85rem; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero { background: var(--navy); padding: 0; position: relative; overflow: hidden; min-height: 88vh; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80');
  background-size: cover; background-position: center 30%;
  opacity: .28;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(17,29,51,.4) 0%, rgba(17,29,51,.82) 60%, rgba(17,29,51,.97) 100%); }
.hero-content { position: relative; z-index: 1; padding: 100px 0 80px; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero .lead { font-size: 1.2rem; color: rgba(255,255,255,.78); margin-bottom: 2.5rem; max-width: 600px; line-height: 1.65; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.trust-bar { border-top: 1px solid rgba(255,255,255,.12); padding-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .03em; }
.trust-item::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero { background: var(--navy); padding: 0; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .22; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,29,51,.9) 0%, rgba(27,42,74,.75) 100%); }
.page-hero-content { position: relative; z-index: 1; padding: 88px 0 72px; }
.page-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5.5vw, 3.8rem); margin-bottom: .75rem; }
.page-hero .lead { color: rgba(255,255,255,.75); font-size: 1.15rem; max-width: 600px; line-height: 1.65; }

/* ── DIVIDER ──────────────────────────────────────────────── */
.divider { width: 48px; height: 3px; background: var(--orange); margin: 1rem 0 1.5rem; border-radius: 2px; }
.divider-center { margin: 1rem auto 1.5rem; }

/* ── CARDS ────────────────────────────────────────────────── */
.cards-grid { display: grid; gap: 1.5rem; }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--white); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--sh-card); border: 1px solid var(--slate-200); transition: transform var(--trans), box-shadow var(--trans); }
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); }
.card-icon { width: 52px; height: 52px; background: var(--orange-pale); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem; }
.card-navy { background: var(--navy); border-color: var(--navy-mid); }
.card-navy h3, .card-navy h4 { color: var(--white); }
.card-navy p { color: rgba(255,255,255,.72); }
.card-navy .card-icon { background: rgba(232,82,26,.18); }

/* ── INDUSTRY PHOTO CARDS ─────────────────────────────────── */
.industry-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  height: 280px; cursor: default;
  box-shadow: var(--sh-card);
  transition: transform var(--trans), box-shadow var(--trans);
}
.industry-card:hover { transform: translateY(-5px); box-shadow: var(--sh-hover); }
.industry-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.industry-card:hover .industry-card-bg { transform: scale(1.04); }
.industry-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,29,51,.92) 0%, rgba(17,29,51,.45) 55%, rgba(17,29,51,.1) 100%);
}
.industry-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.industry-card-icon { font-size: 2rem; margin-bottom: .5rem; display: block; }
.industry-card-title { font-family: var(--display); font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: .3rem; }
.industry-card-desc { font-size: .83rem; color: rgba(255,255,255,.72); line-height: 1.5; }
.industry-card-tag { display: inline-block; background: var(--orange); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .2rem .65rem; border-radius: 3px; margin-bottom: .75rem; }

/* ── PHOTO FEATURE SECTION ────────────────────────────────── */
.photo-feature {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  height: 420px; margin-bottom: 0;
}
.photo-feature img, .photo-feature-bg {
  width: 100%; height: 100%; object-fit: cover;
  background-size: cover; background-position: center;
}
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.photo-grid-item { border-radius: var(--r-lg); overflow: hidden; height: 220px; background-size: cover; background-position: center; }

/* ── STATS STRIP ──────────────────────────────────────────── */
.stats-strip { background: var(--navy); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.stat-item { text-align: center; padding: 1rem; }
.stat-number { font-family: var(--display); font-size: 3rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: .4rem; }
.stat-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testi { background: var(--white); border-radius: var(--r-lg); padding: 2rem; border-left: 4px solid var(--orange); box-shadow: var(--sh-card); }
.testi-quote { font-size: 1.05rem; color: var(--slate-800); font-style: italic; line-height: 1.75; margin-bottom: 1.25rem; }
.testi-author { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testi-role { font-size: .83rem; color: var(--slate-400); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-q { width: 100%; background: none; border: none; padding: 1.4rem 0; font-family: var(--body); font-size: 1rem; font-weight: 600; color: var(--navy); cursor: pointer; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color var(--trans); }
.faq-q:hover { color: var(--orange); }
.faq-q::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--orange); flex-shrink: 0; transition: transform var(--trans); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 1.4rem; font-size: .975rem; color: var(--slate-600); line-height: 1.78; }
.faq-item.open .faq-a { display: block; }

/* ── SERVICE TABLE ────────────────────────────────────────── */
.svc-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.svc-table th { background: var(--navy); color: var(--white); font-family: var(--body); font-size: .77rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 1rem 1.25rem; text-align: left; }
.svc-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--slate-200); font-size: .95rem; vertical-align: top; }
.svc-table tr:nth-child(even) td { background: var(--ice); }
.svc-table tr:hover td { background: var(--orange-pale); }

/* ── PROCESS STEPS ────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num { flex-shrink: 0; width: 46px; height: 46px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.1rem; font-weight: 800; color: var(--white); }
.step-title { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: .25rem; }
.step-body { font-size: .94rem; color: var(--slate-600); }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner { background: var(--navy); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(232,82,26,.1) 0%, transparent 70%); pointer-events: none; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.72); font-size: 1.15rem; max-width: 560px; margin: 0 auto 2.5rem; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.2rem; margin-top: .1rem; flex-shrink: 0; }
.contact-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400); margin-bottom: .2rem; }
.contact-value { font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-value a { color: var(--navy); }
.contact-value a:hover { color: var(--orange); }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; letter-spacing: .03em; }
.form-control { width: 100%; padding: .8rem 1rem; font-size: 1rem; font-family: var(--body); border: 2px solid var(--slate-200); border-radius: var(--r-md); background: var(--white); color: var(--slate-800); transition: border-color var(--trans); }
.form-control:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,82,26,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--slate-400); margin-top: .5rem; }
.form-success { display: none; background: var(--green-pale); color: #0a6648; border-radius: var(--r-md); padding: 1rem 1.25rem; font-weight: 600; margin-top: 1rem; }

/* ── CREDENTIAL TABLE ─────────────────────────────────────── */
.cred-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.cred-table td { padding: .85rem 1.1rem; border-bottom: 1px solid var(--slate-200); font-size: .94rem; vertical-align: top; }
.cred-table tr:nth-child(even) td { background: var(--ice); }
.cred-table td:first-child { font-weight: 600; color: var(--navy); width: 44%; }
.cred-badge { display: inline-block; background: var(--orange-pale); color: var(--orange); font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .2rem .65rem; border-radius: var(--r-sm); }
.highlight-box { background: var(--navy); color: var(--white); border-radius: var(--r-lg); padding: 2rem 2.25rem; }
.highlight-box h3 { color: var(--white); margin-bottom: .25rem; }
.highlight-box p { color: rgba(255,255,255,.72); margin: 0; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand { font-family: var(--display); font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.footer-brand span { color: var(--orange); }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }
.footer-contact-item { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: .5rem; }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-heading { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color var(--trans); }
.footer-links a:hover { color: var(--orange); }
.footer-bar { border-top: 1px solid rgba(255,255,255,.07); padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-bar p { font-size: .78rem; color: rgba(255,255,255,.38); margin: 0; }

/* ── UTILITIES ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-orange { color: var(--orange) !important; }
.bg-ice { background: var(--ice); }
.bg-navy { background: var(--navy); }
.mt-sm { margin-top: 1rem; } .mt-md { margin-top: 2rem; } .mt-lg { margin-top: 3rem; }
.mb-sm { margin-bottom: 1rem; } .mb-md { margin-bottom: 2rem; }
.gap-lg { gap: 4rem; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  section { padding: 72px 0; }
  .cards-grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero { min-height: auto; }
  .hero-content { padding: 80px 0 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .cards-grid-2, .cards-grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bar { flex-direction: column; text-align: center; }
  .svc-table { font-size: .85rem; }
  .industry-card { height: 240px; }
  .photo-feature { height: 280px; }
  h2 { font-size: 1.75rem; }
  .two-col { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
}
@media (max-width: 480px) {
  section { padding: 44px 0; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-number { font-size: 2.4rem; }
  .cards-grid-4 { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition-duration: .01ms !important; } }
