/* ============================================
   BLUESTONE LABOUR GROUP — Website Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
  --navy: #0E2040;
  --navy-light: #162B4D;
  --navy-dark: #091526;
  --gold: #C4922A;
  --gold-light: #F5E6C0;
  --gold-dark: #9A7320;
  --gold-hover: #D4A23A;
  --steel: #1A3A6B;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --paper: #F4EFE3;
  --text: #1A2332;
  --text-light: #4A5568;
  --text-muted: #6B7A8D;
  --border: #E2DCD0;
  --border-light: #EDEAE4;
  --shadow-sm: 0 1px 3px rgba(14, 32, 64, 0.08);
  --shadow-md: 0 4px 16px rgba(14, 32, 64, 0.1);
  --shadow-lg: 0 8px 32px rgba(14, 32, 64, 0.12);
  --shadow-xl: 0 16px 48px rgba(14, 32, 64, 0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 700; }

p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title { margin-bottom: 20px; }
.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 146, 42, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-sm { padding: 10px 24px; font-size: 0.9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}
.btn:hover svg { transform: translateX(3px); }

/* --- NAVIGATION --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s ease, transform 0.35s ease;
}

.navbar.scrolled {
  background: rgba(14, 32, 64, 0.85);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo svg {
  height: 56px;
  width: auto;
  transition: height var(--transition);
}
.navbar.scrolled .nav-logo svg { height: 46px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active { color: var(--gold); }

.nav-cta {
  margin-left: 12px;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy) url('../images/melbourne-site.jpg') center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 32, 64, 0.78);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 146, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 146, 42, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
}

.hero-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 146, 42, 0.12);
  border: 1px solid rgba(196, 146, 42, 0.25);
  border-radius: 30px;
  padding: 6px 18px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 .gold-bar {
  display: inline-block;
  width: 8px;
  height: 0.75em;
  background: var(--gold);
  margin-right: 12px;
  vertical-align: baseline;
  border-radius: 1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.hero-stat .number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* --- SECTIONS --- */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255, 255, 255, 0.65); }
.section-dark .section-subtitle { color: rgba(255, 255, 255, 0.55); }

.section-bg-image {
  position: relative;
  background-size: cover;
  background-position: center;
}
.section-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 32, 64, 0.88);
}
.section-bg-image > * {
  position: relative;
  z-index: 1;
}

/* --- IMAGE-TEXT SPLIT --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.split-image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 72px;
  background: var(--off-white);
}

.split-content .section-subtitle {
  margin-bottom: 28px;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.section-light {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .section-label { justify-content: center; }
.section-header .section-subtitle { margin: 0 auto; }

/* --- SERVICE CARDS --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(196, 146, 42, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  transition: stroke var(--transition);
}

.service-card:hover .service-icon svg { stroke: var(--navy); }

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --- INDUSTRY TABS --- */
.industry-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.industry-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.industry-tab:hover { border-color: var(--gold); color: var(--gold); }
.industry-tab.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* --- WHY CHOOSE US --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: rgba(14, 32, 64, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(14, 32, 64, 0.7);
  border-color: rgba(196, 146, 42, 0.2);
  transform: translateY(-3px);
}

.why-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: rgba(196, 146, 42, 0.2);
  line-height: 1;
  flex-shrink: 0;
}

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--gold);
}

/* --- HOW IT WORKS --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border-light);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}

.process-step:hover .process-number {
  background: var(--gold);
  color: var(--navy);
}

.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; }

/* --- STATS --- */
.stats-strip {
  background: var(--gold);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(14, 32, 64, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- INDUSTRIES --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  position: relative;
  text-align: center;
  padding: 0;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 32, 64, 0.92) 0%, rgba(14, 32, 64, 0.5) 50%, rgba(14, 32, 64, 0.25) 100%);
  transition: all var(--transition);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.industry-card:hover::before {
  background: linear-gradient(to top, rgba(14, 32, 64, 0.95) 0%, rgba(14, 32, 64, 0.4) 60%, rgba(14, 32, 64, 0.15) 100%);
}

.industry-card-content {
  position: relative;
  z-index: 1;
  padding: 24px 20px;
}

.industry-card svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto 10px;
  transition: all var(--transition);
}

.industry-card:hover svg { stroke: var(--gold-light); }

.industry-card h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--white);
}

.industry-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --- CTA BANNER --- */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: var(--navy) url('../images/construction-aerial.jpg') center / cover no-repeat;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 32, 64, 0.82);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- DUAL CTA (Employers + Workers) --- */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.dual-cta-card {
  padding: 60px 48px;
  position: relative;
}

.dual-cta-card.employers {
  background: var(--navy);
  color: var(--white);
}

.dual-cta-card.workers {
  background: var(--gold);
  color: var(--navy);
}

.dual-cta-card h3 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dual-cta-card.employers h3 { color: var(--white); }
.dual-cta-card.workers h3 { color: var(--navy); }

.dual-cta-card p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

.dual-cta-card.employers p { color: rgba(255, 255, 255, 0.65); }
.dual-cta-card.workers p { color: rgba(14, 32, 64, 0.7); }

.dual-cta-list {
  margin-bottom: 32px;
}

.dual-cta-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.dual-cta-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.dual-cta-card.employers .dual-cta-list li { color: rgba(255, 255, 255, 0.8); }
.dual-cta-card.employers .dual-cta-list li svg { stroke: var(--gold); fill: none; }
.dual-cta-card.workers .dual-cta-list li { color: rgba(14, 32, 64, 0.8); }
.dual-cta-card.workers .dual-cta-list li svg { stroke: var(--navy); fill: none; }

/* --- TESTIMONIALS --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- SPLIT REVERSE --- */
.split-section.split-reverse .split-content {
  order: -1;
}

/* --- COMPLIANCE CHECKLIST --- */
.compliance-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.checklist-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
}

/* --- COVERAGE AREA --- */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.coverage-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  transition: all var(--transition);
}

.coverage-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.coverage-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* --- FAQ --- */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  transition: color var(--transition);
  user-select: none;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 24px;
}

/* --- COMPLIANCE STRIP --- */
.compliance-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.compliance-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), var(--steel));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
}

.about-image-placeholder svg {
  width: 80px;
  height: 80px;
  stroke: var(--gold);
  opacity: 0.3;
  fill: none;
  stroke-width: 1.5;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  gap: 12px;
}

.value-icon {
  width: 40px;
  height: 40px;
  background: rgba(196, 146, 42, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.value-item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.value-item p { font-size: 0.85rem; margin: 0; }

/* --- CONTACT SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.contact-info-card:hover {
  background: var(--gold-light);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.contact-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* --- FORMS --- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 146, 42, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- FOOTER --- */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
}

.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-socials a:hover {
  border-color: var(--gold);
  background: rgba(196, 146, 42, 0.1);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.5);
  transition: fill var(--transition);
}

.footer-socials a:hover svg { fill: var(--gold); }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196, 146, 42, 0.05), transparent);
}

.page-hero.section-bg-image {
  background-size: cover;
  background-position: center;
}
.page-hero.section-bg-image::before {
  background: rgba(14, 32, 64, 0.82);
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255, 255, 255, 0.3); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; padding: 12px 24px; }
  .nav-cta { margin-left: 0; margin-top: 16px; }
  .nav-toggle { display: flex; }

  .hero .container { padding-top: 100px; padding-bottom: 60px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .hero-stat .number { font-size: 2rem; }
  .hero-subtitle { font-size: 1.1rem; }

  .services-grid,
  .why-grid,
  .about-grid,
  .contact-grid,
  .dual-cta { grid-template-columns: 1fr; }

  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 300px; }
  .split-content { padding: 48px 32px; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }

  .split-section.split-reverse .split-content { order: 0; }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .compliance-strip { gap: 24px; padding: 24px 20px; }
  .compliance-item { font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .industries-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* Hero phone CTA */
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color var(--transition);
}
.hero-phone:hover { color: var(--white); }
.hero-phone svg { width: 22px; height: 22px; flex-shrink: 0; }

/* Floating call button */
.floating-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(196, 146, 42, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.floating-call:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(196, 146, 42, 0.6);
}
.floating-call svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
}

/* Floating message widget */
.msg-toggle {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(14, 32, 64, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.msg-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(14, 32, 64, 0.7);
}
.msg-toggle svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}
.msg-panel {
  position: fixed;
  bottom: 100px;
  left: 28px;
  z-index: 1001;
  width: 360px;
  max-height: 480px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: none;
  flex-direction: column;
}
.msg-panel.open { display: flex; }
.msg-panel-header {
  background: var(--navy);
  padding: 20px;
  color: var(--white);
}
.msg-panel-header h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px;
}
.msg-panel-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.msg-panel-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 280px;
}
.chat-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.45;
  word-wrap: break-word;
}
.chat-bubble.bot {
  background: #f0f2f5;
  color: var(--navy);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble.user {
  background: var(--gold);
  color: var(--navy);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.chat-bubble a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
}
.chat-bubble.bot a { color: #8b6914; }
.typing-indicator span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 2px;
  background: #999;
  border-radius: 50%;
  animation: typingDot 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}
.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid #eee;
  background: var(--white);
}
.chat-input-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.chat-input-row input:focus { border-color: var(--gold); }
.chat-input-row button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.chat-input-row button:hover { background: #d4a332; }
.chat-input-row button svg {
  width: 18px;
  height: 18px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
}
.chat-quick-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.chat-quick-btn {
  padding: 6px 12px;
  border: 1.5px solid #d0d5dd;
  border-radius: 16px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.8rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
}
.chat-quick-btn:hover {
  border-color: var(--gold);
  background: #fdf8ed;
}
.chat-form-bubble { padding: 10px 12px !important; }
.chat-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  gap: 3px;
}
.chat-form input,
.chat-form select,
.chat-form textarea {
  padding: 7px 10px;
  border: 1.5px solid #d0d5dd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  box-sizing: border-box;
  width: 100%;
}
.chat-form input:focus,
.chat-form select:focus,
.chat-form textarea:focus { border-color: var(--gold); }
.chat-form textarea { resize: vertical; }
.chat-form-submit {
  padding: 10px 16px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.chat-form-submit:hover { background: #d4a332; }
.chat-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.chat-form-success {
  text-align: center;
  padding: 16px 8px;
  color: #2e7d32;
  font-weight: 600;
  font-size: 0.88rem;
}
@media (max-width: 480px) {
  .msg-panel { left: 12px; right: 12px; width: auto; bottom: 96px; }
  .msg-toggle { bottom: 20px; left: 20px; }
  .floating-call { bottom: 20px; right: 20px; }
}
