:root {
  --navy: #0d1b3e;
  --navy-mid: #162550;
  --navy-light: #1e3370;
  --gold: #c9a84c;
  --gold-bright: #e2c06a;
  --gold-light: #f5e9cc;
  --white: #ffffff;
  --off-white: #f8f7f2;
  --light-gray: #f2f3f7;
  --text: #1a1a2e;
  --text-light: #555;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
}

/* ICONS (replaces emoji throughout the site) */
.icon-inline {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.14em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* PAGE SYSTEM */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* TOP BAR */
.topbar {
  background: var(--navy);
  padding: 9px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left {
  display: flex;
  gap: 28px;
  align-items: center;
}
.topbar-left a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.topbar-left a:hover {
  color: var(--gold);
}
.topbar-right {
  display: flex;
  gap: 16px;
}
.topbar-right a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.topbar-right a:hover {
  color: var(--gold);
}
.topbar-divider {
  color: rgba(255, 255, 255, 0.25);
}

/* NAV */
nav {
  background: #fff;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 20px rgba(13, 27, 62, 0.1);
  position: sticky;
  top: 0;
  z-index: 200;
}
.logo {
  padding: 14px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-text .logo-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.logo-text .logo-tag {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #444;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 24px 18px;
  display: block;
  border-bottom: 3px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  cursor: pointer;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* HAMBURGER (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 22px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 210;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* BUTTONS */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 13px 32px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}
.btn-outline-white {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  padding: 12px 32px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
}
.btn-outline-navy {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 11px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

/* PAGE HERO */
.page-hero {
  background: var(--navy);
  padding: 64px 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(201, 168, 76, 0.07);
}
.page-hero::before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 50px solid rgba(201, 168, 76, 0.05);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.breadcrumb span {
  color: var(--gold);
}
.page-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.page-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
}

/* SECTION SHARED */
.section-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-heading span {
  color: var(--gold);
}
.heading-bar {
  width: 48px;
  height: 4px;
  background: var(--gold);
  margin-bottom: 28px;
  border-radius: 2px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 580px;
}

/* ─── HOME HERO SLIDER ─── */
.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active {
  opacity: 1;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 27, 62, 0.88) 0%,
    rgba(13, 27, 62, 0.6) 55%,
    rgba(13, 27, 62, 0.25) 100%
  );
}
.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 70px;
  max-width: 680px;
}
.slide-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.slide-content h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 22px;
}
.slide-content h2 em {
  font-style: normal;
  color: var(--gold);
}
.slide-content p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 38px;
  line-height: 1.75;
  max-width: 480px;
}
.slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 48px;
  height: 48px;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.slider-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.slider-prev {
  left: 16px;
}
.slider-next {
  right: 16px;
}
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 4px;
}

/* STATS STRIP */
.stats-strip {
  background: var(--navy);
  padding: 28px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ABOUT SNIPPET */
.about-home {
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #fff;
}
.about-home-img {
  position: relative;
}
.about-home-img .img-box {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(201, 168, 76, 0.3);
}
.about-home-img .badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 24px;
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-home-text .section-label {
  display: block;
}
.about-home-text p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}
.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0 32px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
}
.value-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* SERVICES HOME */
.services-home {
  background: var(--off-white);
  padding: 80px 60px;
}
.services-home-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e0e0e0;
}
.svc-card {
  background: #fff;
  padding: 36px 28px;
  transition: all 0.25s;
  cursor: pointer;
}
.svc-card:hover {
  background: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 27, 62, 0.2);
}
.svc-card:hover .svc-title,
.svc-card:hover .svc-text {
  color: #fff;
}
.svc-card:hover .svc-icon-wrap {
  background: var(--gold);
}
.svc-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: background 0.25s;
}
.svc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color 0.25s;
}
.svc-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
  transition: color 0.25s;
}
.svc-arrow {
  margin-top: 18px;
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.2s;
}
.svc-card:hover .svc-arrow {
  transform: translateX(6px);
}

/* WHY US */
.why-us {
  background: var(--navy);
  padding: 80px 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(201, 168, 76, 0.06);
}
.why-us-inner {
  position: relative;
  z-index: 1;
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
.why-heading span {
  color: var(--gold);
}
.why-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 32px;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 20px;
}
.why-feature-icon {
  font-size: 24px;
  margin-bottom: 10px;
}
.why-feature h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.why-feature p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* INDUSTRIES HOME */
.industries-home {
  padding: 80px 60px;
  background: #fff;
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.ind-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 12px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 4px;
}
.ind-item:hover .ind-icon-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.ind-item:hover .ind-icon-circle svg {
  stroke: #fff;
}
.ind-item .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.ind-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: all 0.25s;
  background: transparent;
}
.ind-icon-circle svg {
  transition: stroke 0.25s;
}

/* TEAM HOME */
.team-home {
  background: var(--off-white);
  padding: 80px 60px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13, 27, 62, 0.07);
  transition: box-shadow 0.2s;
}
.team-card:hover {
  box-shadow: 0 10px 36px rgba(13, 27, 62, 0.14);
}
.team-photo {
  height: 240px;
  background: linear-gradient(135deg, #c5d4e8 0%, #8eaac8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: var(--navy);
  position: relative;
}
.team-photo-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
}
.team-info {
  padding: 24px;
}
.team-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(105deg, var(--gold) 0%, var(--gold-bright) 100%);
  padding: 64px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-text h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.cta-text p {
  font-size: 15px;
  color: rgba(13, 27, 62, 0.7);
}
.cta-btns {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ─── ABOUT PAGE ─── */
.about-page {
  padding: 80px 60px;
  background: #fff;
}
.about-page-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: start;
}
.about-page-text p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.95;
  margin-bottom: 18px;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}
.about-stat {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 22px 24px;
}
.about-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.about-stat-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mission-box {
  background: var(--navy);
  padding: 36px;
  color: #fff;
  margin-top: 0;
}
.mission-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.mission-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}
.values-box {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 32px;
  margin-top: 24px;
}
.values-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.values-box ul {
  list-style: none;
}
.values-box ul li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.values-box ul li::before {
  content: "◆";
  color: var(--gold);
  font-size: 8px;
  flex-shrink: 0;
}
.values-box ul li:last-child {
  border-bottom: none;
}

/* ─── SERVICES PAGE ─── */
.services-page {
  padding: 80px 60px;
  background: #fff;
}
.services-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #eee;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tab-btn.active,
.tab-btn:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.svc-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-full-card {
  border: 1px solid #e8e8e8;
  padding: 28px 24px;
  background: #fff;
  transition: all 0.2s;
}
.svc-full-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(13, 27, 62, 0.08);
}
.svc-full-card .icon {
  font-size: 30px;
  margin-bottom: 14px;
}
.svc-full-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.svc-full-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ─── INDUSTRIES PAGE ─── */
.industries-page {
  padding: 80px 60px;
  background: #fff;
}
.ind-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.ind-full-card {
  border: 1px solid #e8e8e8;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ind-full-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(13, 27, 62, 0.08);
}
.ind-full-card:hover .ind-icon-circle {
  background: var(--gold);
  border-color: var(--gold);
}
.ind-full-card:hover .ind-icon-circle svg {
  stroke: #fff;
}
.ind-full-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

/* ─── TEAM PAGE ─── */
.team-page {
  padding: 80px 60px;
  background: #fff;
}
.team-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

/* ─── CONTACT PAGE ─── */
.contact-page {
  padding: 80px 60px;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  margin-top: 48px;
}
.contact-info-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.c-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.c-text p {
  font-size: 11.5px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.c-text strong {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  display: block;
  line-height: 1.5;
}
.c-text a {
  text-decoration: none;
  color: var(--navy);
}
.whatsapp-strip {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 20px 24px;
  margin-top: 32px;
}
.whatsapp-strip h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.whatsapp-strip p {
  font-size: 13px;
  color: var(--text-light);
}
.contact-form-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea {
  height: 130px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  padding: 70px 60px 0;
  color: rgba(255, 255, 255, 0.8);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .f-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand .f-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.footer-brand .f-logo-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.footer-brand .f-logo-tag {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-contact-mini a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-contact-mini a:hover {
  color: var(--gold);
}
.footer-col h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before {
  content: "→";
  font-size: 10px;
  color: var(--gold);
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

/* RESPONSIVE */
/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  .about-home,
  .about-page-grid,
  .why-us-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid,
  .svc-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid,
  .team-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ind-grid,
  .ind-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .about-home {
    padding: 50px 40px;
  }
  .services-home,
  .why-us,
  .industries-home,
  .team-home {
    padding: 60px 40px;
  }
  .why-features {
    grid-template-columns: 1fr 1fr;
  }
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-list {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .slide-content h2 {
    font-size: 36px;
  }
  .section-heading {
    font-size: 26px;
  }
}

/* ── MOBILE (max 768px) ── */
@media (max-width: 768px) {
  /* TOPBAR */
  .topbar {
    padding: 6px 16px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .topbar-left {
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
  }
  .topbar-right {
    font-size: 11px;
  }

  /* NAV */
  nav {
    padding: 0 16px;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: relative;
  }
  .logo {
    padding: 10px 0;
  }
  .logo-text .logo-name {
    font-size: 14px;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    flex-wrap: nowrap;
    box-shadow: 0 10px 24px rgba(13, 27, 62, 0.12);
    transition: max-height 0.3s ease;
    border-top: none;
  }
  .nav-links.open {
    max-height: 420px;
  }
  .nav-links a {
    padding: 14px 20px;
    font-size: 12px;
    letter-spacing: 0.02em;
    border-bottom: 1px solid #f2f2f2;
  }

  /* HERO */
  .hero {
    height: 420px;
  }
  .slide-content {
    padding: 0 20px;
  }
  .slide-content h2 {
    font-size: 24px;
    line-height: 1.2;
  }
  .slide-content p {
    font-size: 13px;
  }
  .slide-eyebrow {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .slide-btns {
    flex-direction: column;
    gap: 10px;
  }
  .slide-btns .btn-gold,
  .slide-btns .btn-outline-white {
    padding: 11px 24px;
    font-size: 11.5px;
    text-align: center;
  }
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .slider-dots {
    bottom: 14px;
  }

  /* STATS */
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
  }
  .stat-num {
    font-size: 26px;
  }
  .stat-label {
    font-size: 10px;
  }
  .stat-item {
    padding: 12px 8px;
  }

  /* SECTIONS PADDING */
  .about-home,
  .services-home,
  .why-us,
  .industries-home,
  .team-home,
  .cta-banner,
  .about-page,
  .services-page,
  .industries-page,
  .team-page,
  .contact-page,
  footer,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }
  .about-home,
  .services-home,
  .why-us,
  .industries-home,
  .team-home {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /* ABOUT HOME */
  .about-home-img .img-box {
    height: 280px;
    font-size: 56px;
  }
  .about-home-img .badge {
    right: 0;
    bottom: -16px;
    font-size: 11px;
    padding: 14px 16px;
  }
  .values-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* SECTION HEADINGS */
  .section-heading {
    font-size: 24px;
  }
  .section-label {
    font-size: 10.5px;
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .svc-full-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .services-tabs {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 4px;
  }
  .tab-btn {
    font-size: 11px;
    padding: 10px 14px;
  }
  .services-home-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  /* WHY US */
  .why-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .why-heading {
    font-size: 26px;
  }

  /* INDUSTRIES */
  .ind-grid,
  .ind-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ind-item,
  .ind-full-card {
    padding: 20px 12px;
  }

  /* TEAM */
  .team-grid,
  .team-full-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-photo {
    height: 200px;
    font-size: 56px;
  }

  /* CTA BANNER */
  .cta-banner {
    padding: 40px 16px;
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .cta-text h2 {
    font-size: 22px;
  }
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .cta-btns a {
    text-align: center;
    padding: 12px;
  }

  /* PAGE HERO */
  .page-hero {
    padding: 40px 16px;
  }
  .page-hero h1 {
    font-size: 28px;
  }
  .page-hero p {
    font-size: 13px;
  }

  /* ABOUT PAGE */
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .about-stat-num {
    font-size: 28px;
  }
  .mission-box,
  .values-box {
    padding: 24px;
  }

  /* CONTACT */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .whatsapp-strip .btn-gold {
    font-size: 10px;
    padding: 8px 12px;
  }

  /* FOOTER */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 11px;
  }
  .footer-brand p {
    font-size: 12px;
  }
}

/* ── SMALL MOBILE (max 400px) ── */
@media (max-width: 400px) {
  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .logo-text .logo-name {
    font-size: 12.5px;
  }
  .nav-links a {
    font-size: 9.5px;
    padding: 10px 7px;
  }
  .slide-content h2 {
    font-size: 20px;
  }
  .hero {
    height: 380px;
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-heading {
    font-size: 21px;
  }
  .ind-grid,
  .ind-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
