/* =============================================
   PROFIVIA — MAIN STYLESHEET
   Matches original HTML design exactly
   ============================================= */

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

:root {
  --navy: #1a2340;
  --red: #c0392b;
  --red-bright: #e74c3c;
  --blue: #1e4d8c;
  --blue-mid: #2563a8;
  --blue-light: #3b82c4;
  --white: #ffffff;
  --off-white: #f4f6fb;
  --gray: #6b7280;
  --light-gray: #e8edf5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; }

#bg-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.18;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(26,35,64,0.97); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-image { height: 58px; width: auto; display: block; border-radius: 8px;}
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13px;
  font-weight: 500; letter-spacing: 0.5px; transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--red-bright); transition: width 0.3s;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(90deg, var(--red), #e91e1e); color: white;
  border: none; padding: 10px 22px; border-radius: 6px; font-size: 14px;
  font-weight: 600; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; letter-spacing: 0.5px;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(192,57,43,0.4); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh; background: var(--navy); position: relative;
  overflow: hidden; display: flex; align-items: center; padding: 72px 5% 0;
}
.hero-bg-rings {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px; pointer-events: none;
}
.hero-bg-rings circle { fill: none; }
.hero-watermark { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero-watermark-text {
  position: absolute; font-family: 'Bebas Neue', sans-serif; font-size: 220px;
  color: rgba(255,255,255,0.025); letter-spacing: 20px; white-space: nowrap;
  top: 50%; left: 50%; transform: translate(-50%, -50%); user-select: none;
  animation: watermarkPulse 6s ease-in-out infinite;
}
@keyframes watermarkPulse {
  0%,100%{opacity:0.025;transform:translate(-50%,-50%) scale(1);}
  50%{opacity:0.05;transform:translate(-50%,-50%) scale(1.02);}
}
@keyframes orbFloat {
  0%{transform:translateY(100vh) scale(0);opacity:0;}
  10%{opacity:1;}
  90%{opacity:0.6;}
  100%{transform:translateY(-200px) scale(1.5);opacity:0;}
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; width: 100%; max-width: 1300px; margin: 0 auto; position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,0.15); border: 1px solid rgba(192,57,43,0.3);
  border-radius: 50px; padding: 6px 16px; margin-bottom: 24px;
  color: var(--red-bright); font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
}
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-bright); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }
.hero-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 6vw, 88px);
  color: white; line-height: 0.95; letter-spacing: 2px; margin-bottom: 24px;
}
.hero-title .accent { color: var(--red-bright); }
.hero-title .blue-word {
  background: linear-gradient(90deg, #3b82c4, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { color: rgba(255,255,255,0.65); font-size: 17px; font-weight: 300; line-height: 1.7; max-width: 480px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(90deg, var(--red), #e91e1e); color: white;
  padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 600;
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,57,43,0.45); color: white; }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.25); color: white;
  padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 500;
  text-decoration: none; transition: border-color 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); color: white; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: white; letter-spacing: 1px; line-height: 1; }
.stat-num span { color: var(--red-bright); }
.stat-label { color: rgba(255,255,255,0.5); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-card-main {
  background: linear-gradient(135deg, #1e3a6e, #162850);
  border: 1px solid rgba(59,130,196,0.25); border-radius: 20px; padding: 36px;
  width: 100%; max-width: 420px; box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard { 0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)} }
.hero-card-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--blue-light); margin-bottom: 20px; }
.hero-card-title { font-size: 22px; font-weight: 700; color: white; margin-bottom: 24px; }
.hero-card-items { display: flex; flex-direction: column; gap: 14px; }
.hci {
  display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.05);
  border-radius: 10px; padding: 14px; border: 1px solid rgba(255,255,255,0.07);
}
.hci-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.hci-icon.red { background: rgba(192,57,43,0.2); }
.hci-icon.blue { background: rgba(30,77,140,0.4); }
.hci-icon.teal { background: rgba(16,185,129,0.15); }
.hci-text { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); }
.hci-sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.hero-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--red), #c0392b);
  border-radius: 14px; padding: 16px 20px; color: white; text-align: center;
  box-shadow: 0 12px 30px rgba(192,57,43,0.4);
}
.hero-badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 32px; line-height: 1; }
.hero-badge-txt { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }

/* ─── SHARED SECTION STYLES ─── */
section { padding: 90px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--red); margin-bottom: 12px; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4vw, 56px); letter-spacing: 1px; line-height: 1; color: var(--navy); margin-bottom: 16px; }
.section-title .red { color: var(--red); }
.section-title .blue { color: var(--blue-mid); }
.section-sub { color: var(--gray); font-size: 16px; font-weight: 300; line-height: 1.7; max-width: 560px; }
.divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--red), var(--blue)); border-radius: 3px; margin: 16px 0 32px; }

/* ─── ABOUT ─── */
#about { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-block { position: relative; }
.about-img-placeholder { width: 100%; aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; position: relative; }
.about-logo-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.about-value { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--navy); }
.about-value-dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--blue)); flex-shrink: 0; }
.sectors-strip { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.sector-pill {
  display: inline-flex; align-items: center; gap: 6px; background: var(--off-white);
  border: 1px solid var(--light-gray); border-radius: 50px; padding: 7px 16px;
  font-size: 13px; font-weight: 500; color: var(--navy);
}
.vision-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 72px; }
.vm-card { border-radius: 20px; padding: 40px; }
.vm-card.vision { background: var(--off-white); border: 1px solid var(--light-gray); }
.vm-card.mission { background: var(--navy); }
.vm-card-icon { font-size: 32px; margin-bottom: 16px; }
.vm-card-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.vm-card.vision .vm-card-tag { color: var(--red); }
.vm-card.mission .vm-card-tag { color: #f87171; }
.vm-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; margin-bottom: 14px; line-height: 1.1; }
.vm-card.vision .vm-card-title { color: var(--navy); }
.vm-card.mission .vm-card-title { color: white; }
.vm-card-text { font-size: 14px; line-height: 1.8; }
.vm-card.vision .vm-card-text { color: var(--gray); }
.vm-card.mission .vm-card-text { color: rgba(255,255,255,0.55); }

/* ─── SERVICES ─── */
#services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 50px; }
.service-card {
  background: white; border-radius: 16px; padding: 36px 28px;
  border: 1px solid rgba(26,35,64,0.08); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
  background: linear-gradient(180deg, var(--red), var(--blue));
  transition: height 0.3s; border-radius: 0 0 4px 0;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,35,64,0.12); border-color: transparent; }
.service-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 22px; background: linear-gradient(135deg, rgba(192,57,43,0.1), rgba(30,77,140,0.1)); }
.service-name { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--gray); line-height: 1.65; }
.service-bullets { margin-top: 12px; list-style: none; display: flex; flex-direction: column; gap: 5px; }
.service-bullets li { font-size: 13px; color: var(--gray); display: flex; align-items: flex-start; gap: 6px; }
.service-bullets li::before { content: '›'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ─── WHY ─── */
#why { background: var(--navy); }
#why .section-title { color: white; }
#why .section-sub { color: rgba(255,255,255,0.55); }
#why .section-tag { color: #f87171; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 50px; }
.why-points { display: flex; flex-direction: column; gap: 18px; }
.why-point {
  display: flex; gap: 20px; padding: 22px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); transition: background 0.2s;
}
.why-point:hover { background: rgba(255,255,255,0.07); }
.why-num { font-family: 'Bebas Neue', sans-serif; font-size: 36px; line-height: 1; color: var(--red-bright); opacity: 0.5; flex-shrink: 0; width: 36px; }
.why-point-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 5px; }
.why-point-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.why-visual { background: linear-gradient(135deg, #1e3a6e, #162850); border-radius: 20px; padding: 40px; border: 1px solid rgba(59,130,196,0.2); }
.why-visual-title { font-size: 15px; font-weight: 600; color: white; margin-bottom: 28px; }
.gauge-row { display: flex; flex-direction: column; gap: 20px; }
.gauge-label { display: flex; justify-content: space-between; margin-bottom: 8px; }
.gauge-label span:first-child { font-size: 13px; color: rgba(255,255,255,0.7); }
.gauge-label span:last-child { font-size: 13px; font-weight: 700; color: white; }
.gauge-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 6px; overflow: hidden; }
.gauge-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--blue-light), var(--red)); }
.why-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.why-tag-pill {
  background: rgba(59,130,196,0.15); border: 1px solid rgba(59,130,196,0.25);
  border-radius: 50px; padding: 5px 12px; font-size: 12px; color: rgba(255,255,255,0.7);
}

/* ─── DUAL SECTION (Employee/Employer) ─── */
.dual-section { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.dual-card { padding: 80px 6%; position: relative; overflow: hidden; }
.dual-card.emp-ee { background: white; }
.dual-card.emp-er { background: var(--navy); }
.dual-card.emp-er .section-title { color: white; }
.dual-card.emp-er .section-sub { color: rgba(255,255,255,0.55); }
.dual-card.emp-er .section-tag { color: #f87171; }
.dual-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 11px; }
.dual-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--navy); font-weight: 400; line-height: 1.5; }
.dual-card.emp-er .dual-list li { color: rgba(255,255,255,0.75); }
.dual-list li .check { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.dual-card.emp-ee .check { background: rgba(192,57,43,0.12); color: var(--red); }
.dual-card.emp-er .check { background: rgba(59,130,196,0.2); color: var(--blue-light); }
.dual-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 32px;
  font-size: 14px; font-weight: 600; text-decoration: none; padding: 12px 24px;
  border-radius: 8px; transition: transform 0.2s, box-shadow 0.2s;
}
.dual-card.emp-ee .dual-cta { background: linear-gradient(90deg, var(--red), #e91e1e); color: white; }
.dual-card.emp-er .dual-cta { background: linear-gradient(90deg, var(--blue), var(--blue-mid)); color: white; }
.dual-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); color: white; }
.dual-bg-num {
  position: absolute; right: -20px; bottom: -20px; font-family: 'Bebas Neue', sans-serif;
  font-size: 160px; opacity: 0.04; color: var(--navy); line-height: 1; user-select: none;
}
.dual-card.emp-er .dual-bg-num { color: white; opacity: 0.06; }

/* ─── TRACKING ─── */
#tracking {
  background: linear-gradient(135deg, #0e1624, #1a2340); padding: 90px 5%;
  position: relative; overflow: hidden;
}
#tracking::before {
  content: 'TRACK'; position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%); font-family: 'Bebas Neue', sans-serif;
  font-size: 300px; color: rgba(255,255,255,0.02); pointer-events: none; user-select: none; line-height: 1;
}
#tracking .section-tag { color: #f87171; }
.tracking-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.tracking-stages { display: flex; gap: 0; margin-top: 48px; position: relative; }
.tracking-stages::before {
  content: ''; position: absolute; top: 28px; left: 28px; right: 28px;
  height: 2px; background: rgba(255,255,255,0.07); z-index: 0;
}
.stage-item { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.stage-dot {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 14px;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.12); transition: all 0.3s;
}
.stage-item:hover .stage-dot { background: rgba(59,130,196,0.2); border-color: var(--blue-light); transform: scale(1.1); }
.stage-num { font-family: 'Bebas Neue', sans-serif; font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 2px; margin-bottom: 5px; }
.stage-title { font-size: 13px; font-weight: 600; color: white; text-align: center; line-height: 1.3; }
.stage-desc { font-size: 11px; color: rgba(255,255,255,0.4); text-align: center; line-height: 1.5; margin-top: 6px; padding: 0 6px; }
.tracking-search-box {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 36px 40px; margin-top: 52px;
}
.tracking-search-box h3 { color: white; font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.tracking-search-box p { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 24px; }
.tracking-input-row { display: flex; gap: 12px; flex-wrap: wrap; }
.tracking-input-row input {
  flex: 1; min-width: 200px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 13px 18px;
  color: white; font-family: 'Outfit', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s;
}
.tracking-input-row input::placeholder { color: rgba(255,255,255,0.3); }
.tracking-input-row input:focus { border-color: var(--blue-light); }
.tracking-btn {
  background: linear-gradient(90deg, var(--blue), var(--blue-mid)); color: white;
  border: none; padding: 13px 28px; border-radius: 8px; font-size: 14px;
  font-weight: 600; font-family: 'Outfit', sans-serif; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;
}
.tracking-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,77,140,0.5); }
#trackingResult {
  margin-top: 28px; display: none; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; overflow: hidden;
}
#trackingResult.visible { display: block; animation: fadeInUp 0.5s ease both; }
.tr-header {
  padding: 20px 28px; background: rgba(30,77,140,0.2); border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.tr-header-left h4 { color: white; font-size: 16px; font-weight: 600; }
.tr-header-left p { color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 3px; }
.tr-status-badge { padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.tr-status-badge.active { background: rgba(16,185,129,0.2); color: #34d399; border: 1px solid rgba(52,211,153,0.3); }
.tr-status-badge.review { background: rgba(245,158,11,0.15); color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }
.tr-status-badge.placed { background: rgba(99,102,241,0.15); color: #a5b4fc; border: 1px solid rgba(165,180,252,0.3); }
.tr-timeline { padding: 28px; }
.tr-timeline h5 { color: rgba(255,255,255,0.5); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; font-weight: 600; }
.timeline-steps { display: flex; gap: 0; position: relative; }
.timeline-steps::before { content: ''; position: absolute; top: 18px; left: 18px; right: 18px; height: 2px; background: rgba(255,255,255,0.08); z-index: 0; }
.ts-step { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.ts-dot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; margin-bottom: 10px; flex-shrink: 0; font-weight: 700; border: 2px solid transparent; }
.ts-dot.done { background: rgba(52,211,153,0.2); border-color: #34d399; color: #34d399; }
.ts-dot.current { background: rgba(59,130,196,0.3); border-color: var(--blue-light); color: var(--blue-light); animation: pulseDot 2s infinite; }
.ts-dot.upcoming { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.3); }
@keyframes pulseDot { 0%,100%{box-shadow:0 0 0 0 rgba(59,130,196,0.4)}50%{box-shadow:0 0 0 8px rgba(59,130,196,0)} }
.ts-label { font-size: 12px; color: rgba(255,255,255,0.6); text-align: center; font-weight: 500; line-height: 1.3; }
.ts-label.done-label { color: #34d399; }
.ts-label.current-label { color: var(--blue-light); font-weight: 600; }
.ts-date { font-size: 10px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 4px; }
.tr-notes { padding: 20px 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; gap: 12px; flex-wrap: wrap; }
.tr-note { display: flex; gap: 10px; align-items: flex-start; background: rgba(255,255,255,0.04); border-radius: 8px; padding: 12px 16px; flex: 1; min-width: 200px; border: 1px solid rgba(255,255,255,0.06); }
.tr-note-icon { font-size: 16px; flex-shrink: 0; }
.tr-note-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 3px; }
.tr-note-val { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }
#trackingError { display: none; margin-top: 20px; padding: 16px 24px; background: rgba(192,57,43,0.12); border: 1px solid rgba(192,57,43,0.25); border-radius: 10px; color: #f87171; font-size: 14px; }

/* ─── BLOG ─── */
#blog { background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 50px; }
.blog-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid rgba(26,35,64,0.07); transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,35,64,0.1); }
.blog-card-top { padding: 28px 28px 0; }
.blog-tag-pill { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.pill-red { background: rgba(192,57,43,0.1); color: var(--red); }
.pill-blue { background: rgba(30,77,140,0.1); color: var(--blue-mid); }
.pill-teal { background: rgba(16,185,129,0.1); color: #059669; }
.blog-card-title { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 12px; }
.blog-card-excerpt { font-size: 14px; color: var(--gray); line-height: 1.65; }
.blog-card-bottom { padding: 20px 28px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--light-gray); margin-top: 20px; }
.blog-read-more { font-size: 13px; font-weight: 600; color: var(--blue-mid); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.blog-read-more:hover { gap: 9px; color: var(--blue-mid); }
.blog-read-time { font-size: 12px; color: var(--gray); }

/* ─── FAQ ─── */
#faq { background: white; }
.faq-list { margin-top: 48px; max-width: 800px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--light-gray); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s; }
.faq-item:hover { box-shadow: 0 4px 20px rgba(26,35,64,0.08); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--navy); user-select: none; }
.faq-q:hover { background: var(--off-white); }
.faq-icon { font-size: 20px; flex-shrink: 0; transition: transform 0.3s; color: var(--red); font-weight: 300; }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; font-size: 14px; color: var(--gray); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 220px; padding: 0 24px 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ─── ENQUIRY ─── */
#enquiry { background: var(--navy); }
#enquiry .section-title { color: white; }
#enquiry .section-sub { color: rgba(255,255,255,0.55); }
#enquiry .section-tag { color: #f87171; }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 50px; }
.enquiry-info { display: flex; flex-direction: column; gap: 28px; }
.enquiry-info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); }
.eq-icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg, rgba(192,57,43,0.25), rgba(30,77,140,0.25)); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.eq-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.eq-val { font-size: 15px; color: white; font-weight: 500; }
.enquiry-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 12px 16px; color: white;
  font-family: 'Outfit', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-light); }
.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: linear-gradient(90deg, var(--red), #e91e1e); color: white;
  border: none; border-radius: 8px; padding: 14px; font-size: 15px; font-weight: 600;
  font-family: 'Outfit', sans-serif; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px; margin-top: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,57,43,0.45); }
.form-message { margin-top: 16px; padding: 12px 16px; border-radius: 8px; font-size: 14px; display: none; }
.form-message.success { background: rgba(52,211,153,0.15); border: 1px solid rgba(52,211,153,0.3); color: #34d399; display: block; }
.form-message.error { background: rgba(192,57,43,0.15); border: 1px solid rgba(192,57,43,0.3); color: #f87171; display: block; }

/* ─── FOOTER ─── */
footer {
  background: #0e1624; padding: 40px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: white; letter-spacing: 2px; }
.footer-brand span { color: var(--red-bright); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; letter-spacing: 1px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)} }
.hero-left > * { animation: fadeInUp 0.7s ease both; }
.hero-left > *:nth-child(1){animation-delay:0.1s;}
.hero-left > *:nth-child(2){animation-delay:0.2s;}
.hero-left > *:nth-child(3){animation-delay:0.35s;}
.hero-left > *:nth-child(4){animation-delay:0.45s;}
.hero-left > *:nth-child(5){animation-delay:0.55s;}
.hero-right { animation: fadeInUp 0.8s 0.4s ease both; }

/* ─── SINGLE BLOG POST ─── */
.single-post-hero { background: var(--navy); padding: 120px 5% 60px; }
.single-post-inner { max-width: 800px; margin: 0 auto; }
.single-post-content { max-width: 800px; margin: 60px auto; padding: 0 5%; }
.single-post-content h2, .single-post-content h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; color: var(--navy); margin: 32px 0 16px; }
.single-post-content p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.single-post-content ul { margin: 16px 0 20px 20px; }
.single-post-content ul li { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 8px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-grid, .why-grid, .about-grid, .enquiry-grid, .vision-mission-grid { grid-template-columns: 1fr; }
  .dual-section { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-visual { margin-top: 40px; }
  .hero-badge { right: 0; bottom: -10px; }
  .about-img-block { margin-bottom: 30px; }
  .tracking-stages { flex-direction: column; gap: 20px; }
  .tracking-stages::before { display: none; }
  .timeline-steps { flex-direction: column; gap: 16px; }
  .timeline-steps::before { display: none; }
  .ts-step { flex-direction: row; align-items: center; gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}

/* ─── ADMIN STYLES (used on wp-admin pages) ─── */
.pv-admin-wrap { font-family: 'Outfit', sans-serif; }
