/* ============================================================
   LTD Consulting Pty Ltd — Global Stylesheet
   Colour palette: Deep Navy (#0D1B2A) + Gold Accent (#C9A84C)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0D1B2A;
  --navy-mid:  #162436;
  --navy-light:#1E3250;
  --gold:      #C9A84C;
  --gold-light:#E2C47A;
  --white:     #FFFFFF;
  --off-white: #F4F6F9;
  --text:      #2C3E50;
  --muted:     #6B7A8D;
  --border:    #D8E0EA;
  --radius:    6px;
  --shadow:    0 4px 24px rgba(13,27,42,.12);
  --transition:all .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,27,42,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-main {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .03em;
}
.nav-logo .logo-sub {
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #0A2540 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,.08) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,.06) 0%, transparent 45%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-eyebrow .line { width: 40px; height: 2px; background: var(--gold); }
.hero-eyebrow span { color: var(--gold); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.stat-item { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-lbl { font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.hero-card:first-child { grid-column: span 2; }
.hero-card .icon { font-size: 2rem; margin-bottom: 10px; }
.hero-card h4 { color: var(--white); font-size: .95rem; }
.hero-card p { color: rgba(255,255,255,.6); font-size: .8rem; margin: 0; }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--off-white);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-icon { color: var(--gold); font-size: 1.1rem; }

/* ---------- About Preview ---------- */
.about-preview { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-inner { padding: 40px; text-align: center; }
.about-img-inner .big-icon { font-size: 5rem; margin-bottom: 16px; }
.about-img-inner h3 { color: var(--white); font-size: 1.4rem; }
.about-img-inner p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }
.badge-abn {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
}

.about-content h2 { margin-bottom: 16px; }
.about-content .lead { font-size: 1.05rem; color: var(--muted); margin-bottom: 24px; }
.value-list { list-style: none; margin: 24px 0; }
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.value-list li:last-child { border: none; }
.value-list .check { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ---------- Services ---------- */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Process ---------- */
.process-section { background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--navy) 100%);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { color: var(--navy); margin-bottom: 8px; }
.step p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--navy); }
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p { color: rgba(255,255,255,.6); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px;
  padding: 32px 28px;
  transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-quote { color: rgba(255,255,255,.85); font-size: .95rem; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--navy);
  font-size: .9rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--white); font-size: .9rem; }
.testi-role { font-size: .78rem; color: rgba(255,255,255,.5); }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, #A8873A 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { color: var(--navy); margin-bottom: 12px; }
.cta-band p { color: rgba(13,27,42,.75); margin-bottom: 32px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo-main { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.footer-brand .logo-sub { font-size: .65rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; margin-bottom: 16px; }
.footer-brand .abn-info { font-size: .75rem; color: rgba(255,255,255,.4); line-height: 1.8; }

.footer-col h5 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,.65); font-size: .85rem; }
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold); }

/* ---------- About page ---------- */
.about-mission { background: var(--white); }
.about-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-story h2 { margin-bottom: 16px; }
.about-story p { color: var(--muted); }
.milestone-list { list-style: none; margin-top: 24px; }
.milestone-list li {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.milestone-year { font-weight: 800; color: var(--gold); min-width: 48px; }
.milestone-text { font-size: .9rem; color: var(--muted); }

.team-section { background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-photo {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.team-info { padding: 24px; }
.team-info h3 { color: var(--navy); margin-bottom: 4px; font-size: 1.05rem; }
.team-info .title { color: var(--gold); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.team-info p { font-size: .85rem; color: var(--muted); margin: 0; }

.values-section { background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card .v-icon { font-size: 2.5rem; margin-bottom: 14px; }
.value-card h3 { color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---------- Services page ---------- */
.services-detail { background: var(--white); }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border: none; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-detail-icon {
  width: 80px; height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.service-row h2 { font-size: 1.8rem; margin-bottom: 14px; }
.service-row p { color: var(--muted); margin-bottom: 16px; }
.service-bullets { list-style: none; }
.service-bullets li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0;
  font-size: .9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.service-bullets li::before { content: '▸'; color: var(--gold); }
.service-bullets li:last-child { border: none; }
.service-visual {
  background: linear-gradient(135deg, var(--off-white), var(--border));
  border-radius: 16px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--border);
}

/* ---------- Contact page ---------- */
.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--muted); margin-bottom: 28px; }
.info-list { list-style: none; }
.info-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.info-list li:last-child { border: none; }
.info-icon { width: 40px; height: 40px; background: var(--off-white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.info-text strong { display: block; font-size: .85rem; color: var(--navy); margin-bottom: 2px; }
.info-text span { font-size: .85rem; color: var(--muted); }

.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .75rem; color: var(--muted); margin-top: 10px; }

/* ---------- Privacy / Terms ---------- */
.legal-content { background: var(--white); }
.legal-body { max-width: 780px; margin: 0 auto; }
.legal-body h2 { color: var(--navy); margin: 40px 0 12px; font-size: 1.3rem; }
.legal-body h3 { color: var(--navy-mid); margin: 24px 0 8px; font-size: 1.05rem; }
.legal-body p, .legal-body li { color: var(--muted); font-size: .95rem; margin-bottom: .8rem; }
.legal-body ul, .legal-body ol { padding-left: 20px; margin-bottom: 1rem; }
.legal-body li { margin-bottom: .4rem; }
.legal-body .highlight-box {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
  font-size: .9rem;
  color: var(--text);
}
.legal-updated { font-size: .8rem; color: var(--muted); margin-bottom: 32px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .about-grid, .about-full-grid, .contact-layout, .service-row { grid-template-columns: 1fr; gap: 32px; }
  .service-row.reverse { direction: ltr; }
  .services-grid, .testimonials-grid, .team-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid, .testimonials-grid, .team-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  section { padding: 60px 0; }
}
