/* ===== CSS Custom Properties ===== */
:root {
  --primary:       #0B1A33;
  --primary-light: #142A4E;
  --accent:        #C9A84C;
  --accent-hover:  #B8942E;
  --accent-light:  #F5E8B8;
  --bg:            #FAF8F5;
  --bg-alt:        #F0EDE8;
  --text-dark:     #1A1A1A;
  --text-body:     #3D3D3D;
  --text-light:    #6B6B6B;
  --border:        #D6D2CB;
  --white:         #FFFFFF;
  --shadow:        0 4px 20px rgba(11, 26, 51, 0.08);
  --shadow-hover:  0 8px 32px rgba(11, 26, 51, 0.14);
  --radius:        10px;
  --radius-sm:     6px;
  --transition:    0.25s ease;
  --max-width:     1140px;
  --font:          'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  font-family: var(--font);
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--primary);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* ===== Navbar ===== */
.navbar {
  background: var(--primary);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--accent);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}
.logo:hover { color: var(--accent); }
.logo-text { color: var(--white); }
.logo-thin { font-weight: 300; margin-left: 4px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a:not(.btn) {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.nav-links a:not(.btn):hover,
.nav-links a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.nav-cta {
  padding: 8px 20px;
  font-size: 0.9rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  border: 40px solid rgba(201, 168, 76, 0.06);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.hero .highlight {
  color: var(--accent);
}
.hero-sub {
  font-size: 1.2rem;
  max-width: 620px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Value Props ===== */
.value-props {
  padding: 60px 0;
  background: var(--white);
}
.vp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.vp-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.vp-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.vp-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.vp-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.vp-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ===== Section Titles ===== */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ===== Services Grid ===== */
.services-preview {
  padding: 80px 0;
  background: var(--bg-alt);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.card-icon {
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.section-cta {
  text-align: center;
  margin-top: 40px;
}
.section-cta .btn { color: var(--primary); border-color: var(--primary); }
.section-cta .btn:hover { background: var(--primary); color: var(--white); }

/* Full services page */
.services-grid.full {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ===== About Strip ===== */
.about-strip {
  padding: 80px 0;
  background: var(--white);
}
.about-strip-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-strip-text h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.about-strip-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.7;
}
.about-strip-visual {
  display: flex;
  justify-content: center;
}

/* ===== Credentials Strip ===== */
.credentials {
  background: var(--primary);
  padding: 40px 0;
}
.creds-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.creds-item {
  text-align: center;
}
.creds-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 4px;
}
.creds-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.creds-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* ===== CTA Strip ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--white);
}
.cta-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== Page Section ===== */
.page-section {
  padding: 64px 0;
  background: var(--white);
}
.content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.content-main h2 {
  font-size: 1.7rem;
  color: var(--primary);
  margin: 32px 0 16px;
}
.content-main h2:first-child { margin-top: 0; }
.content-main p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text-body);
}
.checked-list {
  list-style: none;
  margin-top: 8px;
}
.checked-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.6;
}
.checked-list li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== Sidebar ===== */
.sidebar-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.sidebar-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.details-list dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-top: 16px;
}
.details-list dt:first-child { margin-top: 0; }
.details-list dd {
  font-size: 1rem;
  color: var(--text-body);
  font-weight: 600;
  margin-top: 4px;
}

/* ===== Contact Card ===== */
.contact-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  margin-top: 12px;
}
.contact-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  min-width: 80px;
  font-weight: 600;
}
.contact-link {
  font-weight: 600;
  font-size: 1rem;
}
.contact-text {
  font-size: 1rem;
  color: var(--text-body);
}

/* ===== Legal Content ===== */
.legal-content h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin: 32px 0 12px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  margin-bottom: 14px;
  line-height: 1.8;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-content ul li {
  margin-bottom: 6px;
  line-height: 1.7;
}
.legal-content strong {
  color: var(--primary);
}

/* ===== Footer ===== */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a,
.footer-col ul li span {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--accent);
}
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  margin: 16px 0;
  line-height: 1.7;
}
.footer-abn {
  font-size: 0.85rem !important;
  color: var(--accent) !important;
  font-weight: 500;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 2px solid var(--accent);
  }
  .open .nav-links { display: flex; }
  .open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .open .hamburger span:nth-child(2) { opacity: 0; }
  .open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { padding: 60px 0 56px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  .vp-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .about-strip-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-strip-visual { display: none; }

  .creds-row { flex-direction: column; gap: 16px; }
  .creds-divider { display: none; }

  .content-layout { grid-template-columns: 1fr; gap: 32px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }

  .section-title { font-size: 1.8rem; }
  .page-hero h1 { font-size: 2rem; }
  .cta-content h2 { font-size: 1.8rem; }

  .contact-item { flex-direction: column; gap: 4px; }
}
