/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --primary:    #0057FF;
  --primary-dk: #0041C2;
  --accent:     #00C6A7;
  --dark:       #0A1628;
  --body-text:  #3D4F6B;
  --muted:      #7A8FA8;
  --light-bg:   #F4F7FF;
  --white:      #FFFFFF;
  --border:     #DDE4F0;

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-card: 0 4px 24px rgba(0,87,255,.08);
  --shadow-hover: 0 12px 40px rgba(0,87,255,.16);
}

/* ===========================
   RESET / BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--dark); line-height: 1.15; }
p { line-height: 1.75; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===========================
   UTILITIES
=========================== */
.text-primary-brand { color: var(--primary) !important; }
.text-accent        { color: var(--accent)  !important; }
.bg-light-brand     { background: var(--light-bg); }

.btn-primary-brand {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .75rem 2rem;
  font-weight: 700;
  font-size: .95rem;
  transition: background .25s, transform .2s, box-shadow .25s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary-brand:hover {
  background: var(--primary-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,87,255,.35);
}

.btn-outline-brand {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: .7rem 2rem;
  font-weight: 700;
  font-size: .95rem;
  transition: all .25s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline-brand:hover {
  background: var(--primary);
  color: #fff;
}

.section-label {
  display: inline-block;
  background: rgba(0,87,255,.08);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
}
.section-title span { color: var(--primary); }

/* ===========================
   NAVBAR
=========================== */
#mainNav {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  transition: box-shadow .3s;
  position: sticky; top: 0; z-index: 9999;
}
#mainNav.scrolled { box-shadow: 0 4px 20px rgba(0,87,255,.10); }

.navbar-brand img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-link {
  color: var(--body-text) !important;
  font-weight: 600;
  font-size: .92rem;
  padding: .5rem 1rem !important;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background: rgba(0,87,255,.06);
}
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  border-radius: 50px;
  padding: .5rem 1.5rem !important;
  font-weight: 700;
}
.nav-cta:hover { background: var(--primary-dk); color:#fff !important; }

/* Regional dropdown */
.nav-item.dropdown .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  padding: .5rem;
  margin-top: .5rem;
}
.nav-item.dropdown .dropdown-item {
  border-radius: var(--radius-sm);
  padding: .5rem .85rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--body-text);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: background .15s, color .15s;
}
.nav-item.dropdown .dropdown-item:hover {
  background: rgba(0,87,255,.06);
  color: var(--primary);
}
.nav-flag-img {
  width: 20px; height: 14px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ===========================
   HERO — full viewport
=========================== */
#hero {
  height: 100vh;
  min-height: 640px;
  background: linear-gradient(140deg, #EBF1FF 0%, #F3FBFA 55%, #FFFFFF 100%);
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .4;
  pointer-events: none;
}
.hero-blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #B0CBFF, transparent 70%);
  top: -160px; right: 20%;
}
.hero-blob-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #AAEEE0, transparent 70%);
  bottom: -80px; left: -60px;
}

/* LEFT COLUMN */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-right: 2rem;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(0,198,167,.10);
  color: #008F7A;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .38rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(0,198,167,.28);
  margin-bottom: 1.4rem;
  width: fit-content;
}
.hero-badge i { font-size: .85rem; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.3rem;
}
.hero-title span { color: var(--primary); }

.hero-desc {
  font-size: 1rem;
  color: var(--body-text);
  max-width: 460px;
  line-height: 1.78;
  margin-bottom: 2rem;
}

.hero-btns { 
  display: flex; 
  flex-wrap: wrap; 
  gap: .85rem; 
  margin-bottom: 2.5rem; 
}

.hero-stats {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-item {
  padding-right: 1.25rem;
  margin-right: 1.25rem;
  border-right: 1px solid var(--border);
  flex: 0 0 auto;
  min-width: 0;
}
.hero-stat-item:last-child { 
  border-right: none; 
  padding-right: 0; 
  margin-right: 0; 
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -.01em;
}

.hero-stat-label {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: .35rem;
  white-space: nowrap;
  letter-spacing: .01em;
}

/* RIGHT COLUMN */
.hero-right {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 520px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 28px 28px 120px 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,87,255,.18);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #C8D9FF 0%, #D4F4EE 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
}
.hero-photo-placeholder i { font-size: 5rem; color: rgba(0,87,255,.2); }
.hero-photo-placeholder span {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(0,87,255,.35);
}

.hero-photo-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80%; height: 80%;
  border-radius: 28px 28px 120px 28px;
  background: rgba(0,87,255,.07);
  z-index: -1;
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,87,255,.14);
  padding: .85rem 1.1rem;
  display: flex; align-items: center; gap: .75rem;
  z-index: 10;
}
.hfc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.hfc-label { font-size: .7rem; color: var(--muted); font-weight: 600; }
.hfc-value { font-size: .9rem; font-weight: 700; color: var(--dark); line-height: 1.1; }

.hfc-1 { top: 12%; left: -60px; animation: floatCard 4s ease-in-out infinite; }
.hfc-2 { bottom: 14%; right: -50px; animation: floatCard 4s ease-in-out 1.8s infinite; }
.hfc-3 { bottom: 38%; left: -44px; animation: floatCard 5s ease-in-out .9s infinite; }

/* Varian warna floating card icons */
.hfc-icon.blue {
  background: rgba(0,87,255,.12);
  color: var(--primary);
}
.hfc-icon.orange {
  background: rgba(255,165,80,.18);
  color: #E8873A;
}
.hfc-icon.teal {
  background: rgba(0,198,167,.15);
  color: #00A88C;
}
.hfc-icon.purple {
  background: rgba(140,82,255,.12);
  color: #7A4FE0;
}
.hfc-icon.pink {
  background: rgba(255,92,147,.12);
  color: #E8457A;
}

@keyframes floatCard {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}

/* ===========================
   ABOUT PREVIEW
=========================== */
#about-preview { padding: 100px 0; }

.about-img-wrap { position: relative; width: 100%; }
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%; height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  display: block;
}
.about-img-placeholder {
  width: 100%; height: 460px;
  background: linear-gradient(135deg,#EAF0FF,#DAF4EF);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.about-stat-card {
  position: absolute;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: 0 12px 36px rgba(0,87,255,.3);
}
.about-stat-card.c1 { bottom: 8%; right: 4%; }
.about-stat-card.c2 { top: 10%; left: 4%; background:#fff; color:var(--dark); box-shadow:var(--shadow-card); }
.about-stat-card .num { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; }
.about-stat-card .lbl { font-size: .75rem; font-weight: 600; opacity:.85; }
.about-stat-card.c2 .num { color: var(--primary); }

.about-check { display:flex; gap:.6rem; align-items:flex-start; margin-bottom:.85rem; }
.about-check i { color:var(--accent); font-size:1.1rem; flex-shrink:0; margin-top:.15rem; }
.about-check span { font-size:.93rem; color:var(--body-text); font-weight:500; }

/* ===========================
   SERVICES PREVIEW
=========================== */
#services-preview { padding: 100px 0; background: var(--light-bg); }

.srv-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s;
  height: 100%;
}
.srv-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); }
.srv-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.srv-icon.blue   { background: rgba(0,87,255,.10);  color: var(--primary); }
.srv-icon.green  { background: rgba(0,198,167,.10); color: #00A88C; }
.srv-icon.orange { background: rgba(255,140,0,.10); color: #D9780A; }
.srv-icon.purple { background: rgba(140,82,255,.10);color: #7A4FE0; }
.srv-icon.red    { background: rgba(255,65,54,.10); color: #D93020; }
.srv-icon.teal   { background: rgba(0,180,216,.10); color: #0095B8; }

.srv-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.srv-card p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.srv-link {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--primary); font-size: .85rem; font-weight: 700;
  margin-top: 1rem; transition: gap .2s;
}
.srv-link:hover { gap: .6rem; }

/* ===========================
   HOW IT WORKS
=========================== */
#how-it-works { padding: 100px 0; }

.step-line {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,87,255,.3);
  position: relative; z-index: 2;
  flex-shrink: 0;
}
.step-connector {
  width: 2px; flex: 1;
  background: linear-gradient(to bottom, var(--primary), rgba(0,87,255,0));
  min-height: 50px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  transition: box-shadow .3s;
}
.step-card:hover { box-shadow: var(--shadow-card); }
.step-card h5 { font-size:1rem; font-weight:700; margin-bottom:.4rem; }
.step-card p  { font-size:.87rem; color:var(--muted); margin:0; }

/* ===========================
   TESTIMONIALS
=========================== */
#testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #0A2050 100%);
  position: relative; overflow: hidden;
}
#testimonials::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#testimonials .section-label { background: rgba(255,255,255,.1); color: #fff; }
#testimonials .section-title { color: #fff; }
#testimonials .section-title span { color: var(--accent); }

.testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
  transition: background .3s;
}
.testi-card:hover { background: rgba(255,255,255,.10); }
.testi-quote {
  font-size: 2.5rem; line-height:1;
  color: var(--accent);
  font-family: Georgia, serif;
  margin-bottom: .75rem;
}
.testi-text {
  font-size: .93rem;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size:.95rem;
  flex-shrink:0;
}
.testi-name { font-size:.9rem; font-weight:700; color:#fff; }
.testi-role { font-size:.78rem; color:rgba(255,255,255,.5); }
.testi-stars { color:#FFB800; font-size:.85rem; margin-bottom:.5rem; }

/* ===========================
   CLIENT LOGOS
=========================== */
#clients { padding: 72px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.client-track { overflow: hidden; }
.client-list {
  display: flex; gap: 3rem; align-items: center;
  animation: scrollClients 22s linear infinite;
  width: max-content;
}
@keyframes scrollClients {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo {
  height: 36px;
  filter: grayscale(1) opacity(.5);
  transition: filter .3s;
  flex-shrink: 0;
}
.client-logo:hover { filter: grayscale(0) opacity(1); }
.logo-placeholder {
  height: 36px;
  display: flex; align-items: center;
  background: var(--light-bg);
  border-radius: 8px;
  padding: 0 1.2rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===========================
   WHY CHOOSE US
=========================== */
#why-us { padding: 100px 0; background: var(--light-bg); }

.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  height: 100%;
  transition: box-shadow .3s, transform .3s;
}
.why-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.why-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(0,87,255,.08);
  line-height: 1;
  margin-bottom: .5rem;
}
.why-card h5 { font-size:1.05rem; font-weight:700; margin-bottom:.5rem; }
.why-card p  { font-size:.87rem; color:var(--muted); line-height:1.65; margin:0; }

/* ===========================
   LATEST NEWS
=========================== */
#latest-news { padding: 100px 0; }

.news-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  transition: box-shadow .3s, transform .3s;
}
.news-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.news-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.news-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--light-bg), #DAF4EF);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--primary);
}
.news-body { padding: 1.5rem; }
.news-cat {
  display: inline-block;
  background: rgba(0,87,255,.08);
  color: var(--primary);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .7rem; border-radius: 50px;
  margin-bottom: .75rem;
}
.news-body h5 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.4; }
.news-body p  { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.news-meta    { font-size: .78rem; color: var(--muted); font-weight: 600; }

/* ===========================
   FAQ
=========================== */
#faq { padding: 100px 0; background: var(--light-bg); }

.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.accordion-button {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark) !important;
  background: #fff !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
  background: rgba(0,87,255,.04) !important;
}
.accordion-body {
  font-size: .9rem;
  color: var(--body-text);
  line-height: 1.75;
  background: #fff;
  padding-top: 0;
}

/* ===========================
   CTA SECTION — glass card
=========================== */
#cta {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  z-index: 0;
}
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.55) 0%, rgba(0,40,120,.40) 100%);
}
.cta-glass {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 28px;
  padding: 4rem 3.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.25);
}
.cta-label {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  padding: .38rem 1rem; border-radius: 50px;
  margin-bottom: 1.4rem;
}
.cta-glass h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.18);
}
.cta-glass p {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem; line-height: 1.7;
  max-width: 520px; margin: 0 auto 2.2rem;
}
.btn-cta-primary {
  background: #fff; color: var(--primary);
  border: none; border-radius: 50px;
  padding: .9rem 2.2rem;
  font-weight: 800; font-size: 1rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-cta-primary:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  color: var(--primary-dk);
}
.btn-cta-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 50px; padding: .86rem 2.2rem;
  font-weight: 700; font-size: 1rem;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff; color: #fff;
}

/* ===========================
   FOOTER
=========================== */
#footer { background: var(--dark); padding: 72px 0 32px; }
.footer-brand { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: #fff; }
.footer-brand span { color: var(--accent); }
.footer-desc { color: rgba(255,255,255,.5); font-size:.88rem; line-height:1.7; margin-top:.75rem; }
.footer-heading { font-size:.75rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:1.25rem; }
.footer-link { display:block; color:rgba(255,255,255,.6); font-size:.88rem; font-weight:500; margin-bottom:.6rem; transition:color .2s; }
.footer-link:hover { color:#fff; }
.footer-divider { border-color:rgba(255,255,255,.08); margin: 2.5rem 0 1.5rem; }
.footer-copy { font-size:.82rem; color:rgba(255,255,255,.35); }
.social-btn {
  width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.08);
  display:inline-flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.6);font-size:1rem;
  transition:background .2s,color .2s;
}
.social-btn:hover { background:var(--primary); color:#fff; }

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   SCROLL TO TOP
=========================== */
#scrollTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--primary); color: #fff;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(0,87,255,.35);
  cursor: pointer;
  opacity: 0; transform: translateY(16px);
  transition: opacity .3s, transform .3s, background .2s;
  z-index: 8888;
}
#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--primary-dk); }

/* ===========================
   RESPONSIVE — TABLET (≤991px)
=========================== */
@media (max-width: 991px) {
  #hero { height: auto; min-height: unset; padding: 5.5rem 0 3rem; }
  .hero-left { padding-right: 0; }
  .hero-right { justify-content: center; height: auto; margin-top: 2.5rem; }
  .hero-photo-wrap { height: 340px; max-width: 100%; }
  .hfc-1 { left: 0; top: 8%; }
  .hfc-2 { right: 0; bottom: 8%; }
  .hfc-3 { display: none; }
}

/* ===========================
   RESPONSIVE — MOBILE (≤767px)
=========================== */
@media (max-width: 767px) {
  #hero { padding: 5rem 0 2.5rem; height: auto; min-height: unset; }
  .hero-badge { font-size: .68rem; padding: .32rem .85rem; margin-bottom: 1rem; }
  .hero-title { font-size: 2rem; margin-bottom: 1rem; }
  .hero-desc  { font-size: .92rem; margin-bottom: 1.5rem; }
  .hero-btns  { gap: .65rem; margin-bottom: 1.75rem; }
  .btn-primary-brand, .btn-outline-brand { font-size: .88rem; padding: .65rem 1.5rem; }

  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; padding-top: 1.5rem;
  }
  .hero-stat-item {
    padding-right: 0; margin-right: 0;
    border-right: none; border-bottom: none;
    background: rgba(0,87,255,.04);
    border-radius: 10px; padding: .85rem 1rem;
  }
  .hero-stat-num   { font-size: 1.5rem; }
  .hero-stat-label { font-size: .74rem; }
  .hero-right { display: none; }

  #about-preview, #services-preview, #how-it-works,
  #testimonials, #why-us, #latest-news, #faq { padding: 60px 0; }

  .about-img-placeholder { height: 280px; }
  .about-stat-card.c1 { right: 4%; bottom: 4%; padding: .75rem 1rem; }
  .about-stat-card.c2 { left: 4%; top: 4%;   padding: .75rem 1rem; }
  .about-stat-card .num { font-size: 1.3rem; }
  .section-title { font-size: 1.65rem; }
  .srv-card { padding: 1.5rem; }
  .step-connector { display: none; }
  .step-card { margin-bottom: 1rem; }
  .testi-card { padding: 1.5rem; }
  .news-img-placeholder { height: 160px; }
  .news-body { padding: 1.1rem; }
  .cta-glass { padding: 2rem 1.25rem; border-radius: 18px; }
  .cta-glass h2 { font-size: 1.65rem; }
  .cta-glass p  { font-size: .9rem; margin-bottom: 1.5rem; }
  .btn-cta-primary, .btn-cta-outline { font-size: .9rem; padding: .75rem 1.6rem; width: 100%; justify-content: center; }
  #footer { padding: 48px 0 24px; }
}

/* ===========================
   RESPONSIVE — SMALL MOBILE (≤480px)
=========================== */
@media (max-width: 480px) {
  .hero-title  { font-size: 1.8rem; }
  .section-title { font-size: 1.45rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: .75rem; }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .hero-stat-item { padding-right: .75rem; margin-right: .75rem; }
  .hero-stat-num   { font-size: 1.35rem; }
  .hero-stat-label { font-size: .68rem; }
}

/* ===========================
   PROFILE PAGE ADDITIONS
   Append this to public/css/eldo.css
=========================== */
/* ============================================================
       1. HERO / BANNER
    ============================================================ */
    #profile-hero {
      background: linear-gradient(140deg, #EBF1FF 0%, #F0FBFA 55%, #FFFFFF 100%);
      padding: 100px 0 80px;
      position: relative; overflow: hidden;
    }
    #profile-hero::before {
      content:'';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(0,87,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,87,255,.04) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }
    .hero-blob-ph {
      position: absolute; border-radius: 50%;
      filter: blur(90px); opacity: .4; pointer-events: none;
    }
    .hb1 { width:500px;height:500px; background:radial-gradient(#B0CBFF,transparent 70%); top:-180px;right:-80px; }
    .hb2 { width:300px;height:300px; background:radial-gradient(#AAEEE0,transparent 70%); bottom:-80px;left:-40px; }

    .profile-hero-content { position: relative; z-index: 2; }

    .breadcrumb-custom {
      display: flex; align-items: center; gap: .5rem;
      font-size: .8rem; font-weight: 600;
      color: var(--muted);
      margin-bottom: 1.5rem;
    }
    .breadcrumb-custom a { color: var(--muted); transition: color .2s; }
    .breadcrumb-custom a:hover { color: var(--primary); }
    .breadcrumb-custom i { font-size: .65rem; }
    .breadcrumb-custom span { color: var(--dark); font-weight: 700; }

    .profile-hero-title {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 800; color: var(--dark); line-height: 1.1;
      letter-spacing: -.02em; margin-bottom: 1.25rem;
    }
    .profile-hero-title span { color: var(--primary); }
    .profile-hero-sub {
      font-size: 1.05rem; color: var(--body-text);
      max-width: 560px; line-height: 1.78; margin-bottom: 2.5rem;
    }

    /* Stat pills in hero — light version */
    .hero-stat-pills {
      display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .5rem;
    }
    .stat-pill {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: .6rem 1.4rem;
      display: flex; align-items: center; gap: .65rem;
      box-shadow: 0 2px 12px rgba(0,87,255,.08);
    }
    .stat-pill-num {
      font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--primary);
    }
    .stat-pill-label { font-size: .75rem; color: var(--muted); font-weight: 600; }

    /* Hero right — floating image card */
    .hero-img-frame {
      position: relative;
      width: 100%; max-width: 460px;
      height: 400px;
      margin-left: auto;
    }
    .hero-img-main {
      position: absolute; inset: 0;
      border-radius: 24px 24px 100px 24px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,87,255,.18);
    }
    .hero-img-placeholder {
      width:100%;height:100%;
      background: linear-gradient(135deg,#C8D9FF 0%,#D4F4EE 100%);
      display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;
    }
    .hero-img-placeholder i  { font-size:4rem; color:rgba(0,87,255,.2); }
    .hero-img-placeholder span{ font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(0,87,255,.35); }
    .hero-img-accent {
      position:absolute; bottom:-14px;right:-14px;
      width:75%;height:75%;
      border-radius:24px 24px 100px 24px;
      background:rgba(0,87,255,.07);
      z-index:-1;
    }
    .hero-badge-float {
      position:absolute; background:#fff; border-radius:14px;
      box-shadow:0 8px 30px rgba(0,87,255,.14);
      padding:.8rem 1.1rem;
      display:flex;align-items:center;gap:.7rem;
      z-index:10;
    }
    .hbf-icon {
      width:36px;height:36px;border-radius:10px;
      display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0;
    }
    .hbf-label { font-size:.68rem;color:var(--muted);font-weight:600; }
    .hbf-value { font-size:.85rem;font-weight:700;color:var(--dark);line-height:1.1; }
    .hbf-1 { top:8%;left:-40px; animation:floatB 4s ease-in-out infinite; }
    .hbf-2 { bottom:16%;right:-40px; animation:floatB 4.5s ease-in-out 1.5s infinite; }
    @keyframes floatB {
      0%,100%{ transform:translateY(0); }
      50%    { transform:translateY(-10px); }
    }

    /* ============================================================
       2. STORY & APPROACH
    ============================================================ */
    #story { padding: 100px 0; }

    .story-img-wrap {
      position: relative; width: 100%;
    }
    .story-img {
      width:100%; height:460px; object-fit:cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      background: linear-gradient(135deg,#EAF0FF,#DAF4EF);
      display:flex;align-items:center;justify-content:center;
    }
    .story-tag {
      position:absolute; bottom:28px; left:28px;
      background:#fff; border-radius:var(--radius-md);
      padding:1rem 1.4rem;
      box-shadow:var(--shadow-card);
      display:flex; align-items:center; gap:.75rem;
    }
    .story-tag-icon {
      width:42px;height:42px;border-radius:10px;
      background:rgba(0,87,255,.1);color:var(--primary);
      display:flex;align-items:center;justify-content:center;font-size:1.2rem;
    }
    .story-tag-label { font-size:.72rem;color:var(--muted);font-weight:600; }
    .story-tag-value { font-size:.95rem;font-weight:700;color:var(--dark); }

    .approach-pill {
      display:inline-flex;align-items:center;gap:.5rem;
      background:var(--light-bg); border:1px solid var(--border);
      border-radius:50px; padding:.4rem 1rem;
      font-size:.82rem;font-weight:600;color:var(--body-text);
      margin:.25rem;
    }
    .approach-pill i { color:var(--primary); }

    /* ============================================================
       3. MISSION & VISION
    ============================================================ */
    #mission-vision {
      padding: 100px 0;
      background: var(--light-bg);
    }
    .mv-card {
      background:#fff; border-radius:var(--radius-lg);
      padding:2.5rem; border:1px solid var(--border);
      height:100%;
      transition: box-shadow .3s, transform .3s;
    }
    .mv-card:hover { box-shadow:var(--shadow-hover); transform:translateY(-4px); }

    .mv-icon-wrap {
      width:64px;height:64px;border-radius:18px;
      display:flex;align-items:center;justify-content:center;
      font-size:1.7rem; margin-bottom:1.5rem;
    }
    .mv-card.mission .mv-icon-wrap { background:rgba(0,87,255,.10); color:var(--primary); }
    .mv-card.vision  .mv-icon-wrap { background:rgba(0,198,167,.10); color:#00A88C; }

    .mv-card h3 { font-size:1.35rem;font-weight:800;margin-bottom:1rem; }
    .mv-card p  { font-size:.95rem;color:var(--body-text);line-height:1.78; }

    .mv-list { list-style:none;margin-top:1.25rem; }
    .mv-list li {
      display:flex;align-items:flex-start;gap:.6rem;
      font-size:.9rem;color:var(--body-text);margin-bottom:.6rem;
    }
    .mv-list li i { color:var(--accent);flex-shrink:0;margin-top:.18rem; }

    /* ============================================================
       4. MILESTONES / TIMELINE  — true zigzag kiri/kanan
    ============================================================ */
    #milestones { padding: 100px 0; background: var(--light-bg); }

    .timeline {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }

    /* Vertical center line */
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--primary) 0%, rgba(0,87,255,.08) 100%);
      transform: translateX(-50%);
    }

    .tl-item {
      display: grid;
      grid-template-columns: 1fr 48px 1fr;
      align-items: start;
      margin-bottom: 2.5rem;
      position: relative;
    }

    /* LEFT card slot */
    .tl-left  { grid-column: 1; padding-right: 1.5rem; }
    /* DOT slot */
    .tl-mid   { grid-column: 2; display: flex; justify-content: center; padding-top: 1.4rem; }
    /* RIGHT card slot */
    .tl-right { grid-column: 3; padding-left: 1.5rem; }

    /* Empty spacer for alternating */
    .tl-spacer { visibility: hidden; }

    .tl-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.5rem 1.75rem;
      transition: box-shadow .3s, transform .3s;
      position: relative;
    }
    .tl-card:hover {
      box-shadow: var(--shadow-card);
      transform: translateY(-3px);
    }

    /* Arrow pointer toward center line */
    .tl-left .tl-card::after {
      content: '';
      position: absolute;
      right: -10px; top: 24px;
      width: 0; height: 0;
      border-top: 9px solid transparent;
      border-bottom: 9px solid transparent;
      border-left: 10px solid var(--border);
    }
    .tl-left .tl-card::before {
      content: '';
      position: absolute;
      right: -8px; top: 25px;
      width: 0; height: 0;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-left: 9px solid #fff;
      z-index: 1;
    }
    .tl-right .tl-card::after {
      content: '';
      position: absolute;
      left: -10px; top: 24px;
      width: 0; height: 0;
      border-top: 9px solid transparent;
      border-bottom: 9px solid transparent;
      border-right: 10px solid var(--border);
    }
    .tl-right .tl-card::before {
      content: '';
      position: absolute;
      left: -8px; top: 25px;
      width: 0; height: 0;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-right: 9px solid #fff;
      z-index: 1;
    }

    .tl-year {
      display: inline-block;
      background: rgba(0,87,255,.08);
      color: var(--primary);
      font-size: .72rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      padding: .22rem .72rem; border-radius: 50px;
      margin-bottom: .7rem;
    }
    .tl-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
    .tl-card p  { font-size: .87rem; color: var(--muted); line-height: 1.65; margin: 0; }

    /* Center dot */
    .tl-dot {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--primary);
      border: 3px solid #fff;
      box-shadow: 0 0 0 3px rgba(0,87,255,.22);
      flex-shrink: 0;
    }

    /* ============================================================
       5. VALUES
    ============================================================ */
    #values {
      padding: 100px 0;
      background: var(--light-bg);
    }
    .value-card {
      background:#fff; border-radius:var(--radius-md);
      padding:2rem; border:1px solid var(--border);
      height:100%;
      transition:box-shadow .3s, transform .3s;
      text-align:center;
    }
    .value-card:hover { box-shadow:var(--shadow-hover); transform:translateY(-5px); }

    .value-icon {
      width:60px;height:60px;border-radius:50%;
      display:flex;align-items:center;justify-content:center;
      font-size:1.5rem; margin:0 auto 1.25rem;
    }
    .v1 .value-icon { background:rgba(0,87,255,.10);  color:var(--primary); }
    .v2 .value-icon { background:rgba(0,198,167,.10); color:#00A88C; }
    .v3 .value-icon { background:rgba(255,140,0,.10); color:#D9780A; }
    .v4 .value-icon { background:rgba(140,82,255,.10);color:#7A4FE0; }
    .v5 .value-icon { background:rgba(255,65,54,.10); color:#D93020; }
    .v6 .value-icon { background:rgba(0,180,216,.10); color:#0095B8; }

    .value-card h5 { font-size:1rem;font-weight:700;margin-bottom:.5rem; }
    .value-card p  { font-size:.85rem;color:var(--muted);line-height:1.65;margin:0; }

    /* ============================================================
       6. TEAM
    ============================================================ */
    #team { padding: 100px 0; }

    .team-card {
      background:#fff; border-radius:var(--radius-md);
      border:1px solid var(--border);
      overflow:hidden; height:100%;
      transition:box-shadow .3s,transform .3s;
    }
    .team-card:hover { box-shadow:var(--shadow-hover); transform:translateY(-5px); }

    .team-photo {
      width:100%; height:240px;
      object-fit:cover;
      background:linear-gradient(135deg,#EAF0FF,#DAF4EF);
      display:flex;align-items:center;justify-content:center;
    }
    .team-photo-initials {
      width:80px;height:80px;border-radius:50%;
      display:flex;align-items:center;justify-content:center;
      font-family:var(--font-head);font-size:1.6rem;font-weight:800;color:#fff;
    }

    .team-body { padding:1.5rem; }
    .team-body h5 { font-size:1.05rem;font-weight:700;margin-bottom:.2rem; }
    .team-role {
      font-size:.8rem;color:var(--primary);font-weight:700;
      letter-spacing:.06em;text-transform:uppercase;
      margin-bottom:.75rem;
    }
    .team-body p { font-size:.85rem;color:var(--muted);line-height:1.65;margin-bottom:1rem; }
    .team-social {
      display:flex;gap:.5rem;
    }
    .team-social-btn {
      width:32px;height:32px;border-radius:8px;
      background:var(--light-bg);
      display:flex;align-items:center;justify-content:center;
      color:var(--muted);font-size:.9rem;
      transition:background .2s,color .2s;
    }
    .team-social-btn:hover { background:var(--primary);color:#fff; }

    /* ============================================================
       7. CAPABILITIES & STANDARDS  — clean light background
    ============================================================ */
    #capabilities {
      padding: 100px 0;
      background: var(--light-bg);
      position: relative; overflow: hidden;
    }
    #capabilities::before {
      content:'';
      position:absolute;inset:0;
      background-image:
        linear-gradient(rgba(0,87,255,.03) 1px,transparent 1px),
        linear-gradient(90deg,rgba(0,87,255,.03) 1px,transparent 1px);
      background-size:48px 48px;
      pointer-events:none;
    }
    #capabilities .section-label { background:rgba(0,87,255,.08); color:var(--primary); }
    #capabilities .section-title { color:var(--dark); }
    #capabilities .section-title span { color:var(--primary); }

    .cap-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.75rem;
      height: 100%;
      transition: box-shadow .3s, transform .3s;
    }
    .cap-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
      border-color: rgba(0,87,255,.2);
    }
    .cap-card-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(0,87,255,.10); color: var(--primary);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; margin-bottom: 1rem;
    }
    .cap-card h5 { font-size:.95rem; font-weight:700; color:var(--dark); margin-bottom:.4rem; }
    .cap-card p  { font-size:.83rem; color:var(--muted); line-height:1.65; margin:0; }

    /* Standards badges */
    .standard-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(0,87,255,.07);
      border: 1px solid rgba(0,87,255,.15);
      color: var(--primary);
      font-size: .8rem; font-weight: 700;
      padding: .45rem 1rem; border-radius: 50px;
      margin: .3rem;
      transition: background .2s, border-color .2s;
    }
    .standard-badge:hover {
      background: rgba(0,87,255,.12);
      border-color: rgba(0,87,255,.3);
    }
    .standard-badge i { font-size:.85rem; }

    /* Standards divider line */
    .standards-divider {
      border-top: 1px solid var(--border);
      padding-top: 2.5rem;
    }
    .standards-label {
      font-size: .75rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--muted); margin-bottom: 1.25rem;
    }

    
/* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width:991px) {
      #profile-hero { padding:80px 0 60px; }
      .hero-img-frame { max-width:100%;height:300px;margin-left:0;margin-top:2.5rem; }
      .hbf-1 { left:0; } .hbf-2 { right:0; }

      /* Timeline → collapse to single left column */
      .timeline::before { left: 20px; transform: none; }
      .tl-item {
        grid-template-columns: 0px 40px 1fr !important;
      }
      .tl-left  { grid-column: 3; padding-right: 0; padding-left: 0; }
      .tl-right { grid-column: 3; padding-left: 0; }
      .tl-mid   { grid-column: 2; }
      .tl-spacer { display: none !important; }
      .tl-left .tl-card::after,
      .tl-left .tl-card::before,
      .tl-right .tl-card::after,
      .tl-right .tl-card::before { display: none; }
    }
    @media (max-width:767px) {
      #profile-hero { padding:5rem 0 3rem; }
      .profile-hero-title { font-size:1.9rem; }
      .hero-stat-pills { gap:.6rem; }
      .stat-pill { padding:.45rem 1rem; }
      .stat-pill-num { font-size:1.1rem; }
      #story,#mission-vision,#milestones,#values,#team,#capabilities { padding:60px 0; }
      .story-img { height:300px; }
      .cta-glass { padding:2rem 1.25rem;border-radius:18px; }
      .cta-glass h2 { font-size:1.6rem; }
      .btn-cta-primary,.btn-cta-outline { width:100%;justify-content:center;font-size:.9rem; }
      .hero-img-frame { display:none; }
    }
  
    /* ===========================
   SERVICES PAGE
=========================== */
#srv-hero {
  background: linear-gradient(140deg,#EBF1FF 0%,#F0FBFA 55%,#FFFFFF 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
#srv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,87,255,.04) 1px,transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.srv-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .4;
  pointer-events: none;
}
.shb1 { width: 480px; height: 480px; background: radial-gradient(#B0CBFF,transparent 70%); top: -160px; right: -60px; }
.shb2 { width: 300px; height: 300px; background: radial-gradient(#AAEEE0,transparent 70%); bottom: -80px; left: -40px; }

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.breadcrumb-custom a { color: var(--muted); transition: color .2s; }
.breadcrumb-custom a:hover { color: var(--primary); }
.breadcrumb-custom i { font-size: .65rem; }
.breadcrumb-custom span { color: var(--dark); font-weight: 700; }

.srv-hero-title {
  font-size: clamp(2.2rem,5vw,3.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.srv-hero-title span { color: var(--primary); }
.srv-hero-sub {
  font-size: 1.05rem;
  color: var(--body-text);
  max-width: 560px;
  line-height: 1.78;
  margin-bottom: 2.5rem;
}
.srv-nav-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .5rem; }
.srv-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--body-text);
  transition: all .2s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,87,255,.06);
}
.srv-nav-pill:hover,
.srv-nav-pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.srv-nav-pill i { font-size: .9rem; }

.srv-hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,87,255,.15);
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
}
.shc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.shc-badge { background: rgba(0,87,255,.08); color: var(--primary); font-size: .72rem; font-weight: 700; padding: .28rem .75rem; border-radius: 50px; }
.shc-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.shc-row { display: flex; align-items: center; gap: .85rem; padding: .8rem 0; border-bottom: 1px solid var(--border); }
.shc-row:last-child { border-bottom: none; padding-bottom: 0; }
.shc-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.shc-label { font-size: .72rem; color: var(--muted); font-weight: 600; }
.shc-value { font-size: .88rem; font-weight: 700; color: var(--dark); }
.shc-tag { margin-left: auto; flex-shrink: 0; font-size: .68rem; font-weight: 700; padding: .2rem .55rem; border-radius: 50px; }
.tag-blue { background: rgba(0,87,255,.10); color: var(--primary); }
.tag-green { background: rgba(0,198,167,.10); color: #00A88C; }
.tag-orange { background: rgba(255,140,0,.10); color: #D9780A; }
.tag-purple { background: rgba(122,79,224,.10); color: #7A4FE0; }
.tag-teal { background: rgba(0,180,216,.10); color: #0095B8; }
.tag-red { background: rgba(255,65,54,.10); color: #D93020; }
.shc-icon-blue { background: rgba(0,87,255,.10); color: var(--primary); }
.shc-icon-green { background: rgba(0,198,167,.10); color: #00A88C; }
.shc-icon-orange { background: rgba(255,140,0,.10); color: #D9780A; }
.shc-icon-purple { background: rgba(122,79,224,.10); color: #7A4FE0; }
.shc-icon-teal { background: rgba(0,180,216,.10); color: #0095B8; }
.shc-icon-red { background: rgba(255,65,54,.10); color: #D93020; }

#service-catalog { padding: 100px 0; }
.service-main-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  transition: box-shadow .3s,transform .3s;
  display: flex;
  flex-direction: column;
}
.service-main-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); }
.smc-top { padding: 2rem 2rem 1.5rem; position: relative; flex: 1 1 auto; }
.smc-icon-wrap { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.25rem; }
.smc-number { position: absolute; top: 1.5rem; right: 1.75rem; font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: rgba(0,87,255,.06); line-height: 1; user-select: none; }
.smc-top h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: .6rem; }
.smc-top p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin: 0; }
.smc-features { padding: 1.25rem 2rem 1.75rem; border-top: 1px solid var(--border); background: var(--light-bg); }
.smc-features ul { list-style: none; margin: 0; padding: 0; }
.smc-features li { display: flex; align-items: flex-start; gap: .55rem; font-size: .83rem; color: var(--body-text); margin-bottom: .5rem; }
.smc-features li:last-child { margin-bottom: 0; }
.smc-features li i { color: var(--accent); flex-shrink: 0; margin-top: .18rem; font-size: .95rem; }
.sc-blue .smc-icon-wrap { background: rgba(0,87,255,.10); color: var(--primary); }
.sc-green .smc-icon-wrap { background: rgba(0,198,167,.10); color: #00A88C; }
.sc-orange .smc-icon-wrap { background: rgba(255,140,0,.10); color: #D9780A; }
.sc-purple .smc-icon-wrap { background: rgba(122,79,224,.10); color: #7A4FE0; }
.sc-teal .smc-icon-wrap { background: rgba(0,180,216,.10); color: #0095B8; }
.sc-red .smc-icon-wrap { background: rgba(255,65,54,.10); color: #D93020; }

#how-deliver { padding: 100px 0; background: var(--light-bg); }
.deliver-step { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 2.5rem; }
.deliver-step:last-child { margin-bottom: 0; }
.ds-num { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: #fff; font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 6px 20px rgba(0,87,255,.3); }
.ds-content h5 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.ds-content p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin: 0; }
.deliver-visual { background: #fff; border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border); box-shadow: var(--shadow-card); height: 100%; }
.dv-stat { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; background: var(--light-bg); border-radius: var(--radius-sm); margin-bottom: .85rem; }
.dv-stat:last-child { margin-bottom: 0; }
.dv-stat-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.dv-stat h6 { font-size: .88rem; font-weight: 700; color: var(--dark); margin: 0; }
.dv-stat p { font-size: .77rem; color: var(--muted); margin: 0; }
.dv-bar-wrap { background: #E8EEF8; border-radius: 50px; height: 5px; margin-top: .35rem; }
.dv-bar { height: 5px; border-radius: 50px; background: var(--primary); }
.dv-stat-icon-blue { background: rgba(0,87,255,.10); color: var(--primary); }
.dv-stat-icon-green { background: rgba(0,198,167,.10); color: #00A88C; }
.dv-stat-icon-orange { background: rgba(255,140,0,.10); color: #D9780A; }
.dv-stat-icon-purple { background: rgba(122,79,224,.10); color: #7A4FE0; }
.dv-stat-icon-teal { background: rgba(0,180,216,.10); color: #0095B8; }
.dv-stat-icon-red { background: rgba(255,65,54,.10); color: #D93020; }

#capabilities { padding: 100px 0; }
.cap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.cap-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: box-shadow .3s,transform .3s; }
.cap-item:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.cap-item-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(0,87,255,.10); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.cap-item h6 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: .25rem; }
.cap-item p { font-size: .8rem; color: var(--muted); line-height: 1.55; margin: 0; }
.cap-item-icon-blue { background: rgba(0,87,255,.10); color: var(--primary); }
.cap-item-icon-green { background: rgba(0,198,167,.10); color: #00A88C; }
.cap-item-icon-orange { background: rgba(255,140,0,.10); color: #D9780A; }
.cap-item-icon-purple { background: rgba(122,79,224,.10); color: #7A4FE0; }
.cap-item-icon-teal { background: rgba(0,180,216,.10); color: #0095B8; }
.cap-item-icon-red { background: rgba(255,65,54,.10); color: #D93020; }
.standard-badge { display: inline-flex; align-items: center; gap: .45rem; background: rgba(0,87,255,.07); border: 1px solid rgba(0,87,255,.15); color: var(--primary); font-size: .78rem; font-weight: 700; padding: .4rem .9rem; border-radius: 50px; margin: .3rem; transition: background .2s; }
.standard-badge:hover { background: rgba(0,87,255,.12); }
.standard-badge i { font-size: .8rem; }

#sample-solutions { padding: 100px 0; background: var(--light-bg); }
.solution-card { background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; height: 100%; transition: box-shadow .3s,transform .3s; }
.solution-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.sc-thumb { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.sc-thumb i { color: var(--primary); }
.sc-thumb-label { position: absolute; top: 12px; left: 14px; background: rgba(255,255,255,.9); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .22rem .7rem; border-radius: 50px; color: var(--dark); }
.sc-body { padding: 1.4rem; }
.sc-client { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.sc-body h5 { font-size: .98rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.35; }
.sc-body p { font-size: .83rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.sc-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.sc-tag { font-size: .7rem; font-weight: 700; padding: .2rem .65rem; border-radius: 50px; background: var(--light-bg); color: var(--body-text); border: 1px solid var(--border); }
.sc-thumb-blue { background: linear-gradient(135deg,#EAF0FF,#DAF4EF); }
.sc-thumb-blue i { color: var(--primary); }
.sc-thumb-purple { background: linear-gradient(135deg,#F4EDFF,#EAF0FF); }
.sc-thumb-purple i { color: #7A4FE0; }
.sc-thumb-orange { background: linear-gradient(135deg,#FFF4E5,#DAF4EF); }
.sc-thumb-orange i { color: #D9780A; }
.sc-thumb-red { background: linear-gradient(135deg,#FFF0F0,#F4EDFF); }
.sc-thumb-red i { color: #D93020; }
.sc-thumb-green { background: linear-gradient(135deg,#E5F6F0,#EAF0FF); }
.sc-thumb-green i { color: #00A88C; }
.sc-thumb-teal { background: linear-gradient(135deg,#E5EEF6,#DAF4EF); }
.sc-thumb-teal i { color: #0095B8; }

@media (max-width: 991px) {
  #srv-hero { padding: 80px 0 60px; }
  .srv-hero-card { max-width: 100%; margin: 2rem auto 0; }
  .cap-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 767px) {
  #srv-hero { padding: 5rem 0 3rem; }
  .srv-hero-title { font-size: 1.9rem; }
  .srv-hero-card { display: none; }
  #service-catalog,
  #how-deliver,
  #capabilities,
  #sample-solutions { padding: 60px 0; }
}
@media (max-width: 576px) {
  .cap-grid { grid-template-columns: 1fr; }
}

/* ===========================
   WORK PAGE ADDITIONS
   Append to public/css/eldo.css
=========================== */

#work-page #work-hero {
  background: linear-gradient(140deg,#EBF1FF 0%,#F0FBFA 55%,#FFFFFF 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
#work-page #work-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,87,255,.04) 1px,transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
#work-page .hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .4;
  pointer-events: none;
}
#work-page .hb1 { width:500px;height:500px;background:radial-gradient(#B0CBFF,transparent 70%);top:-160px;right:-80px; }
#work-page .hb2 { width:320px;height:320px;background:radial-gradient(#AAEEE0,transparent 70%);bottom:-80px;left:-60px; }

#work-page .breadcrumb-custom {
  display:flex; align-items:center; gap:.5rem;
  font-size:.8rem; font-weight:600; color:var(--muted); margin-bottom:1.5rem;
}
#work-page .breadcrumb-custom a { color:var(--muted); transition:color .2s; }
#work-page .breadcrumb-custom a:hover { color:var(--primary); }
#work-page .breadcrumb-custom i { font-size:.65rem; }
#work-page .breadcrumb-custom span { color:var(--dark); font-weight:700; }

#work-page .work-hero-title {
  font-size:clamp(2.2rem,5vw,3.8rem);
  font-weight:800; color:var(--dark); line-height:1.1;
  letter-spacing:-.02em; margin-bottom:1.25rem;
}
#work-page .work-hero-title span { color:var(--primary); }
#work-page .work-hero-sub {
  font-size:1.05rem; color:var(--body-text);
  max-width:540px; line-height:1.78; margin-bottom:2rem;
}

#work-page .hero-stats { display:flex; flex-wrap:wrap; gap:.75rem; }
#work-page .hero-stat-pill {
  display:inline-flex; align-items:center; gap:.6rem;
  background:#fff; border:1px solid var(--border);
  border-radius:50px; padding:.5rem 1.1rem;
  font-size:.85rem; font-weight:600; color:var(--dark);
  box-shadow:0 2px 10px rgba(0,87,255,.06);
}
#work-page .hero-stat-pill .num {
  font-family:var(--font-head); font-weight:800;
  font-size:1rem; color:var(--primary);
}

#work-page .work-hero-card {
  background:#fff; border-radius:var(--radius-lg);
  box-shadow:0 24px 80px rgba(0,87,255,.14);
  padding:1.8rem; width:100%; max-width:360px; margin-left:auto;
}
#work-page .whc-title { font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);margin-bottom:1.2rem; }
#work-page .whc-bar-item { margin-bottom:1rem; }
#work-page .whc-bar-item:last-child { margin-bottom:0; }
#work-page .whc-bar-label { display:flex;justify-content:space-between;font-size:.82rem;font-weight:600;margin-bottom:.35rem;color:var(--dark);gap:1rem; }
#work-page .whc-bar-label span { color:var(--muted); font-weight:500; white-space:nowrap; }
#work-page .whc-bar-track { background:var(--light-bg);border-radius:50px;height:7px; }
#work-page .whc-bar-fill { height:7px;border-radius:50px;transition:width 1s ease; }

#work-page #filter-bar {
  padding:40px 0 0;
  background:#fff;
  position:sticky;
  top:69px;
  z-index:100;
}
#work-page .filter-inner {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:1rem;
  padding:1rem 1.5rem;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  box-shadow:0 4px 20px rgba(0,87,255,.06);
}
#work-page .filter-tabs { display:flex; flex-wrap:wrap; gap:.5rem; }
#work-page .filter-btn {
  background:var(--light-bg); color:var(--body-text);
  border:1px solid var(--border); border-radius:50px;
  padding:.4rem 1rem; font-size:.82rem; font-weight:600;
  cursor:pointer; transition:all .2s;
  display:inline-flex; align-items:center; gap:.35rem;
}
#work-page .filter-btn:hover { background:rgba(0,87,255,.08); color:var(--primary); border-color:rgba(0,87,255,.2); }
#work-page .filter-btn.active { background:var(--primary); color:#fff; border-color:var(--primary); }
#work-page .filter-btn .count {
  background:rgba(255,255,255,.3); color:inherit;
  font-size:.7rem; font-weight:700;
  padding:.1rem .45rem; border-radius:50px;
}
#work-page .filter-btn:not(.active) .count { background:rgba(0,87,255,.1); color:var(--primary); }
#work-page .filter-count-label { font-size:.85rem; color:var(--muted); font-weight:500; white-space:nowrap; }
#work-page .filter-count-label strong { color:var(--dark); }

#work-page #portfolio { padding:40px 0 100px; background:#fff; }
#work-page .portfolio-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}
#work-page .portfolio-card {
  background:#fff; border:1px solid var(--border);
  border-radius:var(--radius-md); overflow:hidden;
  transition:transform .3s,box-shadow .3s,opacity .4s;
  cursor:default;
}
#work-page .portfolio-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-hover); }
#work-page .portfolio-card.hidden { display:none; }

#work-page .pc-thumb {
  position:relative; height:200px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
#work-page .pc-thumb-img {
  width:100%; height:100%; object-fit:cover;
}
#work-page .pc-thumb-icon {
  font-size:3.5rem; z-index:1;
  filter:drop-shadow(0 4px 16px rgba(0,0,0,.08));
  color:var(--primary);
}
#work-page .pc-thumb-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(10,22,40,.5) 0%, transparent 60%);
  opacity:0; transition:opacity .3s;
}
#work-page .portfolio-card:hover .pc-thumb-overlay { opacity:1; }
#work-page .pc-category-badge {
  position:absolute; top:14px; left:14px;
  font-size:.68rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  padding:.28rem .75rem; border-radius:50px;
  background:rgba(255,255,255,.9); color:var(--dark);
}
#work-page .pc-year-badge {
  position:absolute; top:14px; right:14px;
  font-size:.68rem; font-weight:700;
  padding:.28rem .7rem; border-radius:50px;
  background:rgba(0,87,255,.9); color:#fff;
}
#work-page .pc-body { padding:1.4rem 1.5rem; }
#work-page .pc-client {
  font-size:.72rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--muted); margin-bottom:.4rem;
}
#work-page .pc-body h4 { font-size:1rem; font-weight:700; margin-bottom:.5rem; line-height:1.4; }
#work-page .pc-body p { font-size:.84rem; color:var(--muted); line-height:1.6; margin-bottom:1rem; }
#work-page .pc-tags { display:flex; flex-wrap:wrap; gap:.4rem; margin-bottom:1rem; }
#work-page .pc-tag {
  font-size:.7rem; font-weight:600;
  padding:.2rem .65rem; border-radius:50px;
  background:var(--light-bg); color:var(--body-text); border:1px solid var(--border);
}
#work-page .pc-footer {
  display:flex; align-items:center; justify-content:space-between;
  border-top:1px solid var(--border); padding-top:1rem; gap:1rem;
}
#work-page .pc-result {
  display:flex; align-items:center; gap:.4rem;
  font-size:.78rem; font-weight:600; color:var(--accent);
}
#work-page .pc-result i { font-size:.85rem; }
#work-page .pc-industry { font-size:.75rem; color:var(--muted); font-weight:500; text-align:right; }

#work-page #no-results {
  display:none; text-align:center; padding:80px 0;
  color:var(--muted);
}
#work-page #no-results i { font-size:3rem; margin-bottom:1rem; opacity:.3; }
#work-page #no-results h5 { font-size:1.1rem; font-weight:800; margin-bottom:.4rem; }
#work-page #no-results p { font-size:1rem; margin:0; }

#work-page #impact { padding:80px 0; background:var(--light-bg); }
#work-page .impact-card {
  background:#fff; border-radius:var(--radius-md);
  border:1px solid var(--border);
  padding:2rem 1.5rem; text-align:center;
  height:100%;
  transition:box-shadow .3s,transform .3s;
}
#work-page .impact-card:hover { box-shadow:var(--shadow-card); transform:translateY(-4px); }
#work-page .impact-icon {
  width:56px; height:56px; border-radius:14px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; color:#fff; margin:0 auto 1.1rem;
}
#work-page .impact-num {
  font-family:var(--font-head); font-size:2.4rem; font-weight:800;
  color:var(--primary); line-height:1; margin-bottom:.3rem;
}
#work-page .impact-label { font-size:.88rem; color:var(--muted); font-weight:500; }

#work-page #testimonials {
  padding:100px 0;
  background:var(--dark);
  position:relative; overflow:hidden;
}
#work-page #testimonials::before {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(rgba(0,87,255,.08) 1px, transparent 1px);
  background-size:32px 32px;
}
#work-page .testi-blob {
  position:absolute; border-radius:50%;
  filter:blur(120px); opacity:.2; pointer-events:none;
}
#work-page .tb1 { width:600px;height:600px;background:var(--primary);top:-200px;right:-200px; }
#work-page .tb2 { width:400px;height:400px;background:var(--accent);bottom:-150px;left:-100px; }
#work-page #testimonials .section-label { background:rgba(255,255,255,.1);color:rgba(255,255,255,.8); }
#work-page #testimonials .section-title { color:#fff; }
#work-page #testimonials .section-title span { color:var(--accent); }
#work-page #testimonials p { color:rgba(255,255,255,.55); }
#work-page .testi-card {
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg);
  padding:2.2rem;
  height:100%;
  transition:background .3s,border-color .3s;
  position:relative; z-index:1;
}
#work-page .testi-card:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.2); }
#work-page .testi-stars { color:#F59E0B; font-size:1rem; letter-spacing:.1rem; margin-bottom:1.2rem; }
#work-page .testi-quote {
  font-size:.93rem; color:rgba(255,255,255,.82) !important;
  line-height:1.78; margin-bottom:1.8rem; font-style:italic;
}
#work-page .testi-quote::before {
  content:'"'; font-size:3rem; color:rgba(0,87,255,.5); line-height:0;
  vertical-align:-.55em; margin-right:.2rem; font-style:normal; font-family:var(--font-head);
}
#work-page .testi-author { display:flex; align-items:center; gap:1rem; }
#work-page .testi-avatar {
  width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-weight:800; font-size:.95rem;
  color:#fff; flex-shrink:0; object-fit:cover;
}
#work-page .testi-name { font-size:.92rem; font-weight:700; color:#fff; margin-bottom:.1rem; }
#work-page .testi-role { font-size:.78rem; color:rgba(255,255,255,.45); }
#work-page .testi-project-tag {
  position:absolute; top:1.5rem; right:1.5rem;
  font-size:.68rem; font-weight:700; letter-spacing:.07em; text-transform:uppercase;
  padding:.22rem .65rem; border-radius:50px;
  background:rgba(0,198,167,.15); color:var(--accent);
  border:1px solid rgba(0,198,167,.25);
}

#work-page #cta { min-height:480px; }
#work-page #cta .cta-glass { padding:3.5rem 3.5rem; }

@media(max-width:991px){
  #work-page #work-hero { padding:80px 0 60px; }
  #work-page .work-hero-card { max-width:100%; margin:2.5rem auto 0; }
  #work-page .portfolio-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:767px){
  #work-page #work-hero { padding:5rem 0 3rem; }
  #work-page .work-hero-title { font-size:1.9rem; }
  #work-page .work-hero-card { display:none; }
  #work-page #filter-bar { top:62px; padding:20px 0 0; }
  #work-page .filter-inner { padding:.75rem 1rem; }
  #work-page .filter-btn { font-size:.75rem; padding:.35rem .8rem; }
  #work-page #portfolio { padding:28px 0 70px; }
  #work-page #impact,
  #work-page #testimonials { padding:60px 0; }
  #work-page .pc-footer { align-items:flex-start; flex-direction:column; gap:.5rem; }
  #work-page .pc-industry { text-align:left; }
  #work-page #cta .cta-glass { padding:2rem 1.25rem; border-radius:18px; }
  #work-page #cta .cta-glass h2 { font-size:1.6rem; }
  #work-page #cta .btn-cta-primary,
  #work-page #cta .btn-cta-outline { width:100%; justify-content:center; font-size:.9rem; }
}
@media(max-width:576px){
  #work-page .portfolio-grid { grid-template-columns:1fr; }
}

/* ============================================================
   NEWS LIST & NEWS DETAIL ADDITIONS
   Append this block to public/css/eldo.css
============================================================ */

#news-page,
#news-detail-page {
  --primary:#0057FF;
  --primary-dk:#0041C2;
  --accent:#00C6A7;
  --dark:#0A1628;
  --body-text:#3D4F6B;
  --muted:#7A8FA8;
  --light-bg:#F4F7FF;
  --white:#FFFFFF;
  --border:#DDE4F0;
  --font-head:'Space Grotesk',sans-serif;
  --font-body:'DM Sans',sans-serif;
  --radius-md:14px;
  --radius-lg:24px;
  --shadow-card:0 4px 24px rgba(0,87,255,.08);
  --shadow-hover:0 16px 48px rgba(0,87,255,.16);
}

#news-page a,
#news-detail-page a { text-decoration:none; }

#news-page .section-label,
#news-detail-page .section-label,
#news-detail-page .related-label {
  display:inline-block;
  background:rgba(0,87,255,.08);
  color:var(--primary);
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:.35rem .9rem;
  border-radius:50px;
  margin-bottom:1rem;
}

#news-page .breadcrumb-custom,
#news-detail-page .breadcrumb-custom {
  display:flex;
  align-items:center;
  gap:.5rem;
  font-size:.8rem;
  font-weight:600;
  color:var(--muted);
  margin-bottom:1.5rem;
  flex-wrap:wrap;
}

#news-page .breadcrumb-custom a,
#news-detail-page .breadcrumb-custom a { color:var(--muted); transition:color .2s; }
#news-page .breadcrumb-custom a:hover,
#news-detail-page .breadcrumb-custom a:hover { color:var(--primary); }
#news-page .breadcrumb-custom i,
#news-detail-page .breadcrumb-custom i { font-size:.65rem; }
#news-page .breadcrumb-custom span,
#news-detail-page .breadcrumb-custom span { color:var(--dark); font-weight:700; }

/* NEWS LIST HERO */
#news-page #news-hero {
  background:linear-gradient(140deg,#EBF1FF 0%,#F0FBFA 55%,#FFFFFF 100%);
  padding:100px 0 70px;
  position:relative;
  overflow:hidden;
}

#news-page #news-hero::before,
#news-detail-page #article-hero::before {
  content:'';
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(0,87,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,87,255,.04) 1px,transparent 1px);
  background-size:48px 48px;
  pointer-events:none;
}

#news-page .hero-blob,
#news-detail-page .hero-blob {
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  opacity:.4;
  pointer-events:none;
}

#news-page .hb1 { width:480px; height:480px; background:radial-gradient(#B0CBFF,transparent 70%); top:-150px; right:-80px; }
#news-page .hb2 { width:300px; height:300px; background:radial-gradient(#AAEEE0,transparent 70%); bottom:-60px; left:-40px; }

#news-page .news-hero-title {
  font-size:clamp(2.2rem,5vw,3.6rem);
  font-weight:800;
  color:var(--dark);
  line-height:1.1;
  letter-spacing:-.02em;
  margin-bottom:1.2rem;
}

#news-page .news-hero-sub {
  font-size:1.05rem;
  color:var(--body-text);
  max-width:560px;
  line-height:1.78;
}

#news-page .hero-stat-card {
  padding:1rem;
  border-radius:12px;
  text-align:center;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-card);
}

#news-page .hero-stat-card .num {
  font-size:1.8rem;
  font-weight:800;
  font-family:var(--font-head);
  line-height:1;
  margin-bottom:.25rem;
}

#news-page .hero-stat-card .lbl { font-size:.75rem; color:var(--muted); font-weight:500; }

/* SEARCH FILTER */
#news-page #search-filter {
  padding:32px 0 0;
  background:#fff;
  position:sticky;
  top:69px;
  z-index:100;
}

#news-page .sf-inner {
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:1rem 1.25rem;
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  align-items:center;
  box-shadow:0 4px 20px rgba(0,87,255,.06);
}

#news-page .search-wrap { position:relative; flex:1 1 200px; }
#news-page .search-wrap i { position:absolute; left:14px; top:50%; transform:translateY(-50%); color:var(--muted); font-size:.95rem; pointer-events:none; }

#news-page #searchInput {
  width:100%;
  border:1px solid var(--border);
  border-radius:50px;
  padding:.55rem 1rem .55rem 2.5rem;
  font-size:.88rem;
  font-family:var(--font-body);
  color:var(--dark);
  outline:none;
  transition:border-color .2s,box-shadow .2s;
}

#news-page #searchInput:focus { border-color:var(--primary); box-shadow:0 0 0 3px rgba(0,87,255,.1); }
#news-page .cat-tabs { display:flex; flex-wrap:wrap; gap:.4rem; }

#news-page .cat-btn {
  background:var(--light-bg);
  color:var(--body-text);
  border:1px solid var(--border);
  border-radius:50px;
  padding:.38rem .9rem;
  font-size:.8rem;
  font-weight:600;
  cursor:pointer;
  transition:all .2s;
}

#news-page .cat-btn:hover { background:rgba(0,87,255,.08); color:var(--primary); border-color:rgba(0,87,255,.2); }
#news-page .cat-btn.active { background:var(--primary); color:#fff; border-color:var(--primary); }
#news-page .results-label { font-size:.82rem; color:var(--muted); white-space:nowrap; }
#news-page .results-label strong { color:var(--dark); }

/* FEATURED */
#news-page #featured { padding:40px 0 0; background:#fff; }

#news-page .featured-card {
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border);
  display:flex;
  transition:box-shadow .3s;
  cursor:pointer;
  background:#fff;
}

#news-page .featured-card:hover { box-shadow:var(--shadow-hover); }

#news-page .featured-thumb {
  width:52%;
  flex-shrink:0;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:380px;
  font-size:7rem;
  overflow:hidden;
}

#news-page .featured-thumb img,
#news-page .ac-thumb img,
#news-detail-page .article-cover img,
#news-detail-page .rc-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
}

#news-page .featured-thumb .bi { font-size:7rem; }

#news-page .featured-badge {
  position:absolute;
  top:18px;
  left:18px;
  background:var(--primary);
  color:#fff;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  padding:.3rem .85rem;
  border-radius:50px;
}

#news-page .featured-body { padding:2.5rem; display:flex; flex-direction:column; justify-content:center; }
#news-page .article-cat { font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--primary); margin-bottom:.75rem; }
#news-page .featured-body h2 { font-size:clamp(1.4rem,2.5vw,2rem); font-weight:800; margin-bottom:.9rem; line-height:1.25; color:var(--dark); }
#news-page .featured-body p { font-size:.92rem; color:var(--muted); line-height:1.72; margin-bottom:1.5rem; }
#news-page .article-meta { display:flex; align-items:center; gap:1.2rem; flex-wrap:wrap; margin-bottom:1.5rem; }
#news-page .meta-item { display:flex; align-items:center; gap:.4rem; font-size:.78rem; color:var(--muted); font-weight:500; }
#news-page .meta-item i { font-size:.8rem; color:var(--primary); }

#news-page .read-more-btn {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:var(--primary);
  color:#fff;
  border:none;
  border-radius:50px;
  padding:.65rem 1.6rem;
  font-size:.88rem;
  font-weight:700;
  font-family:var(--font-head);
  transition:all .25s;
  width:fit-content;
}

#news-page .featured-card:hover .read-more-btn { background:var(--primary-dk); color:#fff; transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,87,255,.3); }

/* ARTICLE CARDS */
#news-page #articles { padding:48px 0 100px; background:#fff; }
#news-page .articles-heading { font-size:1.2rem; font-weight:700; margin:0; font-family:var(--font-head); color:var(--dark); }

#news-page .article-card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  overflow:hidden;
  height:100%;
  display:flex;
  flex-direction:column;
  transition:transform .3s,box-shadow .3s;
  color:inherit;
}

#news-page .article-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-hover); }
#news-page .article-item.hidden { display:none!important; }

#news-page .ac-thumb {
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  font-size:3.5rem;
  overflow:hidden;
}

#news-page .ac-thumb .bi { font-size:3.5rem; }

#news-page .ac-cat-badge {
  position:absolute;
  top:12px;
  left:12px;
  font-size:.65rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:.24rem .7rem;
  border-radius:50px;
  background:rgba(255,255,255,.92);
  color:var(--dark);
}

#news-page .ac-body { padding:1.4rem; flex:1; display:flex; flex-direction:column; }
#news-page .ac-body h4 { font-size:.98rem; font-weight:700; margin-bottom:.5rem; line-height:1.4; color:var(--dark); }
#news-page .ac-body p { font-size:.83rem; color:var(--muted); line-height:1.62; margin-bottom:1rem; flex:1; }
#news-page .ac-footer { display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--border); padding-top:.9rem; margin-top:auto; }
#news-page .ac-date { font-size:.76rem; color:var(--muted); display:flex; align-items:center; gap:.35rem; }
#news-page .ac-date i { color:var(--primary); font-size:.8rem; }
#news-page .ac-read { font-size:.76rem; font-weight:700; color:var(--primary); display:flex; align-items:center; gap:.3rem; transition:gap .2s; }
#news-page .article-card:hover .ac-read { gap:.55rem; }

#news-page #no-results,
#news-page .empty-static {
  display:none;
  text-align:center;
  padding:80px 0;
  color:var(--muted);
}

#news-page .empty-static { display:block; }
#news-page #no-results i,
#news-page .empty-static i { font-size:3rem; margin-bottom:1rem; opacity:.3; display:block; }
#news-page #no-results h4,
#news-page .empty-static h4 { font-size:1.2rem; font-weight:800; color:var(--dark); }

/* SHARED CTA */
#news-page #cta,
#news-detail-page #cta {
  padding:0;
  position:relative;
  overflow:hidden;
  min-height:420px;
  display:flex;
  align-items:center;
}

#news-page .cta-bg,
#news-detail-page .cta-bg {
  position:absolute;
  inset:0;
  background:url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  z-index:0;
}

#news-page .cta-bg::after,
#news-detail-page .cta-bg::after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(10,22,40,.55) 0%,rgba(0,40,120,.40) 100%);
}

#news-page .cta-glass,
#news-detail-page .cta-glass {
  position:relative;
  z-index:2;
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(18px) saturate(1.4);
  -webkit-backdrop-filter:blur(18px) saturate(1.4);
  border:1px solid rgba(255,255,255,.28);
  border-radius:28px;
  padding:3.5rem;
  text-align:center;
  box-shadow:0 8px 40px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.25);
}

#news-page .cta-label,
#news-detail-page .cta-label {
  display:inline-block;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
  padding:.38rem 1rem;
  border-radius:50px;
  margin-bottom:1.4rem;
}

#news-page .cta-glass h2,
#news-detail-page .cta-glass h2 {
  font-size:clamp(1.8rem,3.5vw,2.6rem);
  font-weight:800;
  color:#fff;
  line-height:1.15;
  margin-bottom:1rem;
  text-shadow:0 2px 16px rgba(0,0,0,.18);
}

#news-page .cta-glass p,
#news-detail-page .cta-glass p { color:rgba(255,255,255,.88); font-size:1rem; line-height:1.7; max-width:480px; margin:0 auto 2rem; }

#news-page .btn-cta-primary,
#news-detail-page .btn-cta-primary {
  background:#fff;
  color:var(--primary);
  border:none;
  border-radius:50px;
  padding:.9rem 2.2rem;
  font-weight:800;
  font-size:1rem;
  transition:all .2s;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
}

#news-page .btn-cta-primary:hover,
#news-detail-page .btn-cta-primary:hover { background:var(--light-bg); transform:translateY(-2px); box-shadow:0 10px 30px rgba(0,0,0,.2); color:var(--primary-dk); }

#news-page .btn-cta-outline,
#news-detail-page .btn-cta-outline {
  background:transparent;
  color:#fff;
  border:2px solid rgba(255,255,255,.55);
  border-radius:50px;
  padding:.86rem 2.2rem;
  font-weight:700;
  font-size:1rem;
  transition:all .2s;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
}

#news-page .btn-cta-outline:hover,
#news-detail-page .btn-cta-outline:hover { background:rgba(255,255,255,.15); border-color:#fff; color:#fff; }

/* DETAIL */
#reading-progress {
  position:fixed;
  top:0;
  left:0;
  height:3px;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  width:0%;
  z-index:99999;
  transition:width .1s linear;
}

#news-detail-page #article-hero {
  background:linear-gradient(140deg,#EBF1FF 0%,#F0FBFA 55%,#FFFFFF 100%);
  padding:80px 0 60px;
  position:relative;
  overflow:hidden;
}

#news-detail-page .hb1 { width:400px; height:400px; background:radial-gradient(#B0CBFF,transparent 70%); top:-120px; right:-60px; }

#news-detail-page .article-cat-label {
  display:inline-block;
  background:rgba(0,87,255,.08);
  color:var(--primary);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  padding:.32rem .9rem;
  border-radius:50px;
  margin-bottom:1rem;
}

#news-detail-page .article-hero-title {
  font-size:clamp(1.8rem,4vw,2.9rem);
  font-weight:800;
  color:var(--dark);
  line-height:1.15;
  margin-bottom:1.25rem;
  letter-spacing:-.02em;
}

#news-detail-page .article-meta-row { display:flex; align-items:center; flex-wrap:wrap; gap:1.2rem; margin-bottom:1.5rem; }
#news-detail-page .meta-item { display:flex; align-items:center; gap:.4rem; font-size:.8rem; color:var(--muted); font-weight:500; }
#news-detail-page .meta-item i { font-size:.85rem; color:var(--primary); }
#news-detail-page .article-tags { display:flex; flex-wrap:wrap; gap:.4rem; }
#news-detail-page .article-tag { font-size:.72rem; font-weight:600; padding:.28rem .75rem; border-radius:50px; background:var(--light-bg); color:var(--body-text); border:1px solid var(--border); }

#news-detail-page #article-body { padding:60px 0 80px; background:#fff; }

#news-detail-page .article-cover {
  width:100%;
  height:380px;
  border-radius:var(--radius-lg);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:8rem;
  margin-bottom:2.5rem;
  border:1px solid var(--border);
  overflow:hidden;
}

#news-detail-page .article-cover .bi { font-size:8rem; }
#news-detail-page .article-content { width:100%; }
#news-detail-page .article-content .lead-intro { font-size:1.05rem; color:var(--dark); }
#news-detail-page .article-content p { font-size:1rem; line-height:1.85; color:var(--body-text); margin-bottom:1.5rem; }
#news-detail-page .article-content h2 { font-size:1.55rem; font-weight:800; color:var(--dark); margin:2.5rem 0 1rem; }
#news-detail-page .article-content h3 { font-size:1.25rem; font-weight:700; color:var(--dark); margin:2rem 0 .75rem; }
#news-detail-page .article-content ul,
#news-detail-page .article-content ol { padding-left:1.4rem; margin-bottom:1.5rem; }
#news-detail-page .article-content li { font-size:1rem; line-height:1.8; color:var(--body-text); margin-bottom:.4rem; }
#news-detail-page .article-content strong { color:var(--dark); font-weight:700; }
#news-detail-page .article-content blockquote { border-left:4px solid var(--primary); padding:1rem 1.5rem; background:var(--light-bg); border-radius:0 var(--radius-md) var(--radius-md) 0; margin:2rem 0; font-size:1.05rem; color:var(--dark); font-style:italic; line-height:1.75; }

#news-detail-page .share-bar { display:flex; align-items:center; gap:.75rem; flex-wrap:wrap; border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:1.25rem 0; margin:2.5rem 0; }
#news-detail-page .share-label { font-size:.82rem; font-weight:700; color:var(--dark); }
#news-detail-page .share-btn { display:inline-flex; align-items:center; gap:.4rem; background:var(--light-bg); border:1px solid var(--border); border-radius:50px; padding:.38rem .9rem; font-size:.78rem; font-weight:600; color:var(--body-text); cursor:pointer; transition:all .2s; text-decoration:none; }
#news-detail-page .share-btn:hover { background:var(--primary); color:#fff; border-color:var(--primary); }

#news-detail-page .author-card { background:var(--light-bg); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2rem; display:flex; gap:1.5rem; align-items:flex-start; margin:2rem 0; }
#news-detail-page .author-avatar { width:72px; height:72px; border-radius:50%; background:linear-gradient(135deg,var(--primary),var(--accent)); display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-weight:800; font-size:1.4rem; color:#fff; flex-shrink:0; }
#news-detail-page .author-info h5 { font-size:1rem; font-weight:800; margin-bottom:.2rem; color:var(--dark); }
#news-detail-page .author-info .role { font-size:.8rem; color:var(--primary); font-weight:600; margin-bottom:.5rem; }
#news-detail-page .author-info p { font-size:.85rem; color:var(--muted); line-height:1.65; margin:0; }
#news-detail-page .back-news-link { display:inline-flex; align-items:center; gap:.5rem; font-size:.88rem; font-weight:600; color:var(--primary); }

#news-detail-page #related { padding:80px 0; background:var(--light-bg); }
#news-detail-page .section-title { font-size:clamp(1.75rem,3.2vw,2.2rem); font-weight:800; color:var(--dark); line-height:1.12; }
#news-detail-page .section-title span { color:var(--primary); }
#news-detail-page .related-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; height:100%; display:flex; flex-direction:column; transition:transform .3s,box-shadow .3s; color:inherit; }
#news-detail-page .related-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-hover); }
#news-detail-page .rc-thumb { height:160px; display:flex; align-items:center; justify-content:center; font-size:3.2rem; position:relative; overflow:hidden; }
#news-detail-page .rc-thumb .bi { font-size:3.2rem; }
#news-detail-page .rc-cat { position:absolute; top:10px; left:10px; font-size:.63rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:.22rem .65rem; border-radius:50px; background:rgba(255,255,255,.92); color:var(--dark); }
#news-detail-page .rc-body { padding:1.3rem; flex:1; display:flex; flex-direction:column; }
#news-detail-page .rc-body .cat { font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--primary); margin-bottom:.4rem; }
#news-detail-page .rc-body h5 { font-size:.95rem; font-weight:700; color:var(--dark); margin-bottom:.5rem; line-height:1.4; flex:1; }
#news-detail-page .rc-footer { display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--border); padding-top:.85rem; margin-top:auto; }
#news-detail-page .rc-date { font-size:.74rem; color:var(--muted); display:flex; align-items:center; gap:.3rem; }
#news-detail-page .rc-date i { color:var(--primary); font-size:.75rem; }
#news-detail-page .rc-read { font-size:.74rem; font-weight:700; color:var(--primary); display:flex; align-items:center; gap:.3rem; transition:gap .2s; }
#news-detail-page .related-card:hover .rc-read { gap:.5rem; }

@media(max-width:991px) {
  #news-page #news-hero { padding:80px 0 60px; }
  #news-page .featured-card { flex-direction:column; }
  #news-page .featured-thumb { width:100%; min-height:220px; }
  #news-detail-page #article-hero { padding:70px 0 50px; }
  #news-detail-page .article-cover { height:260px; }
}

@media(max-width:767px) {
  #news-page #news-hero { padding:5rem 0 3rem; }
  #news-page .news-hero-title { font-size:1.9rem; }
  #news-page #search-filter { top:62px; padding:20px 0 0; }
  #news-page .featured-body { padding:1.5rem; }
  #news-page .featured-body h2 { font-size:1.3rem; }
  #news-page #articles { padding:32px 0 70px; }
  #news-detail-page #article-hero { padding:5rem 0 2.5rem; }
  #news-detail-page .article-hero-title { font-size:1.65rem; }
  #news-detail-page .author-card { flex-direction:column; gap:1rem; }
  #news-detail-page #related { padding:60px 0; }
  #news-page .cta-glass,
  #news-detail-page .cta-glass { padding:2rem 1.25rem; border-radius:18px; }
  #news-page .btn-cta-primary,
  #news-page .btn-cta-outline,
  #news-detail-page .btn-cta-primary,
  #news-detail-page .btn-cta-outline { width:100%; justify-content:center; font-size:.9rem; }
}

/* Contact page additions */
#contact-page #contact-hero {
  background: linear-gradient(140deg,#EBF1FF 0%,#F0FBFA 55%,#FFFFFF 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
#contact-page #contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,87,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(0,87,255,.04) 1px,transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
#contact-page .hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .4;
  pointer-events: none;
}
#contact-page .hb1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(#B0CBFF,transparent 70%);
  top: -160px;
  right: -80px;
}
#contact-page .hb2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(#AAEEE0,transparent 70%);
  bottom: -80px;
  left: -40px;
}
#contact-page .breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
#contact-page .breadcrumb-custom a {
  color: var(--muted);
  transition: color .2s;
}
#contact-page .breadcrumb-custom a:hover { color: var(--primary); }
#contact-page .breadcrumb-custom i { font-size: .65rem; }
#contact-page .breadcrumb-custom span {
  color: var(--dark);
  font-weight: 700;
}
#contact-page .contact-hero-title {
  font-size: clamp(2.2rem,5vw,3.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.2rem;
}
#contact-page .contact-hero-title span { color: var(--primary); }
#contact-page .contact-hero-sub {
  font-size: 1.05rem;
  color: var(--body-text);
  max-width: 500px;
  line-height: 1.78;
  margin-bottom: 2rem;
}
#contact-page .response-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .5rem 1.2rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 2px 12px rgba(0,87,255,.08);
  margin-bottom: 1.5rem;
}
#contact-page .response-pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: contactPulse 2s infinite;
}
@keyframes contactPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,.08); }
}
#contact-page .contact-hero-btn-primary,
#contact-page .contact-hero-btn-secondary {
  border-radius: 50px;
  padding: .75rem 1.8rem;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .25s;
}
#contact-page .contact-hero-btn-primary {
  background: var(--primary);
  color: #fff;
}
#contact-page .contact-hero-btn-primary:hover {
  background: var(--primary-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,87,255,.25);
}
#contact-page .contact-hero-btn-secondary {
  background: #fff;
  color: var(--dark);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
}
#contact-page .contact-hero-btn-secondary i { color: var(--primary); }
#contact-page .contact-hero-btn-secondary:hover {
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
#contact-page .quick-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  padding: 1rem;
  color: inherit;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
#contact-page .quick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,87,255,.2);
}
#contact-page .quick-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: .9rem;
}
#contact-page .quick-card-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: .25rem;
}
#contact-page .quick-card-value {
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark);
  word-break: break-word;
}
#contact-page .quick-card-note {
  font-size: .8rem;
  color: var(--muted);
  margin-top: .2rem;
}
#contact-page #contact-main {
  padding: 80px 0;
  background: #fff;
}
#contact-page .info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
#contact-page .info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,87,255,.05) 1px,transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
#contact-page .info-card::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(#EBF1FF,transparent 70%);
  bottom: -100px;
  right: -70px;
}
#contact-page .info-card-inner {
  position: relative;
  z-index: 1;
}
#contact-page .info-card h3,
#contact-page .form-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .75rem;
}
#contact-page .info-card p,
#contact-page .form-card > p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
#contact-page .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: .85rem;
  transition: background .2s,border-color .2s;
}
#contact-page .info-item:hover {
  background: #EBF1FF;
  border-color: rgba(0,87,255,.2);
}
#contact-page .info-item:last-child { margin-bottom: 0; }
#contact-page .info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(0,87,255,.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
#contact-page .info-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .2rem;
}
#contact-page .info-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}
#contact-page .info-value a {
  color: var(--primary);
  transition: color .2s;
}
#contact-page .info-value a:hover { color: var(--primary-dk); }
#contact-page .office-hours {
  background: rgba(0,198,167,.08);
  border: 1px solid rgba(0,198,167,.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  margin-top: 1.5rem;
}
#contact-page .office-hours h6 {
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .6rem;
}
#contact-page .oh-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .82rem;
  margin-bottom: .3rem;
}
#contact-page .oh-row:last-child { margin-bottom: 0; }
#contact-page .oh-day { color: var(--muted); }
#contact-page .oh-time {
  color: var(--dark);
  font-weight: 600;
}
#contact-page .social-row {
  display: flex;
  gap: .6rem;
  margin-top: 1.5rem;
}
#contact-page .info-social {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .95rem;
  transition: all .2s;
}
#contact-page .info-social:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
#contact-page .form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
#contact-page .form-group { margin-bottom: 1.25rem; }
#contact-page .form-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .4rem;
  display: block;
}
#contact-page .form-label span { color: #EF4444; }
#contact-page .form-control,
#contact-page .form-select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .7rem 1rem;
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--dark);
  outline: none;
  transition: border-color .2s,box-shadow .2s;
  background: #fff;
}
#contact-page .form-control:focus,
#contact-page .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,87,255,.1);
}
#contact-page .form-control::placeholder { color: var(--muted); }
#contact-page textarea.form-control {
  resize: vertical;
  min-height: 130px;
}
#contact-page .service-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
#contact-page .check-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  cursor: pointer;
}
#contact-page .check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}
#contact-page .check-item span {
  font-size: .84rem;
  color: var(--body-text);
  font-weight: 500;
}
#contact-page .btn-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .9rem 2rem;
  font-weight: 800;
  font-size: 1rem;
  font-family: var(--font-head);
  cursor: pointer;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: .5rem;
}
#contact-page .btn-submit:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,87,255,.35);
}
#contact-page .form-note {
  font-size: .76rem;
  color: var(--muted);
  text-align: center;
  margin-top: .9rem;
}
#contact-page .form-note i {
  color: var(--accent);
  margin-right: .25rem;
}
#contact-page .form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
#contact-page .form-success .tick {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--accent),#00E5C4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  color: #fff;
}
#contact-page .form-success h4 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .6rem;
}
#contact-page .form-success p {
  font-size: .9rem;
  color: var(--muted);
}
#contact-page #map-section {
  padding: 0;
  background: #fff;
}
#contact-page .map-wrapper {
  position: relative;
  width: 100%;
  border-top: 1px solid var(--border);
}
#contact-page .map-wrapper iframe {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
  filter: grayscale(15%);
}
#contact-page .map-overlay-card {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 10;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.4rem 1.6rem;
  box-shadow: 0 8px 32px rgba(0,87,255,.12);
  max-width: 280px;
}
#contact-page .map-overlay-card h5 {
  font-size: .98rem;
  font-weight: 800;
  margin-bottom: .4rem;
}
#contact-page .map-overlay-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: .85rem;
}
#contact-page .map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: .45rem 1.1rem;
  font-size: .78rem;
  font-weight: 700;
  transition: background .2s;
}
#contact-page .map-directions-btn:hover {
  background: var(--primary-dk);
  color: #fff;
}
#contact-page #cta {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
#contact-page .cta-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  z-index: 0;
}
#contact-page .cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(10,22,40,.55) 0%,rgba(0,40,120,.40) 100%);
}
#contact-page .cta-glass {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 28px;
  padding: 3.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.25);
}
#contact-page .cta-label {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: .38rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
#contact-page .cta-glass h2 {
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.18);
}
#contact-page .cta-glass p {
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2rem;
}
#contact-page .btn-cta-primary,
#contact-page .btn-cta-outline {
  border-radius: 50px;
  font-size: 1rem;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
#contact-page .btn-cta-primary {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: .9rem 2.2rem;
  font-weight: 800;
}
#contact-page .btn-cta-primary:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  color: var(--primary-dk);
}
#contact-page .btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  padding: .86rem 2.2rem;
  font-weight: 700;
}
#contact-page .btn-cta-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}
@media(max-width:991px) {
  #contact-page #contact-hero { padding: 80px 0 60px; }
  #contact-page .map-overlay-card { display: none; }
}
@media(max-width:767px) {
  #contact-page #contact-hero { padding: 5rem 0 3rem; }
  #contact-page .contact-hero-title { font-size: 1.9rem; }
  #contact-page .form-card,
  #contact-page .info-card { padding: 1.75rem; }
  #contact-page #contact-main { padding: 60px 0; }
  #contact-page .map-wrapper iframe { height: 320px; }
  #contact-page .cta-glass {
    padding: 2rem 1.25rem;
    border-radius: 18px;
  }
  #contact-page .btn-cta-primary,
  #contact-page .btn-cta-outline {
    width: 100%;
    justify-content: center;
    font-size: .9rem;
  }
  #contact-page .service-checks { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  #contact-page .service-checks { grid-template-columns: 1fr; }
  #contact-page .oh-row { flex-direction: column; gap: .05rem; }
}

/* =========================================================
   Regional Country + Regional Detail
   ========================================================= */
#regional-page #regional-hero,
#regional-detail-page #regional-detail-hero {
  background: linear-gradient(140deg,#EBF1FF 0%,#F0FBFA 55%,#FFFFFF 100%);
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
}

#regional-detail-page #regional-detail-hero { padding: 80px 0 60px; }

#regional-page #regional-hero::before,
#regional-detail-page #regional-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,87,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,87,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

#regional-page .hero-blob,
#regional-detail-page .hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .4;
  pointer-events: none;
}

#regional-page .hb1,
#regional-detail-page .hb1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(#B0CBFF, transparent 70%);
  top: -150px;
  right: -80px;
}

#regional-page .hb2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(#AAEEE0, transparent 70%);
  bottom: -60px;
  left: -40px;
}

#regional-page .regional-hero-title,
#regional-detail-page .regional-detail-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.2rem;
}

#regional-detail-page .regional-detail-title { font-size: clamp(1.8rem, 4vw, 2.9rem); }
#regional-page .regional-hero-title span,
#regional-detail-page .regional-detail-title span { color: var(--primary); }

#regional-page .regional-cover-card img,
#regional-detail-page .regional-detail-cover img,
#regional-page .featured-thumb img,
#regional-page .story-thumb img,
#regional-detail-page .story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#regional-page .regional-stat-card {
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

#regional-page .regional-stat-card .num {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-head);
  line-height: 1;
  margin-bottom: .25rem;
  color: var(--primary);
}

#regional-page .regional-stat-card .lbl {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}

#regional-page #regional-filter {
  padding: 32px 0 0;
  background: #fff;
  position: sticky;
  top: 69px;
  z-index: 100;
}

#regional-page .regional-filter-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0,87,255,.06);
}

#regional-page .region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

#regional-page .region-btn {
  background: var(--light-bg);
  color: var(--body-text);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .42rem .95rem;
  font-size: .82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: all .2s;
}

#regional-page .region-btn:hover,
#regional-page .region-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

#regional-page .region-btn-flag {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

#regional-page .results-label {
  font-size: .82rem;
  color: var(--muted);
  white-space: nowrap;
}

#regional-page .results-label strong { color: var(--dark); }

#regional-page #regional-featured { padding: 64px 0 0; background:#fff; }
#regional-page #regional-stories,
#regional-detail-page #regional-detail-stories { padding: 64px 0 100px; background:#fff; }

#regional-page .regional-section-title,
#regional-detail-page .regional-section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0;
}

#regional-page .regional-featured-link,
#regional-page .regional-story-link,
#regional-detail-page .regional-story-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

#regional-page .regional-featured-card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  display:grid;
  grid-template-columns:42% 58%;
  box-shadow:var(--shadow-card);
  transition:transform .3s, box-shadow .3s;
}

#regional-page .regional-featured-card:hover {
  transform:translateY(-5px);
  box-shadow:var(--shadow-hover);
}

#regional-page .featured-thumb {
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:6rem;
}

#regional-page .featured-body {
  padding:2rem;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

#regional-page .featured-body h3 {
  font-size:clamp(1.35rem, 2.6vw, 2rem);
  font-weight:800;
  margin:.6rem 0 .8rem;
}

#regional-page .featured-body p {
  color:var(--muted);
  line-height:1.75;
}

#regional-page .featured-read {
  color:var(--primary);
  font-size:.84rem;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  margin-top:1rem;
}

#regional-page .regional-story-card,
#regional-detail-page .regional-story-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

#regional-page .regional-story-card:hover,
#regional-detail-page .regional-story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

#regional-page .story-thumb,
#regional-detail-page .story-thumb {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 3.8rem;
  color: #fff;
}

#regional-page .featured-thumb-blue,
#regional-page .story-thumb-blue,
#regional-detail-page .story-thumb-blue { background: linear-gradient(135deg,#0057FF,#7FB0FF); }
#regional-page .featured-thumb-purple,
#regional-page .story-thumb-purple,
#regional-detail-page .story-thumb-purple { background: linear-gradient(135deg,#7C3AED,#DDD6FE); }
#regional-page .featured-thumb-green,
#regional-page .story-thumb-green,
#regional-detail-page .story-thumb-green { background: linear-gradient(135deg,#16A34A,#BBF7D0); }
#regional-page .featured-thumb-orange,
#regional-page .story-thumb-orange,
#regional-detail-page .story-thumb-orange { background: linear-gradient(135deg,#F97316,#FED7AA); }
#regional-page .featured-thumb-red,
#regional-page .story-thumb-red,
#regional-detail-page .story-thumb-red { background: linear-gradient(135deg,#DC2626,#FECACA); }
#regional-page .featured-thumb-teal,
#regional-page .story-thumb-teal,
#regional-detail-page .story-thumb-teal { background: linear-gradient(135deg,#0D9488,#99F6E4); }

#regional-page .article-cat-label,
#regional-detail-page .article-cat-label {
  display: inline-block;
  background: rgba(0,87,255,.08);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .32rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

#regional-page .story-region-badge,
#regional-detail-page .story-region-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.92);
  color: var(--dark);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 50px;
}

#regional-page .story-body,
#regional-detail-page .story-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

#regional-page .story-cat,
#regional-detail-page .story-cat {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .55rem;
}

#regional-page .story-body h3,
#regional-detail-page .story-body h3 {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: .6rem;
}

#regional-page .story-body p,
#regional-detail-page .story-body p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

#regional-page .story-meta,
#regional-detail-page .story-meta,
#regional-detail-page .article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: .9rem;
}

#regional-detail-page .article-meta-row { gap:1.2rem; margin:1.3rem 0; }

#regional-page .story-meta span,
#regional-detail-page .story-meta span,
#regional-detail-page .meta-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 600;
}

#regional-detail-page .meta-item { font-size:.8rem; }
#regional-page .story-meta i,
#regional-detail-page .story-meta i,
#regional-detail-page .meta-item i { color: var(--primary); }

#regional-page .story-tags,
#regional-detail-page .story-tags,
#regional-detail-page .article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1rem;
}

#regional-page .story-tags span,
#regional-detail-page .story-tags span,
#regional-detail-page .article-tag {
  font-size: .68rem;
  font-weight: 700;
  color: var(--body-text);
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .2rem .55rem;
}

#regional-page .story-footer,
#regional-detail-page .story-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: .9rem;
  margin-top: auto;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
}

#regional-page .regional-empty,
#regional-detail-page .regional-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--muted);
}

#regional-page .regional-empty i,
#regional-detail-page .regional-empty i {
  display: block;
  font-size: 3rem;
  opacity: .35;
  margin-bottom: 1rem;
}

#regional-page .regional-empty h3,
#regional-detail-page .regional-empty h3 {
  font-size: 1.2rem;
  font-weight: 800;
}

#regional-detail-page #reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  width: 0%;
  z-index: 99999;
  transition: width .1s linear;
}

#regional-detail-page #regional-detail-body {
  padding: 60px 0 40px;
  background:#fff;
}

#regional-detail-page .regional-detail-cover {
  height: 380px;
  margin-bottom: 2.5rem;
}

#regional-detail-page .regional-article-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--body-text);
  margin-bottom: 1.5rem;
}

#regional-detail-page .regional-article-content .lead-text {
  font-size:1.08rem;
  color:var(--dark);
  font-weight:500;
}

#regional-detail-page .regional-article-content h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--dark);
  margin: 2.5rem 0 1rem;
}

#regional-detail-page .regional-result-box {
  background: linear-gradient(135deg,#EBF1FF,#F0FBFA);
  border:1px solid rgba(0,87,255,.15);
  border-radius:var(--radius-md);
  padding:1.5rem;
  margin:2rem 0;
}

#regional-detail-page .regional-result-box h4 {
  color:var(--primary);
  font-size:1rem;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:.5rem;
  margin-bottom:.6rem;
}

#regional-detail-page .regional-result-box p {
  margin:0;
  color:var(--body-text);
}

#regional-detail-page .stat-callout {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
  margin:2.5rem 0;
}

#regional-detail-page .stat-box {
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:1.4rem;
  text-align:center;
  box-shadow:var(--shadow-card);
}

#regional-detail-page .stat-box .num {
  font-size:2rem;
  font-weight:800;
  font-family:var(--font-head);
  color:var(--primary);
  line-height:1;
  margin-bottom:.3rem;
}

#regional-detail-page .stat-box .lbl {
  font-size:.78rem;
  color:var(--muted);
  line-height:1.4;
}

#regional-detail-page .share-bar {
  display:flex;
  align-items:center;
  gap:.75rem;
  flex-wrap:wrap;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:1.25rem 0;
  margin:2.5rem 0;
}

#regional-detail-page .share-label {
  font-size:.82rem;
  font-weight:800;
  color:var(--dark);
}

#regional-detail-page .share-btn {
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  background:var(--light-bg);
  border:1px solid var(--border);
  border-radius:50px;
  padding:.38rem .9rem;
  font-size:.78rem;
  font-weight:700;
  color:var(--body-text);
  cursor:pointer;
  transition:all .2s;
}

#regional-detail-page .share-btn:hover {
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
}

#regional-page #regional-cta,
#regional-detail-page #regional-cta {
  padding:0;
  position:relative;
  overflow:hidden;
  min-height:420px;
  display:flex;
  align-items:center;
}

#regional-page #regional-cta .cta-bg,
#regional-detail-page #regional-cta .cta-bg {
  position:absolute;
  inset:0;
  background:url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  z-index:0;
}

#regional-page #regional-cta .cta-bg::after,
#regional-detail-page #regional-cta .cta-bg::after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(10,22,40,.55) 0%,rgba(0,40,120,.40) 100%);
}

@media(max-width:991px) {
  #regional-page #regional-hero,
  #regional-detail-page #regional-detail-hero {
    padding:80px 0 60px;
  }

  #regional-page .regional-featured-card {
    grid-template-columns:1fr;
  }

  #regional-page .featured-thumb {
    min-height:240px;
  }
}

@media(max-width:767px) {
  #regional-page #regional-hero,
  #regional-detail-page #regional-detail-hero {
    padding:5rem 0 3rem;
  }

  #regional-page .regional-hero-title,
  #regional-detail-page .regional-detail-title {
    font-size:1.9rem;
  }

  #regional-page #regional-filter {
    top:62px;
    padding:20px 0 0;
  }

  #regional-detail-page .regional-detail-cover {
    height:260px;
  }

  #regional-detail-page .stat-callout {
    grid-template-columns:1fr;
  }
}

/* Regional detail article image - show full image without cropping */
#regional-detail-page .regional-detail-cover {
    height: auto;
    min-height: unset;
    padding: 0;
    background: #f8fafc;
}

#regional-detail-page .regional-detail-cover img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-lg);
}

/* Regional posts use uploaded article images from public/regional-posts */
#regional-page .featured-thumb,
#regional-page .story-thumb,
#regional-detail-page .regional-detail-cover {
  background: linear-gradient(135deg,#0057FF,#7FB0FF);
}

#regional-detail-page .regional-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1rem 0;
}

#regional-detail-page .regional-article-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
  color: var(--body-text);
  font-style: italic;
  background: var(--light-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding-top: .75rem;
  padding-bottom: .75rem;
}

#regional-detail-page .regional-article-content ul,
#regional-detail-page .regional-article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

#regional-detail-page .regional-article-content li {
  margin-bottom: .5rem;
  line-height: 1.8;
  color: var(--body-text);
}
