/* ===== PAGE SECTIONS ===== */
.page-section { display: none; }
.page-section.active { display: block; }

/* ===== SHARED SECTION STYLES ===== */
section { padding: var(--section-pad); }

.section-label {
  font-size: 10px; letter-spacing: 0.30em;
  text-transform: uppercase; color: var(--orange);
  font-weight: 700;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 30px; height: 2px;
  background: var(--orange); display: block;
}

.section-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(28px, 3.8vw, 50px);
  line-height: 1.08; color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-light);
  font-size: 16px; line-height: 1.75;
  max-width: 540px; font-weight: 300;
}

/* ===== SHARED BUTTONS ===== */
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 15px 34px; font-size: 12.5px;
  font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; gap: 9px;
  transition: all var(--t-base); border: none;
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  padding: 15px 34px; font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; gap: 9px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
  transition: all var(--t-base);
}
.btn-outline:hover {
  border-color: var(--orange);
  background: rgba(244,100,10,0.10);
}

.btn-dark {
  background: var(--navy); color: var(--white);
  padding: 14px 28px; font-size: 12.5px;
  font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; gap: 9px;
  transition: all var(--t-base); border: none;
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--navy);
  padding: 26px 5%;
  display: flex; align-items: center;
  justify-content: center; gap: 48px;
  flex-wrap: wrap;
  border-bottom: 3px solid var(--orange);
}
.trust-item {
  display: flex; align-items: center; gap: 11px;
  color: rgba(255,255,255,0.68);
  font-size: 13px; font-weight: 500; letter-spacing: 0.03em;
}
.trust-icon {
  width: 34px; height: 34px;
  background: rgba(244,100,10,0.14);
  border: 1px solid rgba(244,100,10,0.24);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.trust-div {
  width: 1px; height: 26px;
  background: rgba(255,255,255,0.09);
}

/* ===== SERVICES PREVIEW ===== */
.services-section { background: var(--white); }

.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 50px;
  gap: 36px; flex-wrap: wrap;
}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.service-card {
  background: var(--white);
  padding: 38px 30px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 3px; height: 0;
  background: var(--orange);
  transition: height 0.4s var(--ease);
}

.service-card:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.service-card:hover::before { height: 100%; }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 0.22em;
  color: var(--gray-400); margin-bottom: 18px; display: block;
}
.service-icon {
  font-size: 32px; margin-bottom: 16px; display: block;
}
.service-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 16.5px; margin-bottom: 10px;
  color: var(--navy); line-height: 1.3;
}
.service-desc {
  color: var(--text-light); font-size: 13.5px;
  line-height: 1.70; font-weight: 300;
}
.service-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 18px; color: var(--orange);
  font-size: 11.5px; letter-spacing: 0.10em;
  text-transform: uppercase; font-weight: 600;
  opacity: 0; transform: translateX(-8px);
  transition: all 0.3s var(--ease);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ===== VALUE PROPS ===== */
.values-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.values-section::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(244,100,10,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.values-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.values-section .section-title { color: var(--white); }
.values-section .section-sub { color: var(--gray-400); }
.values-props {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.06);
}
.value-prop {
  background: var(--navy-mid); padding: 30px;
  transition: background 0.3s;
}
.value-prop:hover { background: rgba(26,61,110,0.6); }
.value-prop-icon { font-size: 24px; margin-bottom: 12px; display: block; }
.value-prop h4 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 14.5px; margin-bottom: 7px; color: var(--white);
}
.value-prop p { color: var(--gray-400); font-size: 13px; line-height: 1.65; font-weight: 300; }

/* ===== INDUSTRIES ===== */
.industries-section { background: var(--off-white); }
.industries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 50px;
}
.industry-card {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 40px 30px; background: var(--white);
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease);
}
.industry-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
  transform: scaleX(0); transition: transform 0.4s var(--ease);
  transform-origin: left;
}
.industry-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.industry-card:hover::after { transform: scaleX(1); }
.industry-emoji { font-size: 42px; display: block; margin-bottom: 18px; }
.industry-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 20px; margin-bottom: 12px; color: var(--navy);
}
.industry-desc { color: var(--text-light); font-size: 14px; line-height: 1.75; font-weight: 300; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy); padding: 80px 5%;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(244,100,10,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 78px);
  letter-spacing: 0.03em; line-height: 1;
  margin-bottom: 14px; color: var(--white);
  position: relative; z-index: 1;
}
.cta-banner h2 span { color: var(--orange); }
.cta-banner p {
  color: var(--gray-400); font-size: 16px;
  margin-bottom: 34px; position: relative;
  z-index: 1; font-weight: 300;
}
.cta-banner .btn-primary { position: relative; z-index: 1; }

/* ===== ABOUT PAGE ===== */
.about-section { background: var(--white); padding-top: 140px; }
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-visual { position: relative; }
.about-visual-main {
  width: 100%; aspect-ratio: 4/3;
  background: var(--navy); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,61,110,0.9), rgba(244,100,10,0.05));
}
.about-bg-text {
  position: relative; z-index: 1;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 130px; color: rgba(255,255,255,0.032);
  line-height: 1; user-select: none;
}
.about-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--orange); padding: 18px 22px;
  border-radius: var(--radius-sm); z-index: 2;
}
.about-badge .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px; line-height: 1; display: block; color: white;
}
.about-badge .lbl {
  font-size: 9.5px; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.82;
  font-weight: 600; color: white;
}
.about-content { padding-top: 18px; }
.about-content p {
  color: var(--text-mid); font-size: 15px;
  line-height: 1.82; font-weight: 300; margin-bottom: 18px;
}
.about-highlights { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.highlight {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 17px;
  background: var(--off-white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); transition: border-color 0.3s;
}
.highlight:hover { border-color: var(--orange); }
.highlight-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.highlight span { font-size: 13.5px; font-weight: 500; color: var(--text-dark); }

/* Compliance dual-panel */
.compliance-panel {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--off-white);
}
.compliance-block { padding: 80px 5%; position: relative; overflow: hidden; }
.compliance-block:first-child { border-right: 1px solid var(--gray-200); }
.compliance-list { margin-top: 24px; display: flex; flex-direction: column; gap: 9px; }
.compliance-item {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 17px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 14px;
  color: var(--text-mid); transition: border-color 0.3s;
}
.compliance-item:hover { border-color: var(--orange); }
.compliance-item::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: 13px; flex-shrink: 0; }

/* ===== SERVICES DETAIL PAGE ===== */
.services-detail-section { background: var(--white); padding-top: 140px; }
.services-detail-grid {
  display: flex; flex-direction: column; gap: 1px;
  margin-top: 50px; background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.service-detail-row {
  display: grid; grid-template-columns: 220px 1fr 240px;
  background: var(--white); padding: 42px 44px;
  gap: 40px; align-items: start;
  transition: background 0.3s;
}
.service-detail-row:hover { background: var(--off-white); }
.service-detail-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 68px; color: rgba(11,31,58,0.045);
  line-height: 1; display: block;
}
.service-detail-icon-wrap {
  width: 50px; height: 50px;
  background: rgba(244,100,10,0.08);
  border: 1px solid rgba(244,100,10,0.20);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; margin-top: -10px;
}
.service-detail-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 20px; margin-bottom: 10px; color: var(--navy);
}
.service-detail-desc {
  color: var(--text-light); font-size: 13.5px;
  line-height: 1.80; font-weight: 300; margin-bottom: 16px;
}
.service-detail-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  background: var(--off-white); border: 1px solid var(--gray-200);
  padding: 4px 11px; border-radius: var(--radius-sm);
  font-size: 10.5px; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--text-mid); font-weight: 500;
}
.service-detail-value {
  border-left: 1px solid var(--gray-200); padding-left: 40px;
}
.service-detail-value h5 {
  font-size: 9.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px; font-weight: 700;
}
.service-detail-value p { color: var(--text-light); font-size: 13px; line-height: 1.70; font-weight: 300; }

/* ===== PROJECTS PAGE ===== */
.projects-section { background: var(--off-white); padding-top: 140px; }
.projects-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--gray-200);
  border: 1px solid var(--gray-200); margin-top: 50px;
}
.project-card {
  background: var(--white); padding: 34px 30px;
  position: relative; overflow: hidden;
  cursor: pointer; transition: all 0.4s var(--ease);
}
.project-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
  transform: scaleX(0); transition: transform 0.4s var(--ease);
  transform-origin: left;
}
.project-card:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md); z-index: 1;
}
.project-card:hover::after { transform: scaleX(1); }
.project-industry {
  font-size: 9.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--orange);
  font-weight: 700; margin-bottom: 12px; display: block;
}
.project-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 16.5px; margin-bottom: 10px;
  color: var(--navy); line-height: 1.3;
}
.project-desc { color: var(--text-light); font-size: 13px; line-height: 1.75; font-weight: 300; margin-bottom: 18px; }
.project-metric .value {
  font-family: 'Bebas Neue', sans-serif; font-size: 38px;
  color: var(--navy); line-height: 1; display: block;
}
.project-metric .desc { color: var(--text-light); font-size: 12px; font-weight: 400; margin-top: 2px; display: block; }

/* ===== CAREERS PAGE ===== */
.careers-section { background: var(--white); padding-top: 140px; }
.careers-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; margin-top: 50px;
}
.culture-point {
  display: flex; gap: 16px;
  padding: 22px; background: var(--off-white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  margin-bottom: 14px; transition: border-color 0.3s;
}
.culture-point:hover { border-color: var(--orange); }
.culture-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.culture-point h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14.5px; margin-bottom: 5px; color: var(--navy); }
.culture-point p { color: var(--text-light); font-size: 13px; line-height: 1.60; font-weight: 300; }
.roles-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 21px; color: var(--navy); margin-bottom: 18px; }
.role-card {
  padding: 18px 22px; background: var(--off-white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  margin-bottom: 9px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s; cursor: pointer;
}
.role-card:hover { border-color: var(--orange); background: var(--white); transform: translateX(4px); }
.role-title { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 14.5px; color: var(--navy); margin-bottom: 3px; }
.role-meta { font-size: 12px; color: var(--text-light); font-weight: 400; }
.role-arrow { color: var(--orange); font-size: 17px; opacity: 0; transition: opacity 0.3s; }
.role-card:hover .role-arrow { opacity: 1; }
.no-role-box { margin-top: 22px; padding: 22px; background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); }
.no-role-box h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14.5px; margin-bottom: 8px; color: var(--navy); }
.no-role-box p { color: var(--text-light); font-size: 13px; line-height: 1.6; font-weight: 300; margin-bottom: 14px; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--off-white); padding-top: 140px; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; margin-top: 50px;
}
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-detail-icon {
  width: 42px; height: 42px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.contact-detail-label { font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 3px; }
.contact-detail-value { color: var(--text-dark); font-size: 14.5px; font-weight: 400; line-height: 1.5; }
.contact-social-row { display: flex; gap: 10px; margin-top: 8px; }
.contact-social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 18px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  color: var(--navy); font-size: 13px; font-weight: 600;
  transition: all 0.3s;
}
.contact-social-btn.linkedin:hover { border-color: #0077b5; color: #0077b5; }
.contact-social-btn.facebook:hover { border-color: #1877f2; color: #1877f2; }
.map-wrap {
  margin-top: 28px; height: 175px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.map-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(244,100,10,0.07) 0%, transparent 65%);
}
.map-pin { position: relative; z-index: 1; text-align: center; }
.map-pin .pin-icon { font-size: 30px; display: block; margin-bottom: 7px; filter: drop-shadow(0 0 12px rgba(244,100,10,0.5)); }
.map-pin p { font-size: 13px; color: var(--text-mid); }
.map-pin .pin-sub { color: var(--orange); font-size: 11px; margin-top: 3px; }

/* Contact Form */
.contact-form-wrap {}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mid); font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 13px 15px;
  color: var(--text-dark); font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 115px; }
.form-submit {
  width: 100%; background: var(--navy); color: var(--white);
  border: none; padding: 17px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; border-radius: var(--radius-sm);
  transition: all 0.3s; margin-top: 4px;
}
.form-submit:hover {
  background: var(--orange);
  box-shadow: 0 8px 28px rgba(244,100,10,0.35);
  transform: translateY(-1px);
}
.form-note { color: var(--text-light); font-size: 12px; margin-top: 12px; text-align: center; font-weight: 300; }

.page-section { display: none !important; }
.page-section.active { display: block !important; opacity: 1 !important; transform: none !important; }

/* FORCE NAV FIX */
.page-section { display: none !important; }
.page-section.active { display: block !important; opacity: 1 !important; transform: none !important; pointer-events: all !important; }
