/* =============================================
   INDOCITRA JAYA SENTOSA — style.css
   ============================================= */

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

/* ── CSS Variables ── */
:root {
  --blue:       #0a458b;
  --blue-light: #1e5a9e;
  --orange:     #e67817;
  --teal:       #2c7da0;
  --white:      #ffffff;
  --off-white:  #f4f7fb;
  --text-dark:  #1a1a2e;
  --text-mid:   #444466;
  --text-light: #7a7a99;
  --border:     #dde4ef;
  --shadow:     0 4px 24px rgba(10,69,139,0.10);
  --radius:     12px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: 1rem; color: var(--text-mid); }

.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
  display: block;
}
.section-title { color: var(--blue); margin-bottom: 1rem; }
.section-sub   { color: var(--text-mid); max-width: 560px; }

/* ── Layout Helpers ── */
.container { width: 90%; max-width: 1160px; margin: 0 auto; }
.section    { padding: 80px 0; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.8rem;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: #c9620d;
  border-color: #c9620d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230,120,23,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: #255f7a;
  border-color: #255f7a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44,125,160,0.35);
}

/* ================================================
   HEADER / NAV
   ================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 16px rgba(10,69,139,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.04em;
}
.nav-logo-text .tagline {
  font-size: 0.62rem;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.4rem 0.85rem;
  border-radius: 5px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { left: 12%; right: 12%; }
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* mobile nav */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(10,69,139,0.10);
    gap: 0.1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 0.5rem; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta .btn { display: none; }
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--blue);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-bottom {
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom span { color: var(--orange); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ================================================
   HOME — HERO
   ================================================ */
.hero {
  background: linear-gradient(130deg, var(--blue) 0%, var(--blue-light) 60%, #134f99 100%);
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(230,120,23,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(44,125,160,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--orange);
}
.hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0.8rem;
  font-style: italic;
}
.hero-desc {
  color: rgba(255,255,255,0.62);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Stats bar ── */
.stats-bar {
  background: var(--white);
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 1.6rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.stat-num span { color: var(--orange); }
.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 420px) {
  .stats-inner { grid-template-columns: repeat(1, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ── Intro ── */
.intro-section {
  padding: 80px 0 60px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-body p { margin-bottom: 1rem; line-height: 1.8; }
.intro-accent {
  border-left: 4px solid var(--orange);
  padding-left: 1.2rem;
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.intro-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.intro-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  border-left: 4px solid var(--blue);
  transition: var(--transition);
}
.intro-card:hover { transform: translateX(6px); border-color: var(--orange); }
.intro-card-icon {
  font-size: 1.6rem;
  color: var(--blue);
  width: 40px;
  flex-shrink: 0;
}
.intro-card h4 { font-family: 'Poppins',sans-serif; font-size:0.95rem; font-weight:600; color:var(--blue); }
.intro-card p  { font-size: 0.83rem; color: var(--text-light); margin: 0; }
@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Highlight Cards ── */
.highlights-section { background: var(--off-white); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border-top: 4px solid var(--blue);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.highlight-card:hover::before { transform: scaleX(1); }
.highlight-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(10,69,139,0.14); }
.hc-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.highlight-card h3 { color: var(--blue); margin-bottom: 0.6rem; }
.highlight-card p  { font-size: 0.9rem; }
@media (max-width: 768px) {
  .highlights-grid { grid-template-columns: 1fr; }
}

/* ── Trusted By ── */
.trusted-section { padding: 70px 0; overflow: hidden; }
.trusted-section .section-title { margin-bottom: 0.5rem; }
.trusted-section .section-sub    { margin: 0 auto 3rem; }
/* ══════════════════════════════════════════════
   LOGO BOUNCE SCROLLER
   Pure JS-driven ping-pong — no CSS keyframes.
   JS (script.js) moves the track via requestAnimationFrame.
   CSS here only handles layout and appearance.
   ══════════════════════════════════════════════ */
.logos-track-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0.75rem 0;
}
.logos-track-wrapper::before,
.logos-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.logos-track-wrapper::before { left: 0;  background: linear-gradient(to right, var(--white), transparent); }
.logos-track-wrapper::after  { right: 0; background: linear-gradient(to left,  var(--white), transparent); }

.logos-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 3.5rem;
  align-items: center;
  padding: 1rem 0;
  will-change: transform;
  /* animation is handled entirely by JS — no CSS animation property here */
}

.logos-track img {
  height: 58px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(40%) opacity(0.8);
  transition: filter 0.28s ease, transform 0.28s ease;
  flex-shrink: 0;
  display: block;
  user-select: none;
  pointer-events: auto;
}
.logos-track img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}
.logos-track img.logo-large {
  height: 92px;
  max-width: 230px;
}

@media (max-width: 1024px) {
  .logos-track { gap: 2.5rem; }
}
@media (max-width: 768px) {
  .logos-track { gap: 2rem; }
  .logos-track img           { height: 40px; max-width: 100px; }
  .logos-track img.logo-large{ height: 60px; max-width: 150px; }
  .logos-track-wrapper::before,
  .logos-track-wrapper::after { width: 50px; }
}

/* ══════════════════════════════════════════════
   PAGE TRANSITION OVERLAY
   A thin bar that sweeps across on every navigation.
   ══════════════════════════════════════════════ */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  /* The bar: starts as a full-width line at the top */
}
#page-transition .pt-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 60%, var(--teal) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
#page-transition .pt-veil {
  position: absolute;
  inset: 0;
  background: var(--white);
  opacity: 0;
  transition: opacity 0.22s ease;
}
/* State: loading — bar grows + veil fades in */
#page-transition.loading .pt-bar  { transform: scaleX(0.85); }
#page-transition.loading .pt-veil { opacity: 0.55; }
/* State: done — bar completes, both fade out */
#page-transition.done .pt-bar  { transform: scaleX(1); transition-duration: 0.15s; }
#page-transition.done .pt-veil { opacity: 0; }

/* Page entry fade — every <main> or body content fades in on load */
body { animation: pageFadeIn 0.38s ease both; }
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(130deg, var(--blue) 0%, var(--blue-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(230,120,23,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section p  { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.cta-actions    { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ================================================
   ABOUT PAGE
   ================================================ */
.page-hero {
  background: linear-gradient(130deg, var(--blue) 0%, var(--blue-light) 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(230,120,23,0.2) 0%, transparent 70%);
}
.page-hero .section-label { color: rgba(255,255,255,0.6); }
.page-hero h1  { color: var(--white); }
.page-hero p   { color: rgba(255,255,255,0.65); max-width: 580px; margin-top: 0.75rem; }

.story-section { padding: 80px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.story-body p { margin-bottom: 1.2rem; line-height: 1.85; }
.story-highlight {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.story-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--orange);
}
.story-badge i { font-size: 1.4rem; color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.story-badge h4 { font-family: 'Poppins', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--blue); margin-bottom: 0.25rem; }
.story-badge p  { font-size: 0.85rem; margin: 0; }
@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.mv-section { background: var(--off-white); padding: 80px 0; }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.mv-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
}
.mv-card.mission::after { background: var(--orange); }
.mv-card.vision::after  { background: var(--teal); }
.mv-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.mv-card.mission .mv-card-label { color: var(--orange); }
.mv-card.vision  .mv-card-label { color: var(--teal); }
.mv-card h3 { color: var(--blue); margin-bottom: 1rem; font-size: 1.3rem; }
.mv-card p  { line-height: 1.8; }
@media (max-width: 600px) {
  .mv-grid { grid-template-columns: 1fr; }
}

.why-section { padding: 80px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.why-item:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-3px); }
.why-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.why-item h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--blue); margin-bottom: 0.35rem; }
.why-item p  { font-size: 0.87rem; margin: 0; }
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ================================================
   SERVICES PAGE
   ================================================ */
.services-section { padding: 80px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { border-color: var(--blue); box-shadow: 0 20px 50px rgba(10,69,139,0.14); transform: translateY(-8px); }
.service-card-top {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
}
.service-card-top::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.service-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}
.service-card-top h3 { color: var(--white); font-size: 1.3rem; }
.service-card-body { padding: 1.75rem 2rem; flex: 1; }
.service-card-body p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.25rem; }
.service-features { display: flex; flex-direction: column; gap: 0.5rem; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--text-mid);
}
.service-features li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-card-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* ── Process Section ── */
.process-section { background: var(--off-white); padding: 80px 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 3px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.process-step:hover .step-num { background: var(--orange); color: var(--white); border-color: var(--orange); }
.process-step h4 { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--blue); margin-bottom: 0.4rem; }
.process-step p  { font-size: 0.83rem; }
@media (max-width: 700px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { color: var(--blue); margin-bottom: 0.5rem; }
.contact-form-wrap > p { font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}
input, textarea, select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,69,139,0.08);
}
textarea { resize: vertical; min-height: 130px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-info-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.1rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.info-item:last-child { margin-bottom: 0; }
.info-item i { color: var(--blue); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.info-item div p { font-size: 0.88rem; margin: 0; }
.info-item div strong { font-size: 0.8rem; color: var(--text-dark); display: block; margin-bottom: 0.2rem; }
.info-item a { color: var(--teal); transition: var(--transition); }
.info-item a:hover { color: var(--orange); }
.contact-social-card {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--radius);
  padding: 1.75rem;
  color: var(--white);
}
.contact-social-card h4 { font-family:'Poppins',sans-serif; font-size:0.8rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.6); margin-bottom:1rem; }
.contact-social-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; }
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #0077b5;
  color: var(--white);
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.linkedin-btn:hover { background: #005e93; transform: translateY(-2px); }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ================================================
   TESTIMONIAL PAGE
   ================================================ */
.testimonial-coming {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 80px 1rem;
}
.coming-icon {
  font-size: 4rem;
  color: var(--border);
  margin-bottom: 1.5rem;
}
.testimonial-coming h2 { color: var(--blue); margin-bottom: 0.75rem; }
.testimonial-coming p  { font-size: 1rem; color: var(--text-light); max-width: 420px; }

/* ================================================
   UTILITY
   ================================================ */
.divider {
  width: 48px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0.75rem 0 1.5rem;
}
.divider.center { margin: 0.75rem auto 1.5rem; }

.tag {
  display: inline-block;
  background: rgba(10,69,139,0.08);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

/* Scroll reveal (JS-driven) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Whatsapp floating */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  z-index: 9998; /* stays above everything including nav overlays */
  transition: var(--transition);
  text-decoration: none;
  visibility: visible;
  opacity: 1;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37,211,102,0.55);
}
/* Ensure it always shows on mobile — never hidden by media queries */
@media (max-width: 768px) {
  .wa-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}
