/* SINGPEST shared.css v1 */
/* Palette: Deep Olive/Charcoal #0F1B3D, Lime Green #F47820, Light Green accent #FF9A3C, Off-white #F5F5F0 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #F5F5F0;
  color: #0F1B3D;
  overflow-x: clip;
}
:root {
  --orange: #F47820;
  --orange-lt: #FF9A3C;
  --dark: #0F1B3D;
  --dark2: #1A2B5E;
  --off-white: #F5F5F0;
  --mid: #5A6680;
  --border: #DDE1EF;
  --nav-h: 68px;
  --nav-h-tall: 88px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
p { line-height: 1.65; color: #3D4660; }
a { color: var(--orange); text-decoration: none; }

/* ── NAV ── */
.sp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--dark); height: var(--nav-h-tall);
  border-bottom: 2px solid var(--orange);
  transition: height .3s ease, box-shadow .3s ease;
}
.sp-nav.sp-nav-slim {
  height: var(--nav-h);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.sp-nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.sp-logo {
  display: flex; align-items: center; text-decoration: none;
}
.sp-logo-img {
  height: 56px; width: auto; display: block;
  transition: height .3s ease;
}
.sp-nav-slim .sp-logo-img {
  height: 40px;
}
.sp-nav-links { display: flex; align-items: center; gap: 32px; }
.sp-nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75); transition: color .2s; }
.sp-nav-links a:hover, .sp-nav-links a.active { color: var(--orange-lt); }
.sp-nav-cta {
  background: var(--orange) !important; color: #fff !important;
  padding: 9px 20px; border-radius: 6px; font-weight: 600; font-size: 13px !important;
  transition: background .2s !important;
}
.sp-nav-cta:hover { background: var(--orange-lt) !important; }
.sp-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.sp-burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; display: block; }

/* ── MOBILE MENU ── */
.sp-mob-menu {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100dvh;
  background: var(--dark2); z-index: 1000; padding: 80px 32px 40px;
  display: flex; flex-direction: column; gap: 8px;
  transition: right .3s ease; overflow-y: auto;
}
.sp-mob-menu.open { right: 0; }
.sp-mob-menu a {
  font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.8);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none; transition: color .2s;
}
.sp-mob-menu a:hover { color: #fff; }
.sp-mob-cta {
  margin-top: 16px; background: var(--orange) !important;
  color: #fff !important; text-align: center; padding: 14px !important;
  border-radius: 8px !important; border-bottom: none !important;
  font-weight: 700 !important;
}
.sp-mob-x {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 22px; cursor: pointer; line-height: 1;
}
.sp-mob-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 999; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.sp-mob-overlay.open { opacity: 1; pointer-events: all; }

/* ── PAGE OFFSET ── */
.sp-page { padding-top: var(--nav-h-tall); }

/* ── SECTION UTILITIES ── */
.sp-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.sp-section { padding: 80px 0; }
.sp-section-alt { background: #fff; }
.sp-section-dark { background: var(--dark); }
.sp-label {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.sp-h2 { font-size: clamp(32px, 5vw, 52px); color: var(--dark); margin-bottom: 16px; }
.sp-h2-white { color: #fff; }
.sp-lead { font-size: 17px; color: var(--mid); max-width: 600px; line-height: 1.7; }

/* ── BTN ── */
.sp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 7px; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: all .2s; text-decoration: none;
}
.sp-btn-primary { background: var(--orange); color: #fff; }
.sp-btn-primary:hover { background: var(--orange-lt); }
.sp-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.sp-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.sp-btn-dark { background: var(--dark); color: #fff; }
.sp-btn-dark:hover { background: var(--dark2); }

/* ── FOOTER ── */
.sp-footer { background: var(--dark); padding: 60px 0 0; }
.sp-footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
}
.sp-footer-logo-img { height: auto; width: 180px; max-width: 100%; display: block; margin-bottom: 16px; border-radius: 6px; }
.sp-footer-tagline { display: none; }
.sp-footer-blurb { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.sp-footer-heading { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-lt); margin-bottom: 16px; }
.sp-footer-col { display: flex; flex-direction: column; gap: 8px; }
.sp-footer-col a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
.sp-footer-col a:hover { color: rgba(255,255,255,0.9); }
.sp-footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 4px;
}
.sp-footer-contact-item svg { opacity: 0.6; flex-shrink: 0; }
.sp-footer-nea {
  margin-top: 8px; display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--orange-lt); background: rgba(244,120,32,0.15);
  padding: 5px 10px; border-radius: 4px; border: 1px solid rgba(244,120,32,0.3);
}
.sp-footer-bot {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 24px;
  max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,0.28);
}
.sp-footer-credit { font-size: 11px; color: rgba(255,255,255,0.22); white-space: nowrap; }
.sp-footer-credit a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color .2s; }
.sp-footer-credit a:hover { color: rgba(255,255,255,0.75); }

/* ── WHATSAPP FAB (WSE STYLE) ── */
.sp-wa-wrap {
  position: fixed; bottom: 56px; right: 24px; z-index: 9997;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.sp-wa-fab {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); position: relative;
  transition: transform .2s, box-shadow .2s;
}
.sp-wa-fab:hover { transform: scale(1.07); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.sp-wa-ping {
  position: absolute; top: 4px; right: 4px;
  width: 12px; height: 12px; background: #FF3B30; border-radius: 50%;
  border: 2px solid #fff;
  animation: sp-ping 2s ease-in-out infinite;
}
@keyframes sp-ping {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.sp-wa-bubble {
  width: 320px; background: #fff; border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  overflow: hidden; display: none; flex-direction: column;
  transform: translateY(12px); opacity: 0;
  transition: opacity .25s, transform .25s;
}
.sp-wa-bubble.sp-open { display: flex; opacity: 1; transform: translateY(0); }
.sp-wa-head {
  background: #075E54; padding: 16px;
  display: flex; align-items: center; gap: 12px;
}
.sp-wa-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sp-wa-name { font-size: 15px; font-weight: 700; color: #fff; }
.sp-wa-status { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 1px; }
.sp-wa-close {
  margin-left: auto; background: none; border: none;
  color: rgba(255,255,255,0.65); font-size: 18px; cursor: pointer;
  line-height: 1; padding: 0 0 0 8px;
}
.sp-wa-close:hover { color: #fff; }
.sp-wa-body { padding: 16px; background: #E8EAF2; }
.sp-wa-msg {
  background: #fff; border-radius: 0 10px 10px 10px;
  padding: 10px 13px; font-size: 13px; color: #0F1B3D;
  margin-bottom: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.08); line-height: 1.5;
}
.sp-wa-opts { display: flex; flex-direction: column; gap: 8px; }
.sp-wa-opt {
  background: #fff; border: 1px solid #D1E7D8;
  border-radius: 8px; padding: 10px 14px;
  font-size: 13px; font-weight: 500; color: #1A2B5E;
  text-decoration: none; transition: background .15s;
  display: block; text-align: center;
}
.sp-wa-opt:hover { background: #f0faf3; }

/* ── FORM SHARED ── */
.sp-form-group { margin-bottom: 18px; }
.sp-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.sp-form-group input,
.sp-form-group select,
.sp-form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 7px; font-size: 14px; font-family: 'Inter', sans-serif;
  background: #fff; color: var(--dark); transition: border .2s;
  -webkit-appearance: none; appearance: none;
}
.sp-form-group input:focus,
.sp-form-group select:focus,
.sp-form-group textarea:focus { outline: none; border-color: var(--orange); }
.sp-form-group textarea { min-height: 110px; resize: vertical; }
.sp-form-submit {
  width: 100%; padding: 14px; background: var(--orange); color: #fff;
  border: none; border-radius: 7px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background .2s; font-family: 'Inter', sans-serif;
}
.sp-form-submit:hover { background: var(--orange-lt); }
.sp-form-note { font-size: 12px; color: var(--mid); margin-top: 10px; text-align: center; }
.sp-form-success { display: none; text-align: center; padding: 32px 24px; }
.sp-form-success-icon { font-size: 48px; margin-bottom: 12px; }
.sp-form-success h3 { font-size: 22px; color: var(--dark); margin-bottom: 8px; }
.sp-form-success p { font-size: 14px; color: var(--mid); }

/* ── TRUST BAR (ARH style) ── */
.sp-trust-bar {
  background: #0A1632;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}
.sp-trust-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.sp-trust-item {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.sp-trust-item:last-child { border-right: none; }
.sp-trust-icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  background: rgba(244,120,32,0.15); border: 1px solid rgba(244,120,32,0.3);
  display: flex; align-items: center; justify-content: center;
}
.sp-trust-icon svg { color: var(--orange-lt); }
.sp-trust-text { display: flex; flex-direction: column; gap: 3px; }
.sp-trust-kicker {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--orange-lt); line-height: 1;
}
.sp-trust-val {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.3;
}
@media (max-width: 900px) {
  .sp-trust-inner { grid-template-columns: repeat(2, 1fr); }
  .sp-trust-item:nth-child(2) { border-right: none; }
  .sp-trust-item:nth-child(1),
  .sp-trust-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 540px) {
  .sp-trust-inner { grid-template-columns: 1fr; }
  .sp-trust-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 18px 24px; }
  .sp-trust-item:last-child { border-bottom: none; }
}

/* ── CTA BAND ── */
.sp-cta-band { background: var(--dark); padding: 72px 0; position: relative; overflow: hidden; }
.sp-cta-band::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(244,120,32,0.18) 0%,transparent 60%); pointer-events:none; }
.sp-cta-band::after { content:''; position:absolute; inset:0; opacity:0.03; background-image:radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size:28px 28px; pointer-events:none; }
.sp-cta-band-inner { max-width:1180px; margin:0 auto; padding:0 24px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:32px; position:relative; z-index:1; }
.sp-cta-band-left { max-width:560px; }
.sp-cta-band h2 { font-size:clamp(30px,4vw,48px); color:#fff; margin-bottom:10px; }
.sp-cta-band p { font-size:16px; color:rgba(255,255,255,0.6); line-height:1.65; }
.sp-cta-band-badges { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.sp-cta-band-badge { display:flex; align-items:center; gap:6px; font-size:12px; font-weight:600; color:rgba(255,255,255,0.55); letter-spacing:0.06em; }
.sp-cta-band-badge::before { content:''; width:5px; height:5px; background:var(--orange-lt); border-radius:50%; flex-shrink:0; }
.sp-cta-band-actions { display:flex; flex-direction:column; gap:12px; align-items:flex-start; flex-shrink:0; }
.sp-cta-band-wa { display:flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color:rgba(255,255,255,0.45); text-decoration:none; transition:color .2s; }
.sp-cta-band-wa:hover { color:#fff; }
@media (max-width:700px) {
  .sp-cta-band { padding:56px 0; }
  .sp-cta-band-inner { flex-direction:column; }
  .sp-cta-band-actions { width:100%; }
  .sp-cta-band-actions .sp-btn { width:100%; justify-content:center; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .sp-nav-links { display: none; }
  .sp-burger { display: flex; }
  .sp-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .sp-section { padding: 56px 0; }
  .sp-footer-inner { grid-template-columns: 1fr; }
  .sp-footer-bot { flex-direction: column; text-align: center; }
  .sp-wa-bubble { width: calc(100vw - 48px); }
}
