/*
Theme Name: Haris Theme
Theme URI: https://harisjdn.com
Author: Pixinolit
Author URI: https://pixinolit.com
Description: ثيم شركة حريص للخدمات اللوجستية والتخليص الجمركي والاستيراد والتصدير - رسمي، سريع، احترافي، RTL
Version: 2.4
Text Domain: haris-theme
Tags: rtl-language, arabic, logistics, import-export, business, seo
*/

/* ===========================
   CSS VARIABLES — Brand Colors
=========================== */
:root {
  /* Brand colors from the Haris logo */
  --primary: #052f55;
  --primary-dark: #031f38;
  --primary-light: #0b4776;
  --gold: #ff7a1a;
  --gold-light: #ff9b50;
  --gold-dark: #df620f;
  --white: #ffffff;
  --off-white: #f7f9fb;
  --gray-100: #f1f4f7;
  --gray-200: #e5eaf0;
  --gray-400: #8998a8;
  --gray-600: #5a6978;
  --gray-800: #263746;
  --text: #13283a;
  --text-light: #536575;
  --border: #dbe3eb;
  --shadow-sm: 0 2px 10px rgba(3,31,56,0.06);
  --shadow-md: 0 8px 24px rgba(3,31,56,0.10);
  --shadow-lg: 0 18px 44px rgba(3,31,56,0.14);
  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 12px;
  --transition: all 0.22s ease;
  --font-main: 'Tajawal', 'Segoe UI', sans-serif;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: var(--font-main);
  font-size: inherit;
}
h1,h2,h3,h4,h5,h6 { line-height: 1.35; color: var(--primary); font-weight: 700; letter-spacing: 0; }
p { margin-bottom: 1rem; color: var(--text-light); }

/* ===========================
   UTILITY
=========================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 120px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.bg-primary { background: var(--primary); }
.bg-off-white { background: var(--off-white); }
.bg-gray { background: var(--gray-100); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.hidden { display: none; }

/* ===========================
   SECTION HEADERS
=========================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,122,26,0.10);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  border: 1px solid rgba(255,122,26,0.28);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary);
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.8;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 20px;
}
.divider.center { margin: 16px auto 20px; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 8px 22px rgba(3,31,56,0.18);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(3,31,56,0.22);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg { padding: 13px 26px; font-size: 0.92rem; }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-whatsapp {
  background: #128c5a;
  color: var(--white);
  border-color: #128c5a;
  box-shadow: 0 8px 20px rgba(18,140,90,0.22);
}
.btn-whatsapp:hover {
  background: #0f7650;
  transform: translateY(-1px);
}

/* ===========================
   CARDS
=========================== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(255,122,26,0.35);
}
.card-body {
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
}
.card-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(5,47,85,0.07), rgba(255,122,26,0.12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-size: 1.35rem;
  border: 1px solid rgba(255,122,26,0.16);
  flex-shrink: 0;
}
.card-title {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0;
  color: var(--primary);
  align-self: end;
}
.card-text {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  align-self: start;
}

/* ===========================
   TOP BAR
=========================== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--gold); }
.top-bar-links { display: flex; gap: 20px; align-items: center; }
.top-bar-contact { display: flex; gap: 20px; align-items: center; }

/* ===========================
   HEADER / NAVBAR
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(3,31,56,0.08);
  transition: var(--transition);
}
.navbar { padding: 14px 0; display: flex; align-items: center; justify-content: space-between; }
.site-logo,
.custom-logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-logo img,
.custom-logo-link img { height: 50px; width: auto; max-width: 240px; object-fit: contain; }
.mobile-logo img { height: 44px; }
.site-logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
}
.site-logo-text span { color: var(--gold); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu li { position: relative; }
.nav-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a { color: var(--primary); background: var(--gray-100); }
.nav-menu .current-menu-item > a { color: var(--gold-dark); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-menu li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  padding: 12px 20px;
  border-radius: 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--gray-100);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(3,31,56,0.96) 0%, rgba(5,47,85,0.94) 62%, rgba(11,71,118,0.90) 100%),
    radial-gradient(circle at 12% 18%, rgba(255,122,26,0.22), transparent 28%);
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to left, transparent, #000 26%, #000 80%, transparent);
  mask-image: linear-gradient(to left, transparent, #000 26%, #000 80%, transparent);
}
.hero-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,122,26,0.12) 0%, transparent 60%);
  clip-path: polygon(0 0, 75% 0, 55% 100%, 0 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,122,26,0.45);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 24px;
}
.hero-title span { color: var(--gold-light); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat {
  min-width: 112px;
  padding-inline-start: 18px;
  border-inline-start: 1px solid rgba(255,255,255,0.16);
}
.hero-stat-num { font-size: 2.25rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 6px; }
.hero-image-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 48%;
  height: 100%;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes bounce { 0%,100%{transform:translateX(50%) translateY(0)} 50%{transform:translateX(50%) translateY(-8px)} }

/* ===========================
   FEATURES STRIP
=========================== */
.features-strip { background: var(--white); padding: 0; margin-top: -2px; }
.features-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-inline: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-strip-item {
  padding: 28px 24px;
  text-align: center;
  border-left: 1px solid var(--border);
  transition: var(--transition);
}
.feature-strip-item:last-child { border-left: none; }
.feature-strip-item:hover { background: var(--gray-100); }
.feature-strip-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,47,85,0.06);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
}
.feature-strip-title { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.feature-strip-text { font-size: 0.8rem; color: var(--text-light); }

/* ===========================
   SERVICES SECTION
=========================== */
.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 {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(255,122,26,0.55);
}
.service-card-img {
  height: 128px;
  background:
    linear-gradient(135deg, rgba(5,47,85,0.96), rgba(11,71,118,0.92)),
    linear-gradient(90deg, rgba(255,122,26,0.15), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  position: relative;
  overflow: hidden;
}
.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(255,122,26,0.22) 45% 54%, transparent 54%),
    linear-gradient(45deg, transparent 0 62%, rgba(255,255,255,0.07) 62% 68%, transparent 68%);
}
.service-card-img::before {
  display: none;
}
.service-card-img svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-card-text { color: var(--text-light); font-size: 0.93rem; line-height: 1.8; flex: 1; }
.service-card-list { margin: 16px 0; }
.service-card-list li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.service-card-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 10px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 20px;
}
.service-card-link:hover { color: var(--gold); }

/* ===========================
   STATS SECTION
=========================== */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(255,122,26,0.10), transparent);
  transform: skewX(-18deg);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; z-index: 1; }
.stat-item { text-align: center; }
.stat-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,0.8); font-size: 0.95rem; font-weight: 600; }
.stat-divider {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px auto 0;
  opacity: 0.6;
}

/* ===========================
   WHY US
=========================== */
.why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: rgba(255,122,26,0.45); transform: translateX(-3px); }
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  color: var(--gold);
}
.why-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-content p { font-size: 0.9rem; margin: 0; }

/* ===========================
   PROCESS SECTION
=========================== */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  z-index: 0;
}
.process-step { text-align: center; padding: 20px 16px; position: relative; z-index: 1; }
.process-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--gold-light);
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.process-title { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.process-text { font-size: 0.82rem; color: var(--text-light); }

/* ===========================
   INFO BOXES
=========================== */
.info-box {
  background: linear-gradient(135deg, rgba(5,47,85,0.04), rgba(255,122,26,0.06));
  border: 1px solid rgba(255,122,26,0.22);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}
.info-box-title { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.info-box p { margin: 0; font-size: 0.93rem; }

/* ===========================
   FAQ SECTION
=========================== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--gold); }
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--primary);
  background: var(--white);
  transition: var(--transition);
}
.faq-question:hover { background: var(--gray-100); }
.faq-item.active .faq-question { background: rgba(255,122,26,0.07); color: var(--gold-dark); }
.faq-arrow { font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.8;
}
.faq-item.active .faq-answer { padding: 16px 24px 24px; max-height: 500px; }

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-9.5zm-2 4.5h-1v-1h1v1zm1-4h-1v-1h1v1zM15 8H5V3H0V0h20v5h-5V8zm-1 1h-1V8h1v1zm-4-4h-1V4h1v1z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
}
.cta-section h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   CONTACT FORM
=========================== */
.contact-section { background: var(--gray-100); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
  direction: rtl;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15,42,84,0.08);
}
.form-control::placeholder { color: var(--gray-400); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.form-radio { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.9rem; }
.form-radio input { cursor: pointer; accent-color: var(--primary); width: 18px; height: 18px; }

/* ===========================
   CONTACT INFO
=========================== */
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--gold);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.8rem; color: var(--text-light); margin-bottom: 4px; }
.contact-info-value { font-size: 1rem; font-weight: 700; color: var(--primary); }

/* ===========================
   PARTNERS
=========================== */
.partners-track {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.partner-logo {
  filter: grayscale(100%) opacity(0.5);
  transition: var(--transition);
  max-height: 60px;
  max-width: 140px;
}
.partner-logo:hover { filter: grayscale(0%) opacity(1); }

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 70%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span { color: var(--gold); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem,4vw,3.2rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 620px; }

/* ===========================
   CHECKLIST
=========================== */
.checklist { margin: 20px 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
  color: var(--text);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '';
  width: 24px;
  height: 24px;
  background: rgba(255,122,26,0.13);
  border: 6px solid var(--white);
  box-shadow: inset 0 0 0 6px var(--gold), 0 0 0 1px rgba(255,122,26,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===========================
   TABLE
=========================== */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.data-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
  text-align: right;
  font-weight: 700;
}
.data-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.data-table tr:nth-child(even) td { background: var(--gray-100); }
.data-table tr:hover td { background: rgba(255,122,26,0.07); }
.data-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }

/* ===========================
   BADGE / TAGS
=========================== */
.tag {
  display: inline-block;
  background: rgba(15,42,84,0.08);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 4px;
}
.tag-gold { background: rgba(255,122,26,0.14); color: var(--gold-dark); }
.tag-green { background: rgba(34,197,94,0.1); color: #16a34a; }

/* ===========================
   PROFILE DOWNLOAD BOX
=========================== */
.profile-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.profile-box h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 8px; }
.profile-box p { color: rgba(255,255,255,0.8); margin: 0; }
.profile-downloads { display: flex; gap: 12px; flex-wrap: wrap; }
.profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}
.profile-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--primary-dark); }

/* ===========================
   SIDEBAR
=========================== */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
.sticky-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 24px;
}
.sidebar-card-header {
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.95rem;
}
.sidebar-card-body { padding: 20px; }
.sidebar-nav li { padding: 0; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-100);
  font-weight: 600;
}
.sidebar-nav a:hover { color: var(--gold); }
.sidebar-nav li:last-child a { border-bottom: none; }

/* ===========================
   FOOTER
=========================== */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand { }
.footer-brand .custom-logo-link img,
.footer-brand .site-logo img { height: 58px; width: auto; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-logo { height: 52px; margin-bottom: 20px; filter: brightness(10); }
.footer-desc { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  text-decoration: none;
}
.footer-social:hover { background: var(--gold); border-color: var(--gold); color: var(--primary-dark); }
.footer-col h4 {
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,122,26,0.45);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--gold); transform: translateX(-4px); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-icon {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-top: 2px;
  flex-shrink: 0;
  min-width: 34px;
}
.footer-contact-text { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.footer-contact-text a { color: rgba(255,255,255,0.65); }
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--gold); }

/* ===========================
   FLOATING WHATSAPP
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #128c5a;
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(18,140,90,0.32);
  animation: pulse-green 2s infinite;
  text-decoration: none;
}
.whatsapp-float:hover { background: #0f7650; transform: scale(1.06); animation: none; }
@keyframes pulse-green {
  0%,100%{box-shadow:0 6px 22px rgba(18,140,90,0.32)}
  50%{box-shadow:0 6px 30px rgba(18,140,90,0.48)}
}

/* ===========================
   MOBILE MENU
=========================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--white);
  overflow-y: auto;
  flex-direction: column;
  padding: 24px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.mobile-menu-close { font-size: 1.6rem; background: none; border: none; cursor: pointer; color: var(--primary); padding: 8px; }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav a:hover { background: var(--gray-100); color: var(--primary); }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .features-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
  .hero-image-wrap { display: none; }
  .hero { min-height: auto; padding: 80px 0; }
  .profile-box { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .features-strip-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .top-bar-contact { display: none; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 380px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* ===========================
   LIGHT PROFESSIONAL REFINEMENT
=========================== */
body {
  background:
    linear-gradient(135deg, #ffffff 0%, #f8fbff 48%, #fff6ee 100%);
  background-size: auto;
}

.top-bar {
  background: rgba(255,255,255,0.84);
  color: var(--gray-600);
  border-bottom: 1px solid var(--border);
}
.top-bar a,
.top-bar a:hover { color: var(--primary); }

.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(5,47,85,0.08);
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  background: rgba(255,122,26,0.10);
  color: var(--primary);
}
.nav-cta .btn-whatsapp { background: var(--primary); border-color: var(--primary); }

.btn-primary {
  background: linear-gradient(135deg, #ff8725, var(--gold));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 14px 28px rgba(240,128,44,0.22);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #f47b18, var(--gold-dark));
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(240,128,44,0.26);
}
.btn-soft {
  background: rgba(255,255,255,0.74);
  color: var(--primary);
  border-color: rgba(5,47,85,0.10);
}
.btn-soft:hover {
  background: var(--white);
  border-color: rgba(255,122,26,0.55);
  color: var(--primary);
}

.hero {
  min-height: 74vh;
  padding: 70px 0 78px;
  background:
    radial-gradient(circle at 12% 18%, rgba(5,47,85,0.14), transparent 24%),
    radial-gradient(circle at 95% 82%, rgba(255,122,26,0.32), transparent 22%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 58%, #fff3ea 100%);
  background-size: auto;
}
.hero::before {
  display: none;
}
.hero-shape {
  width: 44%;
  height: 66%;
  background: rgba(5,47,85,0.08);
  clip-path: ellipse(58% 70% at 0% 42%);
  top: 0;
  bottom: auto;
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  align-items: center;
  gap: 56px;
}
.hero-content {
  max-width: 670px;
}
.hero-badge {
  background: rgba(255,255,255,0.78);
  border-color: rgba(5,47,85,0.12);
  color: var(--primary);
  box-shadow: 0 12px 30px rgba(5,47,85,0.07);
}
.hero-title {
  color: var(--primary);
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  line-height: 1.22;
  letter-spacing: 0;
  max-width: 620px;
}
.hero-title span,
.section-title span { color: var(--gold-dark); }
.hero-desc {
  color: var(--primary-dark);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  max-width: 650px;
  margin-bottom: 30px;
}
.hero-actions {
  margin-bottom: 24px;
}
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gray-600);
  font-weight: 700;
  font-size: 0.9rem;
}
.hero-notes span {
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(5,47,85,0.09);
  border-radius: 999px;
  padding: 7px 13px;
}
.hero-visual {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  width: min(100%, 560px);
  filter: drop-shadow(0 26px 38px rgba(5,47,85,0.15));
}

.features-strip {
  background: transparent;
  margin-top: -46px;
  position: relative;
  z-index: 4;
}
.features-strip-inner {
  border: 1px solid rgba(5,47,85,0.10);
  border-top: 1px solid rgba(5,47,85,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(5,47,85,0.08);
}
.feature-strip-item { background: rgba(255,255,255,0.84); }
.feature-strip-icon {
  background: var(--primary);
  color: var(--white);
}

.section {
  position: relative;
}
.bg-off-white,
.bg-gray,
.contact-section {
  background:
    rgba(248,251,255,0.72);
  background-size: auto;
}
.section-label {
  background: rgba(255,122,26,0.12);
  border-color: rgba(255,122,26,0.24);
}
.section-title {
  color: var(--primary);
}

.service-card,
.why-card,
.contact-form-wrap,
.sidebar-card,
.faq-item,
.data-table-wrap {
  background: rgba(255,255,255,0.88);
  border-color: rgba(5,47,85,0.10);
  box-shadow: 0 12px 30px rgba(5,47,85,0.06);
}
.service-card:hover,
.why-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,122,26,0.38);
  box-shadow: 0 20px 42px rgba(5,47,85,0.10);
}
.service-card-img {
  height: 96px;
  background: linear-gradient(135deg, rgba(5,47,85,0.08), rgba(255,122,26,0.12));
}
.service-card-img::after { opacity: 0.25; }
.service-card-img::before { display: none; }

.workflow-panel,
.import-panel {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(5,47,85,0.10);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: 0 22px 48px rgba(5,47,85,0.08);
}
.workflow-kicker,
.panel-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,122,26,0.13);
  color: var(--gold-dark);
  font-weight: 800;
  margin-bottom: 18px;
}
.workflow-panel h3,
.import-panel h3 {
  color: var(--primary);
  font-size: 1.45rem;
  margin-bottom: 18px;
}
.workflow-list {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}
.workflow-list li,
.import-panel div[style*="flex-direction"] > div {
  background: rgba(5,47,85,0.045);
  border: 1px solid rgba(5,47,85,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--gray-800);
}
.workflow-list span {
  color: var(--gold-dark);
  font-weight: 800;
  margin-left: 8px;
}
.import-panel p {
  color: var(--text-light);
  margin-bottom: 22px;
}

.process-num {
  background: var(--white);
  color: var(--primary);
  border-color: rgba(255,122,26,0.55);
}
.process-grid::before {
  opacity: 0.42;
}

.profile-box,
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  margin-inline: auto;
  max-width: 1200px;
}
.cta-section {
  padding: 72px 0;
}
.cta-section::before { opacity: 0.25; }
.cta-section .btn-outline {
  color: var(--white);
}

.page-hero {
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fbff 62%, #fff3e8 100%);
  background-size: auto;
}
.page-hero h1,
.page-hero p,
.page-hero-breadcrumb,
.page-hero-breadcrumb a { color: var(--primary); }
.page-hero-breadcrumb span { color: var(--gold-dark); }

.site-footer {
  background: #f3f6f9;
  color: var(--text-light);
  border-top: 1px solid rgba(5,47,85,0.10);
}
.footer-brand .custom-logo-link img,
.footer-brand .site-logo img {
  filter: none;
}
.footer-desc,
.footer-links a,
.footer-contact-text,
.footer-contact-text a {
  color: var(--text-light);
}
.footer-col h4 {
  color: var(--primary);
}
.footer-bottom {
  color: var(--text-light);
  border-top-color: rgba(5,47,85,0.10);
}
.footer-bottom strong {
  color: var(--primary) !important;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 64px 0 88px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-visual {
    min-height: auto;
    order: -1;
  }
  .hero-visual img {
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .hero-title { font-size: 2.2rem; }
  /* Buttons side by side on mobile */
  .hero-actions {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .hero-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 0.88rem;
    padding: 14px 10px;
    white-space: nowrap;
  }
  .features-strip { margin-top: -34px; }
  .workflow-panel,
  .import-panel   { padding: 26px 20px; }
}

/* ===========================
   KNOWLEDGE CENTER
=========================== */
.knowledge-section {
  background: #f8fafc;
}
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.knowledge-card,
.knowledge-block,
.knowledge-note {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(5,47,85,0.10);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 14px 34px rgba(5,47,85,0.06);
}
.knowledge-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
}
.knowledge-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.knowledge-meta span {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 11px;
  background: rgba(255,122,26,0.10);
  color: var(--gold-dark);
  border: 1px solid rgba(255,122,26,0.18);
  font-size: 0.78rem;
  font-weight: 700;
}
.hero-meta { margin-bottom: 18px; }
.knowledge-card h3,
.knowledge-block h2,
.knowledge-note h3 {
  color: var(--primary);
  margin-bottom: 12px;
}
.knowledge-card p,
.knowledge-block p,
.knowledge-note p {
  color: var(--text-light);
  line-height: 1.9;
}
.knowledge-card a {
  margin-top: auto;
  color: var(--primary);
  font-weight: 800;
}
.knowledge-card a:hover { color: var(--gold-dark); }
.knowledge-article {
  display: grid;
  gap: 22px;
}
.knowledge-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(5,47,85,0.06);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 14px;
}
.knowledge-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.knowledge-list li {
  position: relative;
  padding: 12px 18px 12px 12px;
  border-radius: var(--radius-sm);
  background: rgba(5,47,85,0.035);
  color: var(--gray-800);
  line-height: 1.8;
}
.knowledge-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

/* Page heroes — clean edge-to-edge */
.page-hero, .knowledge-hero {
  border-inline: 0;
  border-top: 0;
  border-radius: 0;
  box-shadow: none;
}
/* Light page backgrounds */
body, .bg-off-white, .bg-gray, .contact-section, .knowledge-section {
  background:
    radial-gradient(circle at 9% 22%, rgba(5,47,85,0.08), transparent 24%),
    radial-gradient(circle at 92% 78%, rgba(255,122,26,0.14), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 54%, #fff8f2 100%) !important;
  background-size: auto !important;
}
.hero-shape { background: rgba(5,47,85,0.045) !important; }
.btn-primary, .profile-btn:hover, .footer-social:hover {
  background: linear-gradient(135deg, #ff7a1a, #ff9748) !important;
  border-color: transparent !important;
}
.section-label, .knowledge-meta span, .workflow-kicker, .panel-code {
  background: rgba(255,122,26,0.10) !important;
  color: var(--gold-dark) !important;
  border-color: rgba(255,122,26,0.18) !important;
}
.divider, .service-card-list li::before, .knowledge-list li::before, .stat-divider {
  background: var(--gold) !important;
}

@media (max-width: 1100px) {
  .knowledge-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .knowledge-grid { grid-template-columns: 1fr; }
  .knowledge-card,
  .knowledge-block,
  .knowledge-note { padding: 22px 18px; }
}

/* ===========================
   ANIMATIONS
=========================== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-right { opacity: 0; transform: translateX(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* ===========================
   PRINT
=========================== */
@media print {
  .site-header, .site-footer, .whatsapp-float, .mobile-menu, .cta-section { display: none !important; }
  body { color: #000; }
}

/* ===========================
   HERO GLOBE ANIMATION
=========================== */
.hero-globe {
  position: relative;
  width: 420px;
  height: 440px;
  margin: 0 auto;
  flex-shrink: 0;
}
.hg-ambient {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5,47,85,0.08), transparent 70%);
  pointer-events: none;
}
.hg-svg {
  width: 100%;
  height: auto;
  display: block;
  animation: hgFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(5,47,85,0.16));
}
@keyframes hgFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hgRing {
  transform-box: fill-box;
  transform-origin: center;
  animation: hgRingPulse 2.4s ease-out infinite;
}
@keyframes hgRingPulse {
  0%   { opacity: 0.75; transform: scale(1); }
  100% { opacity: 0;    transform: scale(1.85); }
}
.hg-chip {
  position: absolute;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(5,47,85,0.09);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 16px rgba(5,47,85,0.09);
  white-space: nowrap;
}
.hg-chip-sa   { bottom: 40%; right: -3%;  animation: hgChip 4s ease-in-out infinite; }
.hg-chip-cn   { top: 18%;   left: -8%;   animation: hgChip 4s ease-in-out infinite 1.2s; }
.hg-chip-eu   { top: 42%;   left: -12%;  animation: hgChip 4s ease-in-out infinite 2.4s; }
.hg-chip-stat { bottom: 14%; left: -4%;  animation: hgChip 4s ease-in-out infinite 0.7s; background: rgba(255,122,26,0.10); border-color: rgba(255,122,26,0.22); }
@keyframes hgChip {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.hg-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hg-dot-orange { background: #ff7a1a; }
.hg-dot-gold   { background: #f5c534; }
.hg-dot-blue   { background: #4dd8ff; }
.hg-plane {
  position: absolute;
  top: 4%; right: 2%;
  filter: drop-shadow(0 3px 8px rgba(5,47,85,0.14));
  animation: hgPlaneFly 7s ease-in-out infinite;
}
@keyframes hgPlaneFly {
  0%, 100% { transform: translate(0,0) rotate(-8deg); }
  33%       { transform: translate(-8px,-6px) rotate(-12deg); }
  66%       { transform: translate(4px,-3px) rotate(-5deg); }
}
.hg-ship {
  position: absolute;
  bottom: 15%; right: -2%;
  filter: drop-shadow(0 3px 10px rgba(5,47,85,0.13));
  animation: hgShipFloat 5.5s ease-in-out infinite;
}
@keyframes hgShipFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-5px) rotate(1deg); }
}
@media (max-width: 1100px) {
  .hero-globe { width: 360px; height: 380px; }
}
@media (max-width: 900px) {
  .hero-globe { width: 300px; height: 320px; }
  .hg-chip    { font-size: 0.70rem; padding: 5px 11px; gap: 5px; }
  .hg-chip-eu { display: none; }
}
@media (max-width: 640px) {
  .hero-globe { width: 260px; height: 280px; }
  .hg-plane, .hg-ship { display: none; }
  .hg-chip-cn { left: -4%; }
}

/* ===========================
   SERVICE CARDS — subtle 3-D hover
=========================== */
.service-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover {
  transform: perspective(900px) rotateY(-2.5deg) rotateX(1.5deg) translateY(-4px);
}

/* ===========================
   PROCESS STORYTELLING — STICKY SCROLL
=========================== */

/* Outer wrapper: tall on desktop to create scroll space */
.process-story {
  position: relative;
}
@media (min-width: 901px) {
  .process-story {
    height: 600vh;
  }
}

/* Sticky container: pins for the full scroll travel */
.process-story-sticky {
  position: relative;
  overflow: hidden;
}
@media (min-width: 901px) {
  .process-story-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 900px) {
  .process-story-sticky {
    padding: 72px 0 80px;
  }
}

/* Two-column layout inside the sticky container */
.process-story-inner {
  display: grid;
  grid-template-columns: 1fr 1.28fr;
  gap: 72px;
  align-items: center;
  width: 100%;
}
@media (max-width: 900px) {
  .process-story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── Left panel ── */
.psl-panel {
  position: relative;
  z-index: 2;
}
.psl-lead {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Step navigation list */
.psl-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}
.psl-nav-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(5,47,85,0.08);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.16,1,0.3,1);
  text-align: right;
  position: relative;
  overflow: hidden;
}
.psl-nav-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.psl-nav-btn:hover { background: rgba(255,255,255,0.85); border-color: rgba(255,122,26,0.28); }
.psl-nav-btn.active::before { opacity: 1; }
.psl-nav-btn.active { border-color: transparent; box-shadow: 0 8px 24px rgba(5,47,85,0.18); }
/* Step track (mini progress bar inside button) */
.psl-nav-track {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}
.psl-nav-btn:not(.active) .psl-nav-track { background: rgba(5,47,85,0.06); }
.psl-nav-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}
/* Step number badge */
.psl-nav-num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(5,47,85,0.06);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.32s ease;
}
.psl-nav-btn.active .psl-nav-num {
  background: rgba(255,122,26,0.22);
  color: var(--gold-light);
}
.psl-nav-label {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.32s ease;
}
.psl-nav-btn.active .psl-nav-label { color: var(--white); }

/* Overall progress bar */
.psl-overall-progress {
  height: 3px;
  background: rgba(5,47,85,0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.psl-overall-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 999px;
  width: 20%;
  transition: width 0.55s cubic-bezier(0.16,1,0.3,1);
}
.psl-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ── Right stage: 3-D cards ── */
.psl-stage {
  position: relative;
}
@media (min-width: 901px) {
  .psl-stage {
    height: 520px;
    perspective: 1400px;
    perspective-origin: 50% 40%;
  }
}
@media (max-width: 900px) {
  .psl-stage {
    min-height: 360px;
  }
}

/* Ghost "depth" cards (purely decorative) */
.psl-ghost-card {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 22px;
  pointer-events: none;
}
.psl-ghost-2 {
  top: 28px;
  bottom: -28px;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(5,47,85,0.06);
  transform: scale(0.88);
  z-index: 1;
}
.psl-ghost-1 {
  top: 14px;
  bottom: -14px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(5,47,85,0.08);
  transform: scale(0.94);
  z-index: 2;
}

/* Individual step card */
.psl-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(5,47,85,0.09);
  border-radius: 22px;
  padding: 36px 40px 32px;
  box-shadow: 0 28px 70px rgba(5,47,85,0.11), 0 8px 24px rgba(5,47,85,0.07);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
  transform-style: preserve-3d;
}

@media (min-width: 901px) {
  .psl-card {
    position: absolute;
    inset: 0;
    z-index: 3;
    /* upcoming: below, rotated, invisible */
    opacity: 0;
    transform: translateY(70px) rotateX(14deg) scale(0.92);
    pointer-events: none;
    transform-origin: center bottom;
  }
  .psl-card.psl-active {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
    pointer-events: auto;
    z-index: 10;
  }
  .psl-card.psl-done {
    opacity: 0;
    transform: translateY(-70px) rotateX(-14deg) scale(0.96);
    pointer-events: none;
    z-index: 9;
    transition: opacity 0.45s ease-in, transform 0.45s ease-in;
  }
}
@media (max-width: 900px) {
  .psl-card {
    padding: 28px 24px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .psl-card.psl-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .psl-stage {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    height: auto !important;
    perspective: none;
  }
  .psl-ghost-card { display: none; }
}

/* Card internal elements */
.psl-card-num-watermark {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,122,26,0.10);
  letter-spacing: -3px;
  margin-bottom: 2px;
  user-select: none;
}
.psl-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
}
.psl-card-icon svg { width: 100%; height: 100%; }
.psl-card-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.psl-card-desc {
  font-size: 0.96rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 18px;
}
.psl-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.psl-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--gray-800);
}
.psl-card-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.psl-card-foot {
  padding-top: 18px;
  border-top: 1px solid rgba(5,47,85,0.07);
}
.psl-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,122,26,0.09);
  color: var(--gold-dark);
  border: 1px solid rgba(255,122,26,0.20);
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 700;
}
.psl-card-tag--done {
  background: rgba(34,197,94,0.10);
  color: #16a34a;
  border-color: rgba(34,197,94,0.25);
}

/* Scroll cue (desktop only) */
.psl-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.psl-scroll-cue.hidden { opacity: 0; }
.psl-scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: center;
}
.psl-scroll-wheel {
  width: 3px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  margin-top: 5px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: 0; }
  61% { transform: translateY(0); opacity: 0; }
  100% { opacity: 1; }
}
@media (max-width: 900px) {
  .psl-scroll-cue { display: none; }
}

/* ===========================
   WHY CHOOSE US — STORYTELLING
=========================== */
.why-story {
  height: 500vh;
  position: relative;
  z-index: 2;
  margin-bottom: clamp(48px, 7vw, 96px);
  background: #fff;
}
.why-story-sticky {
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,47,85,0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5,47,85,0.020) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 58%, #fff7f0 100%);
  background-size: 56px 56px, 56px 56px, auto;
  border-bottom: 1px solid rgba(5,47,85,0.08);
  box-shadow: 0 22px 70px rgba(5,47,85,0.06);
}
.why-story-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 0;
  flex: 1;
  min-height: 0;
  padding: clamp(34px, 5vh, 54px) 0 clamp(42px, 6vh, 64px);
}

/* === Left: visual stage === */
.wys-stage {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wys-vis {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transform: translateY(32px) scale(0.94);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.wys-vis.wys-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wys-vis.wys-exit {
  opacity: 0;
  transform: translateY(-28px) scale(0.96);
}
.wys-watermark {
  position: absolute;
  bottom: 8%;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  color: rgba(5,47,85,0.04);
  letter-spacing: -4px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.wys-icon-ring {
  width: min(280px, 44vw);
  height: min(280px, 44vw);
  flex-shrink: 0;
  filter: drop-shadow(0 16px 40px rgba(5,47,85,0.10));
}
.wys-icon-ring svg {
  width: 100%;
  height: 100%;
}
.wys-ring-spin {
  transform-box: fill-box;
  transform-origin: center;
  animation: wysRingSpin 18s linear infinite;
}
@keyframes wysRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.wys-pulse-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: wysPulseRing 2.6s ease-out infinite;
}
@keyframes wysPulseRing {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.6); }
}

/* === Right: text panel === */
.wys-text-panel {
  padding: clamp(26px, 3.5vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  min-height: min(520px, calc(100vh - 150px));
  max-width: 700px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(5,47,85,0.09);
  border-radius: var(--radius);
  box-shadow: 0 20px 58px rgba(3,31,56,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.wys-cards {
  position: relative;
  min-height: 230px;
  margin: 22px 0 24px;
}
.wys-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  padding: 0 4px;
}
.wys-card.wys-card-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.wys-card-title {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.wys-card-desc {
  color: #415466;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 620px;
}
.wys-card-points {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wys-card-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--primary);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.5;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(5,47,85,0.07);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}
.wys-card-points li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.wys-dots {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.wys-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(5,47,85,0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}
.wys-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}
.wys-cta { margin-top: 0; }
.wys-progress-strip {
  height: 4px;
  background: rgba(5,47,85,0.07);
  position: relative;
  flex-shrink: 0;
}
.wys-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 25%;
  transition: width 0.4s ease;
}

/* === Mobile: vertical stacked layout === */
@media (max-width: 900px) {
  .why-story {
    height: auto;
    margin-bottom: 44px;
  }
  .why-story-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: unset;
    padding: 60px 0 40px;
    display: block;
    overflow: visible;
  }
  .why-story-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }
  .wys-stage {
    display: none;
  }
  .wys-vis {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .wys-vis.wys-mobile-visible {
    opacity: 1;
    transform: none;
  }
  .wys-text-panel {
    padding: 22px;
    min-height: 0;
    max-width: none;
  }
  .wys-cards { position: static; min-height: auto; }
  .wys-card {
    position: static;
    opacity: 0;
    transform: translateY(18px);
    margin-bottom: 28px;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(5,47,85,0.08);
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(8px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  .wys-card.wys-mobile-visible { opacity: 1; transform: none; }
  .wys-card.wys-card-active {
    position: static;
  }
  .wys-dots,
  .wys-progress-strip { display: none; }
  .wys-watermark { font-size: 4rem; }
}

/* ===========================
   HERO MICROCOPY
=========================== */
.hero-microcopy {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: -8px 0 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-microcopy::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
  animation: dotPulse 2s ease-in-out infinite;
}

/* ===========================
   CANVAS GLOBE (replaces SVG)
=========================== */
#hgCanvas {
  display: block;
  width: 380px;
  height: 380px;
  margin: 0 auto;
  animation: hgFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 18px 38px rgba(5,47,85,0.16));
}
@media (max-width: 1100px) { #hgCanvas { width: 320px; height: 320px; } }
@media (max-width: 900px)  { #hgCanvas { width: 280px; height: 280px; } }
@media (max-width: 640px)  { #hgCanvas { width: 240px; height: 240px; } }
@media (prefers-reduced-motion: reduce) { #hgCanvas { animation: none; } }

/* ===========================
   PROCESS TIMELINE
=========================== */
.process-timeline-section { background: var(--off-white, #f9fbff); }
.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 31px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(to left, rgba(255,122,26,0.25), var(--primary) 50%, rgba(255,122,26,0.25));
  z-index: 0;
}
.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  z-index: 1;
}
.timeline-node {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid white;
  box-shadow: 0 4px 20px rgba(5,47,85,0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-step:hover .timeline-node {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(5,47,85,0.15);
}
.timeline-node--done { box-shadow: 0 4px 20px rgba(255,122,26,0.22); }
.timeline-num {
  font-size: 0.70rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.timeline-step h3 {
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary);
}
.timeline-step p {
  font-size: 0.80rem;
  color: var(--text-light);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .timeline-track {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
  .timeline-track::before {
    top: 0; bottom: 0;
    right: auto; left: 30px;
    width: 2px; height: auto;
  }
  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: right;
    gap: 20px;
    padding: 0 0 32px;
  }
  .timeline-node { margin-bottom: 0; flex-shrink: 0; }
  .timeline-step h3, .timeline-step p { text-align: right; }
  .timeline-num { text-align: right; margin-bottom: 4px; }
}

/* ===========================
   IMAGE GALLERY (horizontal scroll)
=========================== */
.img-gallery {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 20px;
  margin: 32px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(5,47,85,0.18) transparent;
}
.img-gallery::-webkit-scrollbar { height: 5px; }
.img-gallery::-webkit-scrollbar-thumb { background: rgba(5,47,85,0.18); border-radius: 10px; }
.img-gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 2px;
}
.img-gallery-item {
  flex-shrink: 0;
  width: min(360px, 78vw);
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  box-shadow: 0 8px 24px rgba(5,47,85,0.10);
}
.img-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.img-gallery-item:hover img { transform: scale(1.05); }
.img-gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,47,85,0.32));
  pointer-events: none;
}
.img-gallery-caption {
  position: absolute;
  bottom: 14px;
  right: 16px;
  z-index: 1;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ===========================
   PAGE HERO WITH BACKGROUND IMAGE
=========================== */
.page-hero-img {
  min-height: 380px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.page-hero-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(5,47,85,0.84) 0%,
    rgba(5,47,85,0.60) 55%,
    rgba(255,122,26,0.22) 100%);
}
.page-hero-img .container {
  position: relative; z-index: 1;
  padding-top: 56px; padding-bottom: 56px;
}
.page-hero-img h1       { color: white; }
.page-hero-img p        { color: rgba(255,255,255,0.85); }
.page-hero-img .page-hero-breadcrumb a,
.page-hero-img .page-hero-breadcrumb span { color: rgba(255,255,255,0.72); }
.page-hero-img .page-hero-breadcrumb span:last-child { color: var(--gold-light); }
.page-hero-img .page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.80rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}
/* ── Mobile inner-page hero ── */
@media (max-width: 768px) {
  .page-hero-img {
    min-height: 56vh;
    align-items: flex-end;
  }
  .page-hero-img::before {
    background: linear-gradient(180deg,
      rgba(5,47,85,0.38) 0%,
      rgba(5,47,85,0.68) 45%,
      rgba(5,47,85,0.92) 100%);
  }
  .page-hero-img .container {
    padding-top: 24px;
    padding-bottom: 40px;
  }
  /* Back btn: absolute top */
  .page-hero-nav-row {
    position: absolute;
    top: 18px;
    right: 20px;
    left: 20px;
    margin-bottom: 0;
    justify-content: flex-start;
  }
  .page-hero-breadcrumb { display: none; }
  .page-hero-img h1 {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .page-hero-img p {
    font-size: 0.88rem;
    line-height: 1.7;
  }
  .page-hero-img .page-hero-badge {
    margin-bottom: 14px;
    font-size: 0.78rem;
    padding: 5px 14px;
  }
}
@media (max-width: 480px) {
  .page-hero-img { min-height: 52vh; }
  .page-hero-img h1 { font-size: 1.5rem; }
}

/* ===========================
   COMPACT SERVICE CARDS (6-grid)
=========================== */
.scc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.scc-card {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 22px 22px;
  border: 1.5px solid rgba(5,47,85,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.scc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 38px rgba(5,47,85,0.10);
  border-color: rgba(255,122,26,0.22);
}
.scc-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: rgba(5,47,85,0.04);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.scc-card:hover .scc-icon { background: rgba(255,122,26,0.07); }
.scc-card h3 {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.4;
}
.scc-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.scc-link {
  font-size: 0.80rem;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.scc-link:hover { color: var(--primary); }

@media (max-width: 900px) {
  .scc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 640px) {
  .scc-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 4px 4px 20px;
    margin: 24px -4px 0;
    scrollbar-width: none;
  }
  .scc-grid::-webkit-scrollbar { display: none; }
  .scc-card {
    flex-shrink: 0;
    width: 78vw;
    scroll-snap-align: start;
  }
}

/* ===========================
   GLOBE.GL CONTAINER
=========================== */
#hgGlobe {
  display: block;
  margin: 0 auto;
  animation: hgFloat 5.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { #hgGlobe { animation: none; } }

/* ===========================
   PROCESS STORYTELLING
=========================== */
.pstory {
  height: 500vh;
  position: relative;
  background: linear-gradient(160deg, #f4f8fd 0%, #eaf1fb 100%);
}
.pstory-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pstory-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(5,47,85,0.08);
  z-index: 2;
}
.pstory-bar-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.12s linear;
}
.pstory-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}
/* Left panel */
.pstory-panel { display: flex; flex-direction: column; }
.pstory-headline {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 28px;
}
.pstory-item { display: none; }
.pstory-item.pstory-active {
  display: flex;
  flex-direction: column;
  animation: pstoryIn 0.4s ease both;
}
@keyframes pstoryIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.pstory-step-num {
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}
.pstory-item h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.35;
}
.pstory-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.pstory-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.pstory-item ul li {
  font-size: 0.88rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.85;
}
.pstory-item ul li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
/* Footer: dots + CTA */
.pstory-footer {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.pstory-dots { display: flex; gap: 8px; align-items: center; }
.pstory-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(5,47,85,0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.pstory-dot.pstory-dot-active {
  width: 26px;
  border-radius: 4px;
  background: var(--gold);
}
/* Right visual */
.pstory-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.pstory-vis {
  position: absolute;
  opacity: 0;
  transform: scale(0.92) translateX(-16px);
  transition: opacity 0.42s ease, transform 0.42s ease;
  pointer-events: none;
}
.pstory-vis.pstory-vis-active {
  opacity: 1;
  transform: none;
  position: relative;
  pointer-events: auto;
}
.pstory-num-bg {
  position: absolute;
  bottom: -24px;
  left: -12px;
  font-size: clamp(7rem, 14vw, 13rem);
  font-weight: 900;
  color: rgba(5,47,85,0.055);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: all 0.4s ease;
  font-variant-numeric: tabular-nums;
}
.pstory-pulse { animation: pstoryPulse 2.2s ease-out infinite; }
@keyframes pstoryPulse {
  0%   { r: 6; opacity: 1; }
  70%  { r: 14; opacity: 0; }
  100% { r: 6; opacity: 0; }
}
/* Mobile: static stacked list */
@media (max-width: 900px) {
  .pstory { height: auto; }
  .pstory-sticky {
    position: static;
    height: auto;
    overflow: visible;
  }
  .pstory-bar { display: none; }
  .pstory-container {
    grid-template-columns: 1fr;
    padding: 40px 0 32px;
    gap: 32px;
  }
  .pstory-visual { display: none; }
  .pstory-item { display: flex; flex-direction: column; margin-bottom: 36px; }
  .pstory-item.pstory-active { animation: none; }
  .pstory-footer { margin-top: 8px; }
  .pstory-dots { display: none; }
  .pstory-headline { margin-bottom: 24px; }
}

/* ===========================
   NEW SITE HEADER
=========================== */
body { padding-top: 80px; }
.siteheader {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  z-index: 99999;
  /* Default: clear glass */
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset;
  transition:
    background 0.45s cubic-bezier(0.22,1,0.36,1),
    backdrop-filter 0.45s ease,
    -webkit-backdrop-filter 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}
/* Scrolled: deeper blur, visible shadow */
.siteheader.siteheader--scrolled {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-bottom-color: rgba(5,47,85,0.08);
  box-shadow:
    0 8px 40px rgba(5,47,85,0.09),
    0 1px 0 rgba(255,255,255,0.85) inset;
}
.siteheader-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
/* Logo */
.siteheader-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  /* entrance animation */
  animation: logoSlideIn 0.65s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes logoSlideIn {
  from { opacity: 0; transform: translateX(18px) scale(0.94); }
  to   { opacity: 1; transform: translateX(0)    scale(1); }
}
.siteheader-logo img,
.siteheader-logo .custom-logo {
  height: 46px;
  width: auto;
  display: block;
  transition: height 0.4s cubic-bezier(0.22,1,0.36,1), transform 0.35s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease;
  will-change: height, transform;
}
/* Logo shrinks slightly when scrolled → compact feel */
.siteheader--scrolled .siteheader-logo img,
.siteheader--scrolled .siteheader-logo .custom-logo {
  height: 38px;
}
.siteheader-logo:hover img,
.siteheader-logo:hover .custom-logo {
  transform: scale(1.06);
  filter: drop-shadow(0 3px 10px rgba(5,47,85,0.18));
}
/* Mobile: smaller logo from the start */
@media (max-width: 960px) {
  .siteheader-logo img,
  .siteheader-logo .custom-logo {
    height: 36px;
  }
  .siteheader--scrolled .siteheader-logo img,
  .siteheader--scrolled .siteheader-logo .custom-logo {
    height: 30px;
  }
}
/* Desktop nav */
.siteheader-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.shn-menu,
.shn-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.shn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.shn-menu li {
  position: relative;
}
.shn-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-radius: 8px;
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.shn-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
}
.shn-link:hover,
.shn-drop-trigger:hover,
.shn-menu > li > a:hover,
.shn-menu > .current-menu-item > a,
.shn-menu > .current-menu-ancestor > a {
  background: rgba(5,47,85,0.06);
}
.shn-link.shn-active,
.shn-menu > .current-menu-item > a,
.shn-menu > .current-menu-ancestor > a { color: var(--gold); }
/* Dropdown */
.shn-dropdown { position: relative; }
.shn-chevron { transition: transform 0.25s ease; }
.shn-dropdown:hover .shn-chevron,
.shn-dropdown.shn-open .shn-chevron { transform: rotate(180deg); }
.shn-dropdown-panel,
.shn-menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(5,47,85,0.14), 0 0 0 1.5px rgba(5,47,85,0.07);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 50;
}
.shn-dropdown:hover .shn-dropdown-panel,
.shn-dropdown.shn-open .shn-dropdown-panel,
.shn-menu li:hover > .sub-menu,
.shn-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.shn-dropdown-panel a,
.shn-menu .sub-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.shn-dropdown-panel a:hover,
.shn-menu .sub-menu a:hover { background: rgba(255,122,26,0.07); color: var(--gold); }
.shn-dp-icon { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; }
/* Actions */
.siteheader-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.shn-wa-btn { gap: 6px; }
/* Hamburger */
.shn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  border: 1.5px solid rgba(5,47,85,0.14);
  border-radius: 10px;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s;
}
.shn-hamburger:hover { border-color: var(--gold); }
.shn-hb-line {
  display: block;
  width: 20px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
              opacity 0.22s ease,
              width 0.22s ease;
}
.shn-hamburger.shn-open .shn-hb-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.shn-hamburger.shn-open .shn-hb-line:nth-child(2) { opacity: 0; width: 0; }
.shn-hamburger.shn-open .shn-hb-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE OVERLAY ===== */
.shn-overlay {
  position: fixed; inset: 0;
  background: rgba(5,20,50,0.46);
  z-index: 901;
  opacity: 0; pointer-events: none;
  transition: opacity 0.32s ease;
}
.shn-overlay.shn-visible {
  opacity: 1; pointer-events: auto;
}

/* ===== MOBILE PANEL ===== */
.shn-mobile-panel {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 88vw);
  height: 100%;
  background: white;
  z-index: 902;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 48px rgba(5,47,85,0.18);
  transition: right 0.36s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.shn-mobile-panel.shn-open { right: 0; }
.shn-mp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1.5px solid rgba(5,47,85,0.07);
  flex-shrink: 0;
}
.shn-mp-logo img { height: 40px; width: auto; }
.shn-mp-close {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(5,47,85,0.12);
  border-radius: 8px;
  background: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: border-color 0.2s, background 0.2s;
}
.shn-mp-close:hover { border-color: var(--gold); background: rgba(255,122,26,0.06); color: var(--gold); }
.shn-mp-nav {
  flex: 1;
  padding: 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.shn-mobile-menu,
.shn-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.shn-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.shn-mp-link {
  display: block;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  animation: shnLinkIn 0.35s ease both;
}
.shn-mobile-menu a {
  display: block;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-radius: 10px;
}
.shn-mp-link:hover,
.shn-mobile-menu a:hover { background: rgba(5,47,85,0.05); }
.shn-mp-sub {
  font-size: 0.87rem;
  font-weight: 600;
  padding: 10px 28px;
  color: rgba(5,47,85,0.72);
}
.shn-mobile-menu .sub-menu a,
.shn-mp-sub {
  font-size: 0.87rem;
  font-weight: 600;
  padding: 10px 28px;
  color: rgba(5,47,85,0.72);
}
.shn-mp-sub:hover,
.shn-mobile-menu .sub-menu a:hover { color: var(--gold); background: rgba(255,122,26,0.05); }
.shn-mp-group { margin: 4px 0; }
.shn-mp-group-label {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1.5px;
  padding: 10px 16px 4px;
  text-transform: uppercase;
}
/* Staggered link entrance */
.shn-mobile-panel.shn-open .shn-mp-link:nth-child(1) { animation-delay: 0.04s; }
.shn-mobile-panel.shn-open .shn-mp-link:nth-child(2) { animation-delay: 0.08s; }
.shn-mobile-panel.shn-open .shn-mp-link:nth-child(3) { animation-delay: 0.12s; }
.shn-mobile-panel.shn-open .shn-mp-link:nth-child(4) { animation-delay: 0.16s; }
.shn-mobile-panel.shn-open .shn-mp-link:nth-child(5) { animation-delay: 0.20s; }
.shn-mobile-panel.shn-open .shn-mp-link:nth-child(6) { animation-delay: 0.24s; }
@keyframes shnLinkIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: none; }
}
.shn-mp-cta {
  padding: 16px 20px 24px;
  border-top: 1.5px solid rgba(5,47,85,0.07);
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .siteheader-nav { display: none; }
  .shn-wa-btn span { display: none; }
  .shn-hamburger { display: flex; }
}
@media (max-width: 480px) {
  .shn-wa-btn { display: none; }
}
/* Prevent body scroll when mobile menu open */
body.shn-menu-open { overflow: hidden; }

/* Override old header styles */
.top-bar, .navbar, .nav-menu, .nav-dropdown,
.hamburger, .mobile-menu, .nav-cta { display: none !important; }

/* ===========================
   HORIZONTAL TIMELINE (طريقة العمل)
=========================== */
.hts {
  height: 520vh;
  position: relative;
  direction: rtl;
}
.hts-sticky {
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  min-height: min(640px, calc(100vh - 80px));
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5,47,85,0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5,47,85,0.028) 1px, transparent 1px),
    linear-gradient(180deg, #f7fafd 0%, #ffffff 58%, #f8fbfd 100%);
  background-size: 56px 56px, 56px 56px, auto;
}
.hts-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(22px, 4vh, 38px);
  padding-top: clamp(28px, 6vh, 58px);
  padding-bottom: clamp(24px, 5vh, 44px);
}
/* Header */
.hts-header {
  text-align: center;
  max-width: 680px;
}
.hts-title {
  font-size: clamp(2.15rem, 4.4vw, 3.7rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 0;
}
.hts-sub {
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
}
/* Track */
.hts-track {
  position: relative;
  width: 100%;
  max-width: 960px;
  padding: 0 10px;
}
.hts-line {
  position: absolute;
  top: 34px;
  right: 8%;
  left: 8%;
  height: 4px;
  background: rgba(5,47,85,0.10);
  border-radius: 999px;
  overflow: hidden;
}
.hts-line-fill {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(to left, var(--gold), var(--primary-light));
  border-radius: 999px;
  transition: width 0.55s cubic-bezier(0.4,0,0.2,1);
}
.hts-nodes {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  direction: rtl;
}
/* Node */
.hts-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  cursor: pointer;
}
.hts-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 2px solid rgba(5,47,85,0.14);
  background: rgba(255,255,255,0.94);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background 0.45s ease, border-color 0.45s ease,
              box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 10px 26px rgba(5,47,85,0.08);
}
.hts-num {
  font-size: 0.9rem;
  font-weight: 900;
  color: rgba(5,47,85,0.3);
  font-variant-numeric: tabular-nums;
  transition: color 0.35s, opacity 0.25s;
}
.hts-check {
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
/* Active node */
.hts-node.hts-active .hts-circle {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 10px rgba(255,122,26,0.12),
              0 18px 38px rgba(255,122,26,0.28);
  transform: translateY(-4px) scale(1.12);
}
.hts-node.hts-active .hts-num { color: white; }
/* Done node */
.hts-node.hts-done .hts-circle {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1);
  box-shadow: 0 3px 10px rgba(5,47,85,0.18);
}
.hts-node.hts-done .hts-num { opacity: 0; }
.hts-node.hts-done .hts-check { opacity: 1; transform: scale(1); }
/* Labels */
.hts-node-label {
  font-size: 0.86rem;
  font-weight: 800;
  color: rgba(5,47,85,0.42);
  transition: color 0.35s;
  text-align: center;
  white-space: nowrap;
  line-height: 1.25;
}
.hts-node.hts-active .hts-node-label { color: var(--gold); }
.hts-node.hts-done .hts-node-label   { color: var(--primary); }

/* Content panels */
.hts-panels {
  position: relative;
  width: 100%;
  max-width: 820px;
  min-height: 270px;
  text-align: center;
  isolation: isolate;
}
.hts-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(5,47,85,0.10);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,122,26,0.10), transparent 34%),
    linear-gradient(315deg, rgba(5,47,85,0.07), transparent 40%),
    rgba(255,255,255,0.88);
  box-shadow: 0 24px 60px rgba(3,31,56,0.10);
  overflow: hidden;
}
.hts-panel.hts-panel-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.hts-panel::before {
  content: attr(data-story-num);
  position: absolute;
  top: -44px;
  left: clamp(16px, 5vw, 44px);
  z-index: 0;
  font-size: clamp(7rem, 14vw, 11rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(5,47,85,0.045);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}
.hts-panel > * {
  position: relative;
  z-index: 1;
}
.hts-panel-step {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.hts-panel-title {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
  max-width: 620px;
}
.hts-panel-desc {
  font-size: clamp(0.94rem, 1.3vw, 1.06rem);
  color: var(--text-light);
  line-height: 1.9;
  max-width: 650px;
  margin-bottom: 18px;
}
.hts-panel-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.hts-panel-list li {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(5,47,85,0.09);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hts-panel-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* CTA */
.hts-cta { margin-top: 2px; }

@media (prefers-reduced-motion: reduce) {
  .hts-line-fill,
  .hts-circle,
  .hts-check,
  .hts-panel {
    transition: none;
  }
}

/* Feature strip links */
.feature-strip-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}
.feature-strip-link:hover { transform: translateY(-3px); }
.feature-strip-link:hover .feature-strip-icon { background: var(--gold); color: white; }

/* ── MOBILE: Full-screen sticky storytelling ── */
@media (max-width: 900px) {
  /* Mobile: static readable sequence, no long sticky scroll */
  .hts {
    height: auto;
    background: linear-gradient(180deg, #f7fafd 0%, #fff 100%);
  }
  .hts-sticky {
    position: relative;
    top: 0;
    height: auto;
    min-height: 0;
    overflow: visible;
    background:
      linear-gradient(90deg, rgba(5,47,85,0.028) 1px, transparent 1px),
      linear-gradient(0deg, rgba(5,47,85,0.022) 1px, transparent 1px),
      linear-gradient(180deg, #f7fafd 0%, #fff 64%);
    background-size: 42px 42px, 42px 42px, auto;
    display: flex;
    align-items: center;
  }
  .hts-container {
    height: auto;
    justify-content: flex-start;
    padding-top: 56px;
    padding-bottom: 56px;
    gap: 22px;
  }

  /* Header: compact top */
  .hts-header { margin-bottom: 0; }
  .hts-title  { font-size: clamp(1.7rem, 7vw, 2.25rem); margin-bottom: 4px; }
  .hts-sub    { font-size: 0.86rem; line-height: 1.75; max-width: 340px; }

  /* Track: compact but still readable */
  .hts-track { max-width: 100%; padding: 0 4px; }
  .hts-line  {
    display: block;
    top: 24px;
    right: 10%;
    left: 10%;
    height: 3px;
  }
  .hts-nodes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: clamp(5px, 2vw, 10px);
  }
  .hts-node       { flex: 1; gap: 8px; min-width: 0; }
  .hts-circle {
    width: clamp(42px, 10vw, 50px);
    height: clamp(42px, 10vw, 50px);
    box-shadow: 0 7px 18px rgba(5,47,85,0.08);
  }
  .hts-num        { font-size: 0.75rem; }
  .hts-node-label {
    display: block;
    font-size: clamp(0.62rem, 2.7vw, 0.76rem);
    white-space: normal;
    max-width: 62px;
  }
  .hts-node.hts-active .hts-circle {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 0 0 7px rgba(255,122,26,0.11),
                0 12px 26px rgba(255,122,26,0.22);
  }

  /* Panels: centered narrative card */
  .hts-panels {
    position: relative;
    max-width: 100%;
    width: 100%;
    min-height: 0;
    display: grid;
    gap: 14px;
  }
  .hts-panel {
    position: relative;
    inset: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 5vw, 24px);
    gap: 8px;
  }
  .hts-panel::before {
    top: -20px;
    left: 10px;
    font-size: clamp(5.6rem, 26vw, 7.2rem);
  }
  .hts-panel-step  { font-size: 0.68rem; letter-spacing: 2px; margin-bottom: 0; }
  .hts-panel-title { font-size: clamp(1.32rem, 6vw, 1.7rem); margin-bottom: 2px; }
  .hts-panel-desc  { font-size: 0.86rem; max-width: 100%; line-height: 1.75; margin-bottom: 4px; }
  .hts-panel-list  { gap: 7px; width: 100%; }
  .hts-panel-list li {
    width: 100%;
    justify-content: flex-start;
    text-align: right;
    font-size: 0.8rem;
    padding: 7px 10px;
  }

  /* Mobile watermark step number */
  .hts-panels::before {
    content: none;
  }

  /* CTA smaller */
  .hts-cta { margin-top: 0; }
  .hts-cta .btn { font-size: 0.88rem; padding: 13px 22px; }
}

@media (max-width: 480px) {
  .hts-sticky { min-height: 0; }
  .hts-container { padding-left: 14px; padding-right: 14px; }
  .hts-circle { width: 38px; height: 38px; }
  .hts-line { top: 19px; right: 9%; left: 9%; }
  .hts-node-label { display: none; }
  .hts-panel-title { font-size: 1.34rem; }
  .hts-panel-list li { font-size: 0.78rem; }
}

/* Back button on inner pages */
.page-hero-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.page-hero-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 30px;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.page-hero-back-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  transform: translateX(3px);
}

/* ===========================
   PORTS HORIZONTAL SCROLL
=========================== */
.port-scroll {
  display: flex;
  flex-direction: row-reverse;
  overflow-x: auto;
  gap: 12px;
  padding: 4px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -4px;
}
.port-scroll::-webkit-scrollbar { display: none; }
.port-card {
  flex-shrink: 0;
  width: 130px;
  background: var(--gray-100);
  border-radius: 14px;
  padding: 18px 12px 14px;
  text-align: center;
  scroll-snap-align: start;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.port-card:hover {
  border-color: rgba(255,122,26,0.28);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(5,47,85,0.09);
}
.port-flag {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}
.port-name {
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--primary);
  margin-bottom: 5px;
  line-height: 1.3;
}
.port-desc {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.45;
}

/* ===========================
   HERO MOBILE OVERHAUL
=========================== */
@media (max-width: 900px) {
  /* Pull hero under fixed header — no white gap */
  .hero {
    margin-top: -80px;
    padding-top: calc(80px + 8px);
    padding-bottom: 28px;
    min-height: 100svh;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-visual {
    order: -1;
    min-height: auto;
    justify-content: center;
    padding-top: 0;
  }
  /* Center all hero text */
  .hero-content  { text-align: center; max-width: 100%; }
  .hero-title    { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-desc     { text-align: center; font-size: 0.9rem; }
  .hero-actions  { justify-content: center; }
  .hero-microcopy{ text-align: center; }
  .hero-notes    { justify-content: center; }
  /* Hide decorative shape — causes uneven background */
  .hero-shape    { display: none; }
}
@media (max-width: 640px) {
  .hero {
    padding-bottom: 20px;
  }
  .hero-layout { gap: 6px; }
  .hero-title  {
    font-size: clamp(1.85rem, 7.5vw, 2.4rem);
    /* Force max 2 lines by tightening width */
    max-width: 300px;
  }
  .hero-globe { width: 240px !important; height: 240px !important; }
}

/* ===========================
   FEATURES STRIP MOBILE — HORIZONTAL CARDS
=========================== */
@media (max-width: 640px) {
  .features-strip { margin-top: -20px; }
  .features-strip-inner {
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
  }
  /* Each item: icon inline with title */
  .feature-strip-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto;
    column-gap: 9px;
    row-gap: 2px;
    padding: 14px 12px;
    align-items: start;
    text-align: right;
  }
  .feature-strip-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 34px; height: 34px;
    margin: 0;
    align-self: center;
    font-size: 0.78rem;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .feature-strip-title {
    grid-column: 2; grid-row: 1;
    font-size: 0.82rem;
    margin-bottom: 0;
    align-self: end;
  }
  .feature-strip-text {
    grid-column: 2; grid-row: 2;
    font-size: 0.7rem;
    align-self: start;
  }
}

/* Mobile feature strip: balanced 2x2 service shortcuts */
@media (max-width: 768px) {
  .features-strip {
    margin-top: -18px;
    padding: 0 0 10px;
  }
  .features-strip .container {
    padding-inline: 16px;
  }
  .features-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }
  .feature-strip-item,
  .feature-strip-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 156px;
    padding: 18px 12px 16px;
    text-align: center;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(5,47,85,0.10);
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(5,47,85,0.08);
    gap: 8px;
  }
  .feature-strip-item:last-child {
    border-left: 1px solid rgba(5,47,85,0.10);
  }
  .feature-strip-icon {
    width: 46px;
    height: 46px;
    margin: 0 0 2px;
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(5,47,85,0.16);
    flex-shrink: 0;
  }
  .feature-strip-title {
    width: 100%;
    margin: 0;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.35;
    min-height: 2.7em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-wrap: balance;
  }
  .feature-strip-text {
    width: 100%;
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 15em;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .feature-strip-item,
  .feature-strip-link {
    min-height: 144px;
    padding: 15px 9px 14px;
    gap: 7px;
  }
  .feature-strip-icon {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
  .feature-strip-title { font-size: 0.9rem; }
  .feature-strip-text { font-size: 0.74rem; line-height: 1.55; }
}

/* ===========================
   INNER PAGE HERO — DEFINITIVE CLEAN
   Overrides all conflicting rules above
=========================== */
.page-hero,
.knowledge-hero {
  background: var(--primary) !important;
  padding: 80px 0 68px !important;
  position: relative !important;
  overflow: hidden !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
/* Dot texture overlay */
.page-hero::before,
.knowledge-hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  background-image: radial-gradient(circle, rgba(255,255,255,0.085) 1px, transparent 1px) !important;
  background-size: 26px 26px !important;
  pointer-events: none !important;
}
/* Gold bottom accent line */
.page-hero::after,
.knowledge-hero::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, transparent) !important;
  display: block !important;
}
/* Right-side glow accent */
.page-hero .container,
.knowledge-hero .container { position: relative; z-index: 2; }

/* Text colors — white on dark */
.page-hero h1, .page-hero h2, .page-hero h3,
.knowledge-hero h1, .knowledge-hero h2, .knowledge-hero h3 {
  color: #ffffff !important;
  text-shadow: none !important;
}
.page-hero p, .knowledge-hero p {
  color: rgba(255,255,255,0.82) !important;
}
.page-hero-breadcrumb,
.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.55) !important;
}
.page-hero-breadcrumb span:last-child,
.page-hero-breadcrumb .current {
  color: var(--gold-light) !important;
}
/* Badge */
.page-hero-badge {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,122,26,0.5) !important;
  color: var(--gold-light) !important;
}
/* Back button already white-on-dark — keep as is */

/* ===========================
   GLOBAL OVERFLOW FIX + RESPONSIVE
=========================== */
/* clip prevents scroll without creating a new scroll container
   so position:sticky in wys/hts sections keeps working */
html { overflow-x: clip; }
* { box-sizing: border-box; min-width: 0; }
/* Stop gallery/track from stretching the page */
.img-gallery { overflow-x: auto; max-width: 100%; }
.img-gallery-track { width: max-content; }
.port-scroll { max-width: 100%; }

/* Inner page shipping cards — responsive flex headers */
@media (max-width: 640px) {
  /* Sidebar layout: reorder so sidebar goes below content */
  .content-with-sidebar {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .sticky-sidebar { position: static !important; order: 2; }

  /* Shipping-type card headers (emoji + text in flex row) */
  .section [style*="display:flex"][style*="align-items:center"][style*="gap:24px"] {
    flex-wrap: wrap;
    gap: 14px !important;
    padding: 24px !important;
  }
  .section [style*="font-size:4rem"] {
    font-size: 2.6rem !important;
  }
  /* Grid-2 inside cards */
  .section .grid-2 { grid-template-columns: 1fr !important; gap: 20px !important; }
  /* CTA section inside pages */
  .section [style*="padding:40px"] { padding: 24px 20px !important; }
  /* Stats grid on inner pages */
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
  /* Grid-3 service cards */
  .section .grid-3 { grid-template-columns: 1fr !important; gap: 16px !important; }
}

/* Ensure img-gallery doesn't cause horizontal page scroll */
.img-gallery {
  width: 100%;
  max-width: 100vw;
}
.img-gallery-track {
  padding: 0 16px;
}

/* Port scroll contained */
.port-scroll {
  max-width: 100%;
}

/* Inline-style padding fix on narrow */
@media (max-width: 900px) {
  .content-with-sidebar {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .sticky-sidebar { position: static !important; }
}

/* ===========================
   ABOUT STATS BOX (animated counters)
=========================== */
.about-stats-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(5,47,85,0.22);
}
.about-stats-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.about-stats-crown { font-size: 4.5rem; margin-bottom: 12px; position: relative; z-index: 1; display: block; }
.about-stats-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.about-stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, background 0.3s ease;
}
.about-stat:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.16);
}
.about-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.about-stat-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
}
.about-stats-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Phone numbers — always LTR */
a[href^="tel"] {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
}

/* .site-header is the OLD hidden header — no overrides needed */

/* ===========================
   PROFILE BOX — FIX BUTTONS
=========================== */
/* profile-box stays dark navy so white buttons are visible */
.profile-btn {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.profile-btn:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--primary-dark) !important;
}

/* ===========================
   SERVICES PAGE CSS
=========================== */
/* Hero */
.srv-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1a5280 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  text-align: center;
}
.srv-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.srv-hero-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  animation: srvOrbFloat 8s ease-in-out infinite;
}
.srv-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--gold), transparent); top: -200px; right: -100px; }
.srv-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.3), transparent); bottom: -150px; left: -80px; animation-delay: 3s; }
.srv-hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
@keyframes srvOrbFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-20px); } }

.srv-hero-inner { position: relative; z-index: 1; }
.srv-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #ffffff;
  margin: 16px 0;
  line-height: 1.25;
}
.srv-accent { color: var(--gold-light); }
.srv-hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.srv-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.btn-outline-light {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: var(--transition);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* Hero stats */
.srv-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  max-width: 720px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}
.srv-hs-item { text-align: center; }
.srv-hs-num { display: block; font-size: 1.8rem; font-weight: 900; color: var(--gold-light); }
.srv-hs-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.srv-hs-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.18); }

/* Services Nav */
.srv-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 80px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(5,47,85,0.06);
}
.srv-nav-pills {
  display: flex;
  gap: 4px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.srv-nav-pills::-webkit-scrollbar { display: none; }
.srv-pill {
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-light);
  border: 2px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}
.srv-pill:hover,
.srv-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Service Sections */
.srv-section { padding: 100px 0; }
.srv-section--even { background: rgba(5,47,85,0.025); }
.srv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.srv-grid--flip .srv-content { order: 2; }
.srv-grid--flip .srv-visual { order: 1; }

.srv-number {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--gold-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(255,122,26,0.1);
  border: 1px solid rgba(255,122,26,0.2);
  border-radius: 999px;
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: 16px;
}
.srv-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.srv-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 20px 0;
}
.srv-desc { color: var(--text-light); line-height: 1.85; font-size: 1rem; margin-bottom: 24px; }
.srv-list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.srv-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}
.srv-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 9px;
}
.srv-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Service Visual Cards */
.srv-visual { display: flex; justify-content: center; }
.srv-vis-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  width: 100%;
  max-width: 360px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(5,47,85,0.22);
}
.srv-vis-card--gold { background: linear-gradient(135deg, #7a3a00, #c25a00); }
.srv-vis-card--green { background: linear-gradient(135deg, #1a4d2e, #2d7a4a); }
.srv-vis-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.srv-vis-icon { font-size: 3.5rem; margin-bottom: 24px; display: block; }
.srv-vis-highlights { display: flex; flex-direction: column; gap: 10px; }
.srv-vis-hl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}
.srv-vis-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
}
.srv-vis-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
}
.srv-vis-badge--green { background: #4ade80; color: #14532d; }

/* Ports grid in shipping card */
.srv-vis-ports { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.srv-port {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.srv-port span { font-size: 1.2rem; }
.srv-port strong { font-size: 0.82rem; color: #fff; }
.srv-port em { font-size: 0.72rem; color: rgba(255,255,255,0.6); font-style: normal; }

/* Shipping modes */
.srv-modes { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.srv-mode {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(5,47,85,0.04);
  border: 1px solid rgba(5,47,85,0.08);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.srv-mode-icon { font-size: 1.8rem; }
.srv-mode strong { display: block; color: var(--primary); font-size: 0.95rem; }
.srv-mode span { font-size: 0.82rem; color: var(--text-light); }

/* SASO certs */
.srv-vis-certs { display: flex; flex-direction: column; gap: 8px; }
.srv-cert {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* Stats Strip */
.srv-stats-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.srv-stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.srv-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.srv-stat-item { text-align: center; min-width: 160px; }
.srv-stat-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.srv-stat-lbl { font-size: 0.85rem; color: rgba(255,255,255,0.72); }
.srv-stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.18); flex-shrink: 0; }
.srv-stats-sub {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}

/* Final CTA */
.srv-final-cta { padding: 80px 0; }
.srv-cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.srv-cta-box::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.srv-cta-content { position: relative; z-index: 1; }
.srv-cta-content h2 { color: #fff; font-size: 1.8rem; margin-bottom: 12px; }
.srv-cta-content p { color: rgba(255,255,255,0.8); max-width: 480px; line-height: 1.7; }
.srv-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.4); color: #fff; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 700; transition: var(--transition); }
.btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Scroll animations */
.srv-reveal, .srv-reveal-delay {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.srv-reveal-delay { transition-delay: 0.18s; }
.srv-reveal.is-visible, .srv-reveal-delay.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Services page responsive */
@media (max-width: 900px) {
  .srv-hero { padding: 80px 0 60px; }
  .srv-hero-stats { gap: 20px; padding: 20px 24px; }
  .srv-hs-divider { display: none; }
  .srv-grid { grid-template-columns: 1fr; gap: 40px; }
  .srv-grid--flip .srv-content { order: 1; }
  .srv-grid--flip .srv-visual { order: 2; }
  .srv-section { padding: 72px 0; }
  .srv-cta-box { padding: 40px 28px; flex-direction: column; text-align: center; }
  .srv-cta-actions { justify-content: center; }
}
@media (max-width: 640px) {
  .srv-hero-title { font-size: 2rem; }
  .srv-nav { top: 60px; }
  .srv-stats-grid { gap: 12px; }
  .srv-stat-divider { display: none; }
  .srv-stat-num { font-size: 2.6rem; }
  .srv-vis-ports { grid-template-columns: 1fr; }
}

/* ============================================================
   MEGA DROPDOWN NAV
   ============================================================ */
.shn-dropdown { position: relative; }

.shn-drop-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.shn-chevron {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.shn-dropdown:hover .shn-chevron,
.shn-dropdown.shn-open .shn-chevron {
  transform: rotate(-180deg);
}

.shn-mega-panel {
  position: absolute;
  top: calc(100% + 16px);
  right: -24px;
  width: 540px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow:
    0 2px 4px rgba(5,47,85,0.04),
    0 8px 24px rgba(5,47,85,0.08),
    0 24px 60px rgba(5,47,85,0.14),
    0 0 0 1px rgba(5,47,85,0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(0.97);
  transform-origin: top right;
  transition:
    opacity 0.28s cubic-bezier(0.22,1,0.36,1),
    transform 0.28s cubic-bezier(0.22,1,0.36,1);
  z-index: 9999;
  overflow: hidden;
}

.shn-mega-panel::before {
  content: '';
  position: absolute;
  top: -7px;
  right: 40px;
  width: 14px;
  height: 14px;
  background: #fff;
  transform: rotate(45deg);
  border-top: 1px solid rgba(5,47,85,0.06);
  border-right: 1px solid rgba(5,47,85,0.06);
  border-radius: 2px;
}

.shn-dropdown:hover .shn-mega-panel,
.shn-dropdown.shn-open .shn-mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Staggered animation for grid items */
.shn-mega-grid .shn-mega-item {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.22s ease var(--_d, 0ms),
    transform 0.22s cubic-bezier(0.22,1,0.36,1) var(--_d, 0ms),
    background 0.18s ease;
}
.shn-dropdown:hover .shn-mega-grid .shn-mega-item:nth-child(1),
.shn-dropdown.shn-open .shn-mega-grid .shn-mega-item:nth-child(1) { --_d:60ms; opacity:1; transform:none; }
.shn-dropdown:hover .shn-mega-grid .shn-mega-item:nth-child(2),
.shn-dropdown.shn-open .shn-mega-grid .shn-mega-item:nth-child(2) { --_d:90ms; opacity:1; transform:none; }
.shn-dropdown:hover .shn-mega-grid .shn-mega-item:nth-child(3),
.shn-dropdown.shn-open .shn-mega-grid .shn-mega-item:nth-child(3) { --_d:120ms; opacity:1; transform:none; }
.shn-dropdown:hover .shn-mega-grid .shn-mega-item:nth-child(4),
.shn-dropdown.shn-open .shn-mega-grid .shn-mega-item:nth-child(4) { --_d:150ms; opacity:1; transform:none; }
.shn-dropdown:hover .shn-mega-grid .shn-mega-item:nth-child(5),
.shn-dropdown.shn-open .shn-mega-grid .shn-mega-item:nth-child(5) { --_d:180ms; opacity:1; transform:none; }
.shn-dropdown:hover .shn-mega-grid .shn-mega-item:nth-child(6),
.shn-dropdown.shn-open .shn-mega-grid .shn-mega-item:nth-child(6) { --_d:210ms; opacity:1; transform:none; }

.shn-mega-header { padding: 16px 16px 8px; }

.shn-mega-all {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.shn-mega-all:hover { opacity: 0.92; transform: translateY(-1px); color: #fff; }

.shn-mega-all-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.18);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.shn-mega-all strong { display: block; font-size: 0.94rem; font-weight: 800; color: #fff; }
.shn-mega-all em { font-style: normal; font-size: 0.78rem; color: rgba(255,255,255,0.82); line-height: 1.3; }
.shn-mega-arrow { margin-right: auto; opacity: 0.75; }

.shn-mega-divider { height: 1px; background: rgba(5,47,85,0.06); margin: 10px 16px; }

.shn-mega-grid {
  padding: 6px 16px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.shn-mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 13px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.shn-mega-item:hover {
  background: rgba(5,47,85,0.04);
  border-color: rgba(5,47,85,0.08);
}

.shn-mega-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
/* Icon color themes */
.shn-icon-customs { background: linear-gradient(145deg,rgba(5,47,85,0.07),rgba(5,47,85,0.13)); color: var(--primary); }
.shn-icon-china   { background: linear-gradient(145deg,rgba(220,38,38,0.07),rgba(220,38,38,0.14)); color: #dc2626; }
.shn-icon-ship    { background: linear-gradient(145deg,rgba(37,99,235,0.07),rgba(37,99,235,0.14)); color: #2563eb; }
.shn-icon-saso    { background: linear-gradient(145deg,rgba(5,150,105,0.07),rgba(5,150,105,0.14)); color: #059669; }
.shn-icon-export  { background: linear-gradient(145deg,rgba(217,119,6,0.08),rgba(217,119,6,0.15)); color: #d97706; }
.shn-icon-wa      { background: linear-gradient(145deg,rgba(22,163,74,0.09),rgba(22,163,74,0.16)); color: #16a34a; }

.shn-mega-text strong {
  display: block; font-size: 0.87rem; font-weight: 700;
  color: var(--primary-dark); margin-bottom: 2px;
}
.shn-mega-text em {
  font-style: normal; font-size: 0.74rem;
  color: var(--text-light); line-height: 1.35; display: block;
}

.shn-mega-cta {
  grid-column: 1 / -1;
  background: rgba(5,47,85,0.025);
  border: 1px solid rgba(5,47,85,0.07) !important;
}
.shn-mega-cta:hover { background: rgba(22,163,74,0.05) !important; border-color: rgba(22,163,74,0.18) !important; }
.shn-mega-cta .shn-mega-text strong { color: #15803d; }

/* Mobile group */
.shn-mp-group { margin-bottom: 8px; }
.shn-mp-group-label-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px;
  font-weight: 800; font-size: 0.92rem;
  color: var(--primary-dark);
  text-decoration: none;
  background: rgba(5,47,85,0.05);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  border-inline-start: 3px solid var(--gold);
}

/* ============================================================
   3D PRODUCT ICON CARDS (import from china page)
   ============================================================ */
.prod-3d-card {
  background: #fff;
  border: 1px solid rgba(5,47,85,0.07);
  border-radius: var(--radius);
  padding: 32px 20px 24px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.prod-3d-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(5,47,85,0.02));
  pointer-events: none;
}
.prod-3d-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(5,47,85,0.11), 0 4px 12px rgba(5,47,85,0.07);
}

.prod-3d-icon {
  width: 76px; height: 76px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
  margin: 0 auto 18px;
  position: relative;
  line-height: 1;
}
/* Each category gets its own 3D gradient */
.prod-3d-icon--blue    { background: linear-gradient(145deg,#dbeafe,#bfdbfe); box-shadow: 0 10px 28px rgba(37,99,235,0.22), inset 0 2px 0 rgba(255,255,255,0.9), inset 0 -2px 0 rgba(37,99,235,0.1); }
.prod-3d-icon--pink    { background: linear-gradient(145deg,#fce7f3,#fbcfe8); box-shadow: 0 10px 28px rgba(219,39,119,0.22), inset 0 2px 0 rgba(255,255,255,0.9), inset 0 -2px 0 rgba(219,39,119,0.1); }
.prod-3d-icon--amber   { background: linear-gradient(145deg,#fef3c7,#fde68a); box-shadow: 0 10px 28px rgba(217,119,6,0.22),  inset 0 2px 0 rgba(255,255,255,0.9), inset 0 -2px 0 rgba(217,119,6,0.1); }
.prod-3d-icon--gray    { background: linear-gradient(145deg,#f1f5f9,#e2e8f0); box-shadow: 0 10px 28px rgba(71,85,105,0.22),  inset 0 2px 0 rgba(255,255,255,0.9), inset 0 -2px 0 rgba(71,85,105,0.1); }
.prod-3d-icon--purple  { background: linear-gradient(145deg,#ede9fe,#ddd6fe); box-shadow: 0 10px 28px rgba(124,58,237,0.22), inset 0 2px 0 rgba(255,255,255,0.9), inset 0 -2px 0 rgba(124,58,237,0.1); }
.prod-3d-icon--orange  { background: linear-gradient(145deg,#ffedd5,#fed7aa); box-shadow: 0 10px 28px rgba(234,88,12,0.22),  inset 0 2px 0 rgba(255,255,255,0.9), inset 0 -2px 0 rgba(234,88,12,0.1); }
.prod-3d-icon--teal    { background: linear-gradient(145deg,#ccfbf1,#99f6e4); box-shadow: 0 10px 28px rgba(20,184,166,0.22), inset 0 2px 0 rgba(255,255,255,0.9), inset 0 -2px 0 rgba(20,184,166,0.1); }
.prod-3d-icon--red     { background: linear-gradient(145deg,#fee2e2,#fecaca); box-shadow: 0 10px 28px rgba(220,38,38,0.22),  inset 0 2px 0 rgba(255,255,255,0.9), inset 0 -2px 0 rgba(220,38,38,0.1); }
.prod-3d-icon--green   { background: linear-gradient(145deg,#dcfce7,#bbf7d0); box-shadow: 0 10px 28px rgba(22,163,74,0.22),  inset 0 2px 0 rgba(255,255,255,0.9), inset 0 -2px 0 rgba(22,163,74,0.1); }

.prod-3d-card h3 { font-size: 0.96rem; margin-bottom: 8px; color: var(--primary-dark); font-weight: 700; }
.prod-3d-card p  { font-size: 0.8rem; color: var(--text-light); margin: 0; line-height: 1.55; }

/* ============================================================
   ABOUT PAGE  — Professional polish
   ============================================================ */
.about-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(255,122,26,0.1), rgba(255,122,26,0.06));
  border: 1px solid rgba(255,122,26,0.25);
  color: var(--gold-dark);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 20px;
}

.about-intro-text { font-size: 1.07rem; line-height: 2; color: var(--text-light); margin-bottom: 22px; }

.vmv-card {
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vmv-card::before {
  content: ''; position: absolute;
  top: -40%; right: -20%; width: 180px; height: 180px;
  background: rgba(255,255,255,0.07); border-radius: 50%;
  pointer-events: none;
}
.vmv-card-icon {
  width: 68px; height: 68px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.3);
}
.vmv-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 14px; }
.vmv-card p  { color: rgba(255,255,255,0.88); font-size: 0.92rem; line-height: 1.85; margin: 0; }

.vmv-navy  { background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 100%); }
.vmv-green { background: linear-gradient(145deg, #1a5c3a 0%, #2d8a56 100%); }
.vmv-gold  { background: linear-gradient(145deg, #b45309 0%, #d97706 100%); }

.why-adv-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(5,47,85,0.07);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.why-adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5,47,85,0.09);
}
.why-adv-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  background: linear-gradient(145deg, rgba(5,47,85,0.06), rgba(5,47,85,0.1));
}
.why-adv-content h3 { font-size: 0.95rem; margin-bottom: 6px; color: var(--primary-dark); }
.why-adv-content p  { font-size: 0.83rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* CTA section on about page */
.about-cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-cta-section::before {
  content: '';
  position: absolute; top: -60px; left: -60px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.04); border-radius: 50%;
}
.about-cta-section::after {
  content: '';
  position: absolute; bottom: -80px; right: -60px;
  width: 320px; height: 320px;
  background: rgba(255,122,26,0.08); border-radius: 50%;
}
.about-cta-section h3 { position: relative; z-index: 1; color: #fff; font-size: 1.9rem; margin-bottom: 16px; }
.about-cta-section p  { position: relative; z-index: 1; color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 560px; margin: 0 auto 34px; }
.about-cta-btns { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT PAGE — Professional polish
   ============================================================ */
.contact-hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0 64px;
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.contact-hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,122,26,0.15) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 45%);
}
.contact-hero-section .container { position: relative; z-index: 1; }
.contact-hero-section h1 { color: #fff; font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: 14px; }
.contact-hero-section p  { color: rgba(255,255,255,0.85); font-size: 1.08rem; max-width: 560px; margin: 0 auto; }

.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -40px;
  position: relative; z-index: 10;
}
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(5,47,85,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(5,47,85,0.13); }
.contact-card-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}
.contact-card-icon--wa     { background: linear-gradient(145deg,#dcfce7,#bbf7d0); box-shadow: 0 8px 20px rgba(22,163,74,0.22), inset 0 2px 0 rgba(255,255,255,0.8); }
.contact-card-icon--phone  { background: linear-gradient(145deg,#dbeafe,#bfdbfe); box-shadow: 0 8px 20px rgba(37,99,235,0.22), inset 0 2px 0 rgba(255,255,255,0.8); }
.contact-card-icon--email  { background: linear-gradient(145deg,#ffedd5,#fed7aa); box-shadow: 0 8px 20px rgba(234,88,12,0.22), inset 0 2px 0 rgba(255,255,255,0.8); }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--primary-dark); }
.contact-info-card a  { font-size: 0.9rem; color: var(--text-light); text-decoration: none; }
.contact-info-card a:hover { color: var(--gold); }

.contact-form-section { background: #fff; border-radius: var(--radius-lg); box-shadow: 0 4px 24px rgba(5,47,85,0.07); padding: 48px 40px; }
.contact-form-section h2 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-section > p { color: var(--text-light); margin-bottom: 32px; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.cf-field label { font-size: 0.87rem; font-weight: 700; color: var(--primary-dark); }
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(5,47,85,0.12);
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-family: inherit;
  color: var(--text);
  background: #fafbfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5,47,85,0.08);
  background: #fff;
}
.cf-field textarea { resize: vertical; min-height: 130px; }

.contact-aside-card {
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: #fff; margin-bottom: 20px;
}
.contact-aside-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; }
.contact-aside-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.contact-aside-item-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(255,255,255,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-aside-item strong { display: block; font-size: 0.88rem; color: #fff; margin-bottom: 2px; }
.contact-aside-item span  { font-size: 0.8rem; color: rgba(255,255,255,0.75); }

.contact-map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(5,47,85,0.08);
  background: #fff;
}
.contact-map-placeholder {
  height: 180px;
  background: linear-gradient(135deg, rgba(5,47,85,0.06), rgba(5,47,85,0.1));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--primary);
}
.contact-map-placeholder span { font-size: 2.5rem; }
.contact-map-placeholder p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

@media (max-width: 768px) {
  .contact-cards-row { grid-template-columns: 1fr; margin-top: -24px; }
  .cf-row { grid-template-columns: 1fr; }
  .contact-form-section { padding: 32px 20px; }
  .shn-mega-panel { display: none; }
}

/* ── GAP BRIDGE: transparent area above mega panel covers the 16px gap ── */
.shn-mega-panel::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 22px;
}

/* ============================================================
   HOW WE WORK — Timeline
   ============================================================ */
.hww-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Vertical center line */
.hww-timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(5,47,85,0.15) 8%, rgba(5,47,85,0.15) 92%, transparent);
}

.hww-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 48px;
  position: relative;
}

/* Right-side card */
.hww-step--left .hww-card {
  grid-column: 1;
  grid-row: 1;
}
.hww-step--left .hww-connector {
  grid-column: 2;
  grid-row: 1;
}
.hww-step--left .hww-card ~ * { /* empty right */ }

/* Left-side card (for right-aligned steps) */
.hww-step--right .hww-connector {
  grid-column: 2;
  grid-row: 1;
}
.hww-step--right .hww-card {
  grid-column: 3;
  grid-row: 1;
}

.hww-connector {
  display: flex;
  justify-content: center;
  padding-top: 28px;
}

.hww-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(5,47,85,0.15), 0 8px 20px rgba(5,47,85,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  position: relative; z-index: 2;
  flex-shrink: 0;
}

.hww-card {
  background: #fff;
  border: 1px solid rgba(5,47,85,0.08);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
  position: relative;
}
.hww-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5,47,85,0.09);
}

/* Arrow pointing to center line */
.hww-step--left .hww-card::after {
  content: '';
  position: absolute;
  top: 32px; left: -9px;
  width: 18px; height: 18px;
  background: #fff;
  border-top: 1px solid rgba(5,47,85,0.08);
  border-right: 1px solid rgba(5,47,85,0.08);
  transform: rotate(45deg);
  border-radius: 2px;
}
.hww-step--right .hww-card::after {
  content: '';
  position: absolute;
  top: 32px; right: -9px;
  width: 18px; height: 18px;
  background: #fff;
  border-top: 1px solid rgba(5,47,85,0.08);
  border-left: 1px solid rgba(5,47,85,0.08);
  transform: rotate(-45deg);
  border-radius: 2px;
}

.hww-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.hww-card h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.hww-card p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.hww-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.hww-tag {
  font-size: 0.73rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(5,47,85,0.07);
  color: var(--primary);
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .hww-timeline::before { right: 28px; transform: none; }
  .hww-step {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto;
  }
  .hww-step--left .hww-card,
  .hww-step--right .hww-card {
    grid-column: 2; grid-row: 1;
  }
  .hww-step--left .hww-connector,
  .hww-step--right .hww-connector {
    grid-column: 1; grid-row: 1;
    padding-top: 28px;
  }
  .hww-step--left .hww-card::after,
  .hww-step--right .hww-card::after { display: none; }
}

/* ============================================================
   SOCIAL ICON BUTTONS — contact page
   ============================================================ */
.social-icon-btn {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease, filter 0.2s ease;
  color: #fff;
}
.social-icon-btn:hover { transform: translateY(-3px) scale(1.06); }

.social-icon-btn--ig {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  box-shadow: 0 6px 18px rgba(131,58,180,0.32);
}
.social-icon-btn--ig:hover { box-shadow: 0 10px 28px rgba(131,58,180,0.42); }

.social-icon-btn--x {
  background: #000;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}
.social-icon-btn--x:hover { background: #111; box-shadow: 0 10px 28px rgba(0,0,0,0.32); }

.social-icon-btn--sc {
  background: #FFFC00;
  color: #000;
  box-shadow: 0 6px 18px rgba(255,252,0,0.35);
}
.social-icon-btn--sc:hover { box-shadow: 0 10px 28px rgba(255,252,0,0.45); }

/* ── Footer social icon overrides ── */
.footer-social--ig {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%) !important;
}
.footer-social--x  { background: #000 !important; }
.footer-social--sc { background: #FFFC00 !important; color: #000 !important; }
.footer-social--wa { background: #25d366 !important; }

/* ============================================================
   SOCIAL ICON BUTTONS — revised professional style
   ============================================================ */
.social-icon-btn {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: #fff;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  position: relative; overflow: hidden;
}
.social-icon-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
}
.social-icon-btn:hover { transform: translateY(-4px) scale(1.08); }
.social-icon-btn:hover::before { background: rgba(255,255,255,0.12); }

.social-icon-btn--ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 6px 20px rgba(188,24,136,0.35);
}
.social-icon-btn--ig:hover { box-shadow: 0 12px 32px rgba(188,24,136,0.5); }

.social-icon-btn--x {
  background: #000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.social-icon-btn--x:hover { background: #111; box-shadow: 0 12px 32px rgba(0,0,0,0.45); }

.social-icon-btn--sc {
  background: #FFFC00;
  color: #000;
  box-shadow: 0 6px 20px rgba(255,252,0,0.45);
}
.social-icon-btn--sc:hover { box-shadow: 0 12px 32px rgba(255,252,0,0.6); }

/* ── Footer social icons — revised ── */
.fsoc {
  width: 42px; height: 42px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: #fff;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, opacity 0.2s;
}
.fsoc:hover { transform: translateY(-3px) scale(1.1); opacity: 0.92; }

.fsoc--ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 14px rgba(188,24,136,0.35);
}
.fsoc--x {
  background: #000;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.fsoc--sc {
  background: #FFFC00;
  color: #000 !important;
  box-shadow: 0 4px 14px rgba(255,252,0,0.45);
}
.fsoc--wa {
  background: #25D366;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
}

/* Remove old footer-social--* overrides now replaced by fsoc */
.footer-social--ig, .footer-social--x,
.footer-social--sc, .footer-social--wa { all: unset; }

/* ============================================================
   SOCIAL ICONS — no box, flat colored icons
   ============================================================ */

/* Footer icons — no background, white base + brand color on hover */
.fsoc {
  width: 38px !important; height: 38px !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  transition: color 0.22s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.fsoc:hover { transform: translateY(-3px) scale(1.15); }
.fsoc--wa:hover { color: #25D366; }
.fsoc--sc:hover { color: #FFFC00; filter: drop-shadow(0 2px 6px rgba(255,252,0,0.5)); }
.fsoc--x:hover  { color: #ffffff; }
.fsoc--ig:hover { color: #E1306C; }

/* Contact page icons — no background box, brand colored */
.social-icon-btn {
  width: auto !important; height: auto !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 6px;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), color 0.2s ease;
}
.social-icon-btn:hover { transform: translateY(-4px) scale(1.18); }

.social-icon-btn--ig { color: #C13584; }
.social-icon-btn--ig:hover { color: #833AB4; }

.social-icon-btn--x { color: #000; }
.social-icon-btn--x:hover { color: #333; }

.social-icon-btn--sc { color: #F5C518; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.18)); }
.social-icon-btn--sc:hover { color: #FFDB00; }

.social-icon-btn--wa { color: #25D366; }
.social-icon-btn--wa:hover { color: #128C7E; }

/* ============================================================
   SOCIAL ICONS — Font Awesome 6, navy color
   ============================================================ */

/* Footer — navy on dark bg */
.fsoc {
  width: 40px !important; height: 40px !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none;
  color: var(--primary-dark) !important;
  transition: color 0.2s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.fsoc i { font-size: 24px !important; line-height: 1; }
.fsoc:hover { transform: translateY(-3px) scale(1.15) !important; }
.fsoc--wa:hover { color: #25D366 !important; }
.fsoc--sc:hover { color: #FFBD00 !important; }
.fsoc--x:hover  { color: #000 !important; }
.fsoc--ig:hover { color: #C13584 !important; }

/* Contact page — same navy */
.social-icon-btn {
  width: auto !important; height: auto !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 4px !important;
  color: var(--primary-dark) !important;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.social-icon-btn i { font-size: 28px !important; line-height: 1; }
.social-icon-btn:hover { transform: translateY(-4px) scale(1.15) !important; }
.social-icon-btn--ig:hover { color: #C13584 !important; }
.social-icon-btn--x:hover  { color: #000 !important; }
.social-icon-btn--sc:hover { color: #FFBD00 !important; }
.social-icon-btn--wa:hover { color: #25D366 !important; }

/* ============================================================
   SOCIAL ICONS — SVG inline, navy color (final fix)
   ============================================================ */
.fsoc {
  width: 40px !important; height: 40px !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none;
  color: var(--primary-dark) !important;
  transition: color 0.22s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.fsoc svg { width: 24px; height: 24px; display: block; fill: currentColor; }
.fsoc:hover { transform: translateY(-3px) scale(1.15) !important; box-shadow: none !important; }
.fsoc--wa:hover { color: #25D366 !important; }
.fsoc--sc:hover { color: #FFBD00 !important; }
.fsoc--x:hover  { color: #000 !important; }
.fsoc--ig:hover { color: #C13584 !important; }

.social-icon-btn {
  width: auto !important; height: auto !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 6px !important;
  color: var(--primary-dark) !important;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.social-icon-btn svg { width: 28px; height: 28px; display: block; fill: currentColor; }
.social-icon-btn:hover { transform: translateY(-4px) scale(1.15) !important; box-shadow: none !important; }
.social-icon-btn--ig:hover { color: #C13584 !important; }
.social-icon-btn--x:hover  { color: #000 !important; }
.social-icon-btn--sc:hover { color: #FFBD00 !important; }
.social-icon-btn--wa:hover { color: #25D366 !important; }
