/* =====================================================
   Global Auratech Systems — style.css
   60/30/10 Rule:
   60% White  — backgrounds, cards, content areas
   30% Black  — navbar, footer, dark sections, text
   10% Navy   — buttons, CTAs, links, key accents
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

:root {
  /* 30% — Black */
  --black:       #000000;
  --black-soft:  #111111;
  --black-card:  #1A1A1A;
  --black-3:     #2A2A2A;

  /* 10% — Navy Blue */
  --navy:        #1558C0;
  --navy-hover:  #0D47A1;
  --navy-light:  #1967D2;

  /* 60% — White */
  --white:       #FFFFFF;
  --surface:     #F7F7F7;
  --surface-2:   #EFEFEF;

  /* Text */
  --text:        #0A0A0A;
  --muted:       #5F5F5F;
  --muted-light: #909090;

  /* Borders */
  --border:      #E0E0E0;
  --border-dark: rgba(255,255,255,0.1);

  /* Shadows — very subtle */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.10);

  --radius:      6px;
  --radius-lg:   10px;
  --radius-xl:   100px;
  --transition:  all 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── TOPBAR ─────────────────────────────────────────── */
.topbar { display: none; }

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.4); }

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  letter-spacing: -0.3px;
}
.logo .logo-icon {
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.logo span { color: var(--navy-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 7px 13px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}

.dropdown { position: relative; }
.dropdown > a { display: flex; align-items: center; gap: 4px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  border: 1px solid var(--border);
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  color: var(--text);
  font-size: 0.87rem;
  border-radius: var(--radius);
  background: none;
  font-weight: 500;
}
.dropdown-menu li a:hover { background: var(--surface); color: var(--navy); }

.btn-nav {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(255,255,255,0.55);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nav:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--navy-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(21,88,192,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-dark:hover { background: var(--black-3); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
}

.btn-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ─── LAYOUT ─────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark2 { background: var(--black-soft); color: var(--white); }
.section-navy { background: var(--black-soft); color: var(--white); }
.section-navy .section-label { color: rgba(255,255,255,0.4); letter-spacing: 1.5px; }
.section-navy .section-title { color: var(--white); }
.section-navy .section-title span { color: var(--navy-light); }
.section-navy .section-sub { color: rgba(255,255,255,0.5); }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  display: block;
}
.section-dark .section-label,
.section-dark2 .section-label { color: rgba(255,255,255,0.5); }

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title span { color: var(--navy); }
.section-dark .section-title,
.section-dark2 .section-title { color: var(--white); }
.section-dark .section-title span,
.section-dark2 .section-title span { color: rgba(255,255,255,0.6); }

.section-sub {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 52px;
  line-height: 1.72;
}
.section-dark .section-sub,
.section-dark2 .section-sub { color: rgba(255,255,255,0.55); }

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-center .section-label { text-align: center; }

/* ─── HERO (HOME) ────────────────────────────────────── */
.hero {
  background: var(--black);
  padding: 100px 0 88px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: var(--black-soft);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -1px;
  margin-bottom: 22px;
  color: var(--white);
}
.hero h1 span { color: var(--navy-light); }

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.hero-card-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
}
.hero-stat-list { display: flex; flex-direction: column; gap: 12px; }
.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-stat-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.hero-stat-num { font-size: 1.35rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 3px; }

/* ─── STATS STRIP ────────────────────────────────────── */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-num span { color: var(--navy); }
.stat-lbl {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 7px;
}

/* ─── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 72px 0 64px;
  color: var(--white);
}
.page-hero .section-label { color: rgba(255,255,255,0.4); }
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.7px;
  line-height: 1.18;
  margin-bottom: 16px;
  color: var(--white);
}
.page-hero p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.72;
}
.page-hero .btn-group { margin-top: 28px; }

/* ─── SERVICE CARDS ──────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  border-color: var(--black-3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--surface-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--black-soft);
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--white);
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 18px;
}
.card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.card-link:hover { gap: 9px; }

/* ─── SOLUTIONS GRID ─────────────────────────────────── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
}
.solution-card:hover { border-color: var(--black-3); box-shadow: var(--shadow-md); }
.solution-icon {
  width: 56px;
  height: 56px;
  background: var(--black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
}
.solution-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.solution-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.68; }

/* ─── WHY US — DARK SECTION ──────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-item {
  padding: 36px 28px;
  background: var(--black-soft);
  transition: var(--transition);
}
.why-item:hover { background: var(--black-card); }
.why-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--navy-light);
  margin-bottom: 14px;
  display: block;
}
.why-item h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-item p { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.68; }

/* ─── PROCESS STEPS ──────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  padding: 36px 28px;
  background: var(--white);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}
.process-step h3 { font-size: 0.98rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ─── FEATURE LIST ───────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  transition: var(--transition);
}
.feature-item:hover { background: var(--surface); }
.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--black);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.feature-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.feature-item p { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }

/* ─── SPLIT SECTION ──────────────────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.split-img-placeholder {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.split-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-card) 100%);
}
.split-img-placeholder i { font-size: 3.5rem; position: relative; z-index: 1; }
.split-img-placeholder span { font-size: 0.88rem; font-weight: 600; position: relative; z-index: 1; }

.img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.img-badge strong { display: block; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.img-badge span { font-size: 0.75rem; font-weight: 600; opacity: 0.85; }

/* ─── CHECK LIST ─────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
}
.check-list li i { color: var(--navy); font-size: 0.95rem; flex-shrink: 0; }
.section-dark .check-list li,
.section-dark2 .check-list li { color: rgba(255,255,255,0.8); }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--black-3); box-shadow: var(--shadow-md); }
.stars { color: var(--navy); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.author-name { font-size: 0.87rem; font-weight: 700; color: var(--text); }
.author-role { font-size: 0.77rem; color: var(--muted); }

/* ─── CTA BAND ───────────────────────────────────────── */
.cta-band {
  background: var(--black);
  padding: 88px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.72;
}

/* ─── TRUST BAR ──────────────────────────────────────── */
.trust-bar {
  background: var(--surface-2);
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black-soft);
  white-space: nowrap;
}
.trust-item i { color: var(--navy); font-size: 1rem; }

/* ─── PARTNERS SECTION ───────────────────────────────── */
.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.partner-badge:hover { border-color: var(--black-3); box-shadow: var(--shadow-md); }
.partner-badge img { height: 30px; width: auto; }
.partner-badge span { font-weight: 700; font-size: 0.9rem; color: var(--text); }

/* ─── CONTACT LAYOUT ─────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}
.contact-sidebar { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--black-3); }
.contact-card-icon {
  width: 42px;
  height: 42px;
  background: var(--black);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.contact-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.88rem; color: var(--muted); display: block; line-height: 1.5; }
.contact-card a:hover { color: var(--navy); }

.hours-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
}
.hours-block h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hours-block h4 i { color: var(--navy); }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; color: var(--text); }

/* ─── FORM ───────────────────────────────────────────── */
.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.form-box h3 { font-size: 1.35rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.form-box .form-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; line-height: 1.65; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}
.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-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
  justify-content: center;
  font-family: inherit;
  cursor: pointer;
  border-radius: var(--radius);
}

.form-notice {
  font-size: 0.76rem;
  color: var(--muted-light);
  text-align: center;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.form-notice i { color: var(--navy); }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success i { font-size: 2.8rem; color: #16A34A; margin-bottom: 14px; }
.form-success h3 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 0.88rem; }

/* ─── CAREERS ────────────────────────────────────────── */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.career-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.career-card:hover { border-color: var(--black-3); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.career-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--surface-2);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.career-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.career-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; flex: 1; }
.career-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.career-meta span { display: flex; align-items: center; gap: 5px; }
.career-meta i { color: var(--black-3); }

/* ─── POLICY PAGES ───────────────────────────────────── */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--navy);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { font-size: 0.93rem; color: var(--muted); line-height: 1.82; margin-bottom: 14px; }
.policy-content ul { margin: 10px 0 14px 20px; list-style: disc; }
.policy-content ul li { font-size: 0.93rem; color: var(--muted); margin-bottom: 7px; line-height: 1.72; }

/* ─── ALERTS ─────────────────────────────────────────── */
.alert {
  padding: 13px 16px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
}
.alert-success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.alert-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: #ffffff;
  color: var(--muted);
  box-shadow: 0 -1px 0 var(--border);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: white;
}
.footer-logo span { color: var(--navy); }
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 22px;
}
.footer-brand .logo { color: var(--text); }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.social-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }

footer h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-links a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a i { font-size: 0.6rem; color: var(--border); }
.footer-links a:hover { color: var(--navy); padding-left: 3px; }

footer h5 { font-weight: 700; font-size: 1rem; }

.footer-contact-list { display: flex; flex-direction: column; gap: 11px; }
.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
}
.fc-item i { color: var(--muted); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.fc-item a { color: var(--muted); transition: var(--transition); }
.fc-item a:hover { color: var(--navy); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.8rem;
  color: var(--muted);
  background: white;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--muted); transition: var(--transition); }
.footer-bottom a:hover { color: var(--navy); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ─── FOOTER SOCIAL (bottom bar) ─────────────────────── */
.footer-social-bar { display: flex; gap: 12px; align-items: center; }
.footer-social-bar a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social-bar a:hover { background: var(--navy); border-color: var(--navy); color: white; }

/* ─── LOGO IMAGE ──────────────────────────────────────── */
.logo-img { height: 44px; width: auto; object-fit: contain; mix-blend-mode: screen; }
.footer-logo img { display: block; mix-blend-mode: multiply; }

/* ─── SECTION IMAGES ─────────────────────────────────── */
.section-img { width: 100%; border-radius: 8px; object-fit: cover; }
.img-bw { filter: grayscale(100%); transition: filter 0.3s ease; }
.img-bw:hover { filter: grayscale(0%); }
.split-img-wrap { position: relative; overflow: hidden; border-radius: 8px; }
.split-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── PARTNER BADGE ──────────────────────────────────── */
.partner-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; border: 1px solid var(--border); border-radius: 6px; background: var(--surface); }
.partner-badge img { height: 28px; width: auto; }

/* ─── TEAM PHOTO ─────────────────────────────────────── */
.team-photo { width: 100%; height: 280px; object-fit: cover; object-position: center 15%; border-radius: 10px 10px 0 0; filter: grayscale(15%); transition: filter 0.3s ease; display: block; }
.team-photo:hover { filter: grayscale(0%); }

/* ─── TEAM GRID ──────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 48px auto 0;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* ─── ABOUT SPLIT ────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-split-img { height: 400px; }
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split-img { height: 260px; }
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar { font-size: 0.76rem; padding: 7px 20px; }
  .topbar span:last-child { display: none; }

  .navbar { padding: 0 20px; height: 60px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 12px 16px;
    gap: 2px;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; font-size: 0.92rem; }
  .btn-nav { display: none; }
  .hamburger { display: block; }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: var(--radius);
    margin: 4px 0;
    padding: 4px;
  }
  .dropdown-menu li a { color: rgba(255,255,255,0.6); }
  .dropdown-menu li a:hover { background: rgba(255,255,255,0.07); color: white; }

  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }

  .hero { padding: 64px 0 56px; }
  .hero::after { display: none; }
  .hero h1 { font-size: 2.1rem; }

  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  .page-hero h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.7rem; }
  .cta-band h2 { font-size: 1.8rem; }

  .services-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr; }

  .split-grid { grid-template-columns: 1fr; gap: 36px; }
  .split-img-placeholder { height: 260px; }

  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .form-2col { grid-template-columns: 1fr; }
  .form-box { padding: 26px 20px; }

  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 48px 0 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 14px; }

  .trust-bar-inner { justify-content: center; gap: 12px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .cta-band .btn-group { align-items: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero .btn-group { flex-direction: column; width: 100%; }
  .hero .btn-group a { justify-content: center; }
  .stats-strip-grid { grid-template-columns: 1fr 1fr; }
}
