/* ══════════════════════════════════════════════════════════════
   AGILE CCS — Global Stylesheet
   Colors: Navy #1a2e4a | Orange #E8621A | Light #f7f8fa | White #fff
   ══════════════════════════════════════════════════════════════ */

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

:root {
  --navy:       #1a2e4a;
  --navy-dark:  #111f33;
  --navy-mid:   #243654;
  --orange:     #E8621A;
  --orange-lt:  #f07840;
  --orange-dk:  #c4501a;
  --white:      #ffffff;
  --light:      #f7f8fa;
  --light2:     #eef0f4;
  --gray:       #6b7280;
  --gray-lt:    #9ca3af;
  --text:       #1f2937;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
  --trans:      0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 96px 0; }
.section-light  { background: var(--light); }
.section-dark   { background: var(--navy); }
.section-navy   { background: var(--navy-dark); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,98,26,0.1);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.section-label.light { background: rgba(232,98,26,0.18); }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }

.section-intro {
  font-size: 1.08rem;
  color: var(--gray);
  max-width: 680px;
  margin-bottom: 56px;
}
.section-intro.light { color: rgba(255,255,255,0.72); }

.accent-text { color: var(--orange); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 4px 18px rgba(232,98,26,0.35);
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,98,26,0.45);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.55);
  transition: all var(--trans);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}

.btn-full { width: 100%; text-align: center; }

/* ── Navbar ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 120px;
  display: flex;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
  transition: box-shadow var(--trans);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  height: 110px;
  width: auto;
  max-width: 450px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

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

.nav-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
  letter-spacing: 0.02em;
}

.nav-item:hover {
  color: var(--orange);
  background: rgba(232,98,26,0.07);
}

.nav-item.active { color: var(--orange) !important; }

.nav-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: all var(--trans);
  box-shadow: 0 3px 14px rgba(232,98,26,0.38);
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,98,26,0.48);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* New image has bright golden-hour sunset on the LEFT where text lives — strengthen left overlay */
  background:
    linear-gradient(
      to right,
      rgba(14,26,44,0.93) 0%,
      rgba(17,31,51,0.88) 30%,
      rgba(20,38,62,0.68) 60%,
      rgba(26,46,74,0.30) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 2rem;
  margin: 0 auto;
  width: 100%;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,98,26,0.15);
  border: 1px solid rgba(232,98,26,0.3);
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-accent {
  color: var(--orange);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.3s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 14px;
  position: relative;
}
.scroll-dot::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(12px); opacity: 0.4; }
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex: 1;
  justify-content: center;
  min-width: 180px;
}
.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* ── Mission ──────────────────────────────────────────────── */
.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.mission-lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 18px;
}

.mission-body {
  color: var(--gray);
  margin-bottom: 36px;
  line-height: 1.75;
}

.mission-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.pillar:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.pillar-icon {
  width: 38px;
  height: 38px;
  background: rgba(232,98,26,0.1);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--orange);
}
.pillar-icon svg { width: 18px; height: 18px; }

.pillar-title { font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 2px; }
.pillar-desc  { font-size: 0.85rem; color: var(--gray); }

/* Mission Visual side */
.mission-visual { display: flex; flex-direction: column; gap: 24px; }

.mission-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: #fff;
}
.mission-card-icon { margin: 0 auto 20px; width: 80px; height: 80px; }
.mission-card-stat  { font-family: 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--orange); margin-bottom: 8px; }
.mission-card-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; text-transform: uppercase; }

.mission-quote {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid var(--light2);
}
.quote-mark { width: 40px; height: 30px; margin-bottom: 10px; display: block; }
.mission-quote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}

/* ── Approach ─────────────────────────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.approach-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: background var(--trans), transform var(--trans), border-color var(--trans);
  opacity: 0;
  transform: translateY(30px);
}

.approach-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, background var(--trans), border-color var(--trans);
}

.approach-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(232,98,26,0.5);
  transform: translateY(-4px);
}

.approach-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(232,98,26,0.18);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}

.approach-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,98,26,0.15);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--orange);
  margin-bottom: 20px;
}
.approach-icon svg { width: 22px; height: 22px; }

.approach-card h3 {
  font-size: 1.06rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.approach-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.approach-result {
  border-radius: var(--radius);
  border: 1px solid rgba(232,98,26,0.35);
  background: rgba(232,98,26,0.08);
}

.approach-result-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 22px 28px;
}
.result-icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
  flex-shrink: 0;
}
.approach-result p {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.6;
}
.approach-result strong { color: #fff; }

/* ── Services ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid var(--light2);
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  opacity: 0;
  transform: translateY(24px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,98,26,0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--orange);
  transition: background var(--trans);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-icon { background: var(--orange); color: #fff; }

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

.engagement-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 0.9rem;
}
.engagement-note svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
.engagement-note strong { color: #fff; }

/* ── About ────────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-lead {
  font-size: 1.12rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-body {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  line-height: 1.75;
}
.about-body strong { color: rgba(255,255,255,0.9); }

.about-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}
.about-detail-item svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.about-detail-item small { color: rgba(255,255,255,0.5); font-size: 0.83rem; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: background var(--trans), transform var(--trans);
}
.value-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}
.value-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.value-card h3 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.value-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange-dk) 0%, var(--orange) 60%, var(--orange-lt) 100%);
  padding: 56px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-banner-left { flex: 1; min-width: 260px; }
.cta-banner-left h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-banner-left p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

.cta-banner-right { flex: 1.4; min-width: 280px; display: flex; flex-direction: column; gap: 20px; }
.cta-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}
.cta-checks li svg { width: 18px; height: 18px; flex-shrink: 0; color: #fff; margin-top: 1px; }

.cta-banner .btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
  align-self: flex-start;
}
.cta-banner .btn-primary:hover {
  background: var(--navy-dark);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.contact-info-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,98,26,0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-lt); margin-bottom: 3px; }
.contact-info-value { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.contact-info-value:hover { color: var(--orange); }
.contact-info-value small { font-weight: 400; color: var(--gray); }

.contact-tagline {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-tagline svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.contact-tagline p { font-size: 0.88rem; color: rgba(255,255,255,0.78); line-height: 1.6; }
.contact-tagline strong { color: #fff; }

/* ── Form ─────────────────────────────────────────────────── */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light2);
}

.contact-form { display: flex; flex-direction: column; gap: 22px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.req { color: var(--orange); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--light2);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--light);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,26,0.12);
  background: #fff;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #dc2626;
}

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

.form-error {
  font-size: 0.8rem;
  color: #dc2626;
  display: none;
}
.form-error.show { display: block; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #15803d;
}
.form-success svg { width: 20px; height: 20px; color: #16a34a; flex-shrink: 0; }
.form-success.show { display: flex; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { flex: 1; min-width: 200px; }
.footer-logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo {
  height: 120px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-style: italic; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 160px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
  font-weight: 500;
}
.footer-links a:hover { color: var(--orange); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 180px;
}
.footer-contact a,
.footer-contact span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
}
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ── Utility ──────────────────────────────────────────────── */
.hide-sm { display: inline; }

/* ── Scroll-Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 960px) {
  #navbar { height: 85px; }
  .logo-img { height: 75px; max-width: 300px; }

  .section { padding: 72px 0; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: rgba(17,31,51,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px 2rem 32px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-item { color: rgba(255,255,255,0.9) !important; padding: 12px 16px; border-radius: var(--radius); }
  .nav-cta { margin-top: 8px; text-align: center; }

  .mission-layout,
  .approach-grid,
  .about-layout,
  .contact-layout { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .mission-visual { order: -1; flex-direction: row; }
  .mission-card { flex: 1; }
  .mission-quote { flex: 1; }

  .trust-bar-inner { flex-wrap: wrap; justify-content: center; gap: 0; }
  .trust-divider { display: none; }
  .trust-item { min-width: 45%; justify-content: flex-start; padding: 14px 16px; }

  .cta-banner-inner { flex-direction: column; gap: 28px; }
  .cta-banner .btn-primary { align-self: flex-start; }

  .contact-form-wrapper { padding: 30px 24px; }
}

/* ── Creative Animations ────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--orange);
  z-index: 10000;
  pointer-events: none;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(232,98,26,0.6);
}

.underline-reveal {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.underline-reveal::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.visible .underline-reveal::after,
.section.visible .underline-reveal::after {
  width: 100%;
}

.pillar {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--trans);
}
.pillar.pillar-visible {
  opacity: 1;
  transform: translateX(0);
}
.pillar:hover {
  transform: translateX(4px);
}

.value-card {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, background var(--trans);
}
.value-card.value-visible {
  opacity: 1;
  transform: translateX(0);
}
.value-card:hover {
  transform: translateX(4px);
}

.pulse-btn {
  animation: pulse-shadow 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes pulse-shadow {
  0% { box-shadow: 0 0 0 0 rgba(232,98,26,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(232,98,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,98,26,0); }
}

/* Mobile */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .section-title { font-size: 1.75rem; }

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

  .hero-headline { font-size: 2.4rem; }
  .hero-sub { font-size: 0.95rem; }
  .hide-sm { display: none; }

  .mission-visual { flex-direction: column; }

  .trust-item { min-width: 100%; }

  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links,
  .footer-contact { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}
