/* ================================================
   SHARCIKAAB — Global Theme CSS
   Loaded via functions.php (not style.css)
================================================ */

/* ── Variables ── */
:root {
  --sc-navy:     #0f2347;
  --sc-blue:     #1a3a6e;
  --sc-mid:      #1565c0;
  --sc-gold:     #c8a84b;
  --sc-gold-lt:  #e6c96a;
  --sc-white:    #ffffff;
  --sc-off:      #f8f9fc;
  --sc-light:    #eef1f7;
  --sc-muted:    #8896b0;
  --sc-dark:     #3d4f6e;
  --sc-text:     #1a2744;
  --sc-border:   #dde3f0;
  --sc-serif:    'Playfair Display', Georgia, serif;
  --sc-sans:     'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  --sc-ui:       'Montserrat', 'Segoe UI', Arial, sans-serif;
  --sc-nav-h:    80px;
  --sc-ease:     all .28s cubic-bezier(.4,0,.2,1);
  --sc-r:        8px;
  --sc-r-lg:     16px;
  --sc-sh:       0 4px 24px rgba(26,58,110,.12);
  --sc-sh-lg:    0 16px 56px rgba(26,58,110,.18);
}

/* ── Base reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sc-sans);
  color: var(--sc-dark);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--sc-blue); text-decoration: none; transition: var(--sc-ease); }
a:hover { color: var(--sc-mid); }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; font-family: inherit; }
p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--sc-serif);
  color: var(--sc-text);
  line-height: 1.22;
  font-weight: 700;
  margin: 0 0 .75rem;
}

/* ── Layout helpers ── */
.sc-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons (usable everywhere, including Elementor) ── */
.sc-btn, .elementor-button {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--sc-r);
  font-family: var(--sc-ui);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: var(--sc-ease);
  cursor: pointer;
  text-decoration: none !important;
  border: 2px solid transparent;
  line-height: 1;
}
.sc-btn-gold {
  background: var(--sc-gold) !important;
  color: var(--sc-navy) !important;
  border-color: var(--sc-gold) !important;
  box-shadow: 0 4px 18px rgba(200,168,75,.35);
}
.sc-btn-gold:hover {
  background: var(--sc-gold-lt) !important;
  border-color: var(--sc-gold-lt) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,168,75,.45);
  color: var(--sc-navy) !important;
}
.sc-btn-outline {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.6) !important;
}
.sc-btn-outline:hover {
  background: rgba(255,255,255,.12) !important;
  border-color: #fff !important;
  color: #fff !important;
}
.sc-btn-blue {
  background: var(--sc-blue) !important;
  color: #fff !important;
  border-color: var(--sc-blue) !important;
}
.sc-btn-blue:hover {
  background: var(--sc-navy) !important;
  border-color: var(--sc-navy) !important;
  color: #fff !important;
  transform: translateY(-2px);
}
.sc-btn-blue-outline {
  background: transparent !important;
  color: var(--sc-blue) !important;
  border-color: var(--sc-blue) !important;
}
.sc-btn-blue-outline:hover {
  background: var(--sc-blue) !important;
  color: #fff !important;
}
.sc-btn-lg { padding: 17px 40px !important; font-size: .9rem !important; }

/* ── Section label / eyebrow ── */
.sc-label {
  font-family: var(--sc-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sc-gold);
  display: block;
  margin-bottom: .6rem;
}
.sc-label-lt { color: var(--sc-gold-lt); }

/* ── Tag chips ── */
.sc-tag {
  display: inline-block;
  font-family: var(--sc-ui);
  font-size: .68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--sc-light);
  color: var(--sc-dark);
  letter-spacing: .04em;
}

/* ================================================
   HEADER
================================================ */
#sc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--sc-nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sc-border);
  box-shadow: 0 1px 0 var(--sc-border), 0 2px 12px rgba(26,58,110,.06);
  transition: var(--sc-ease);
}
#sc-header.sc-scrolled {
  height: 64px;
  box-shadow: 0 4px 24px rgba(26,58,110,.12);
}
.sc-hd-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.sc-logo { flex-shrink: 0; }
.sc-logo img, .sc-logo a img {
  height: 52px;
  width: auto;
  display: block;
  transition: var(--sc-ease);
}
#sc-header.sc-scrolled .sc-logo img { height: 42px; }

/* Desktop Nav */
.sc-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.sc-ni { position: relative; }
.sc-ni > a {
  font-family: var(--sc-ui);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--sc-text);
  padding: 8px 13px;
  border-radius: var(--sc-r);
  display: block;
  transition: var(--sc-ease);
  text-decoration: none;
  white-space: nowrap;
}
.sc-ni > a:hover,
.sc-ni > a.sc-active { color: var(--sc-blue); background: var(--sc-light); }

/* Dropdown */
.sc-dd {
  position: absolute;
  top: calc(100% + 8px); left: 0;
  min-width: 210px;
  background: #fff;
  border-radius: var(--sc-r-lg);
  border: 1px solid var(--sc-border);
  box-shadow: var(--sc-sh-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--sc-ease);
  z-index: 100;
}
.sc-ni:hover .sc-dd { opacity: 1; visibility: visible; transform: translateY(0); }
.sc-dd a {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: .83rem;
  color: var(--sc-text);
  text-decoration: none;
  transition: var(--sc-ease);
}
.sc-dd a:hover { background: var(--sc-light); color: var(--sc-blue); }

/* Header CTA */
.sc-hd-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.sc-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.sc-ham span {
  display: block;
  width: 22px; height: 2px;
  background: var(--sc-text);
  border-radius: 2px;
  transition: var(--sc-ease);
}

/* Mobile nav drawer */
.sc-mob {
  display: none;
  position: fixed;
  top: var(--sc-nav-h); left: 0; right: 0; bottom: 0;
  background: #fff;
  padding: 16px 20px 40px;
  overflow-y: auto;
  z-index: 9998;
  transform: translateX(105%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.sc-mob.sc-open { transform: translateX(0); }
.sc-mob a {
  display: block;
  font-family: var(--sc-ui);
  font-size: .95rem;
  font-weight: 600;
  color: var(--sc-text);
  padding: 14px 0;
  border-bottom: 1px solid var(--sc-border);
  text-decoration: none;
}
.sc-mob a:hover { color: var(--sc-blue); }
.sc-mob .sc-mob-sub a { padding-left: 18px; font-size: .86rem; color: var(--sc-muted); font-weight: 500; }
.sc-mob-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.sc-mob-cta .sc-btn { justify-content: center; }

/* Push page down so header doesn't overlap */
body { padding-top: var(--sc-nav-h); }
/* Elementor full-width sections need to break out */
.elementor-section.elementor-section-stretched { margin-top: 0 !important; }

/* ================================================
   SCROLL-TO-TOP
================================================ */
#sc-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--sc-blue);
  color: #fff;
  border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  box-shadow: var(--sc-sh);
  opacity: 0; visibility: hidden;
  transition: var(--sc-ease);
  z-index: 9997;
}
#sc-top.sc-show { opacity: 1; visibility: visible; }
#sc-top:hover { background: var(--sc-navy); transform: translateY(-3px); }

/* ================================================
   ELEMENTOR GLOBAL OVERRIDES
   Makes Elementor widgets look great with Sharcikaab
================================================ */

/* Elementor section spacing */
.elementor-section { position: relative; }

/* Elementor headings */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--sc-serif);
}

/* Elementor buttons */
.elementor-button-wrapper .elementor-button {
  font-family: var(--sc-ui) !important;
  font-weight: 700 !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
  border-radius: var(--sc-r) !important;
  transition: var(--sc-ease) !important;
}

/* Elementor icon box */
.elementor-icon-box-title { font-family: var(--sc-ui) !important; font-weight: 700 !important; }

/* Elementor divider */
.elementor-divider-separator { border-color: var(--sc-border) !important; }

/* Elementor text editor */
.elementor-widget-text-editor { font-family: var(--sc-sans); color: var(--sc-dark); line-height: 1.75; }

/* ================================================
   SHARCIKAAB CUSTOM ELEMENTOR WIDGETS / BLOCKS
   Add class "sc-*" to Elementor sections/columns
   for instant branded styling
================================================ */

/* Dark navy section */
.sc-section-navy { background: var(--sc-navy) !important; }
.sc-section-navy * { color: rgba(255,255,255,.85); }
.sc-section-navy h1,.sc-section-navy h2,.sc-section-navy h3,.sc-section-navy h4 { color: #fff !important; }

/* Blue gradient section */
.sc-section-gradient { background: linear-gradient(135deg, var(--sc-navy), var(--sc-mid)) !important; }

/* Off-white section */
.sc-section-light { background: var(--sc-off) !important; }

/* ── Service card ── */
.sc-card {
  background: #fff;
  border-radius: var(--sc-r-lg);
  padding: 32px;
  border: 1px solid var(--sc-border);
  box-shadow: 0 2px 12px rgba(26,58,110,.07);
  transition: var(--sc-ease);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.sc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sc-blue), var(--sc-gold));
  transform: scaleX(0); transform-origin: left;
  transition: var(--sc-ease);
}
.sc-card:hover { transform: translateY(-5px); box-shadow: var(--sc-sh-lg); }
.sc-card:hover::before { transform: scaleX(1); }

.sc-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--sc-blue), var(--sc-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 18px;
}
.sc-card h3, .sc-card h4 {
  font-family: var(--sc-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--sc-text);
  margin-bottom: 10px;
}
.sc-card p { font-size: .88rem; color: var(--sc-muted); line-height: 1.7; }

/* ── Stat box ── */
.sc-stat {
  background: var(--sc-off);
  border-radius: var(--sc-r-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--sc-border);
  transition: var(--sc-ease);
}
.sc-stat:hover { box-shadow: var(--sc-sh); border-color: var(--sc-blue); }
.sc-stat-n {
  font-family: var(--sc-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--sc-blue);
  display: block;
  line-height: 1;
}
.sc-stat-l {
  font-family: var(--sc-ui);
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sc-muted);
  display: block;
  margin-top: 6px;
}
.sc-stat.sc-stat-featured {
  background: linear-gradient(135deg, var(--sc-blue), var(--sc-mid));
  border-color: transparent;
}
.sc-stat.sc-stat-featured .sc-stat-n { color: var(--sc-gold-lt); }
.sc-stat.sc-stat-featured .sc-stat-l { color: rgba(255,255,255,.7); }

/* ── Team card ── */
.sc-team-card {
  background: #fff;
  border-radius: var(--sc-r-lg);
  overflow: hidden;
  border: 1px solid var(--sc-border);
  box-shadow: 0 2px 12px rgba(26,58,110,.07);
  transition: var(--sc-ease);
}
.sc-team-card:hover { transform: translateY(-4px); box-shadow: var(--sc-sh-lg); }
.sc-team-photo {
  height: 240px;
  background: linear-gradient(135deg, var(--sc-blue), var(--sc-mid));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.sc-team-photo img { width: 100%; height: 100%; object-fit: cover; }
.sc-team-av {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 3px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sc-serif);
  font-size: 2rem; color: #fff;
}
.sc-team-body { padding: 20px; }
.sc-team-body h4 { font-size: 1.05rem; margin-bottom: 3px; }
.sc-team-role {
  font-family: var(--sc-ui); font-size: .74rem; font-weight: 600;
  color: var(--sc-blue); text-transform: uppercase; letter-spacing: .06em;
  display: block; margin-bottom: 10px;
}
.sc-team-bio { font-size: .84rem; color: var(--sc-muted); line-height: 1.6; margin-bottom: 14px; }
.sc-team-links { display: flex; gap: 8px; }
.sc-team-links a {
  width: 32px; height: 32px;
  background: var(--sc-light); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--sc-dark);
  transition: var(--sc-ease); text-decoration: none;
}
.sc-team-links a:hover { background: var(--sc-blue); color: #fff; }

/* ── Testimonial ── */
.sc-testi {
  background: var(--sc-off);
  border-radius: var(--sc-r-lg);
  padding: 28px;
  border: 1px solid var(--sc-border);
  transition: var(--sc-ease);
  height: 100%;
}
.sc-testi:hover { border-color: var(--sc-blue); box-shadow: var(--sc-sh); }
.sc-testi-q { font-size: 2.8rem; color: var(--sc-blue); font-family: var(--sc-serif); line-height: 1; opacity: .2; margin-bottom: 8px; }
.sc-testi-txt { font-size: .92rem; color: var(--sc-dark); line-height: 1.78; font-style: italic; margin-bottom: 20px; }
.sc-testi-au { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--sc-border); }
.sc-testi-av {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sc-blue), var(--sc-mid));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .9rem;
}
.sc-testi-name { font-weight: 700; font-size: .88rem; color: var(--sc-text); display: block; }
.sc-testi-role { font-size: .75rem; color: var(--sc-muted); display: block; margin-top: 1px; }
.sc-testi-stars { color: var(--sc-gold); font-size: .82rem; display: block; margin-top: 3px; }

/* ── News card ── */
.sc-news-card {
  background: #fff;
  border-radius: var(--sc-r-lg);
  overflow: hidden;
  border: 1px solid var(--sc-border);
  box-shadow: 0 2px 12px rgba(26,58,110,.07);
  transition: var(--sc-ease);
  height: 100%;
}
.sc-news-card:hover { transform: translateY(-4px); box-shadow: var(--sc-sh-lg); }
.sc-news-thumb {
  height: 190px;
  background: linear-gradient(135deg, var(--sc-blue), var(--sc-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: rgba(255,255,255,.25);
  overflow: hidden;
}
.sc-news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sc-news-card:hover .sc-news-thumb img { transform: scale(1.05); }
.sc-news-body { padding: 20px; }
.sc-news-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.sc-news-cat {
  font-family: var(--sc-ui); font-size: .66rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--sc-blue); background: var(--sc-light); padding: 2px 9px; border-radius: 16px;
}
.sc-news-dt { font-size: .76rem; color: var(--sc-muted); }
.sc-news-card h4 { font-family: var(--sc-serif); font-size: 1rem; line-height: 1.38; margin-bottom: 8px; }
.sc-news-card h4 a { color: var(--sc-text); text-decoration: none; }
.sc-news-card h4 a:hover { color: var(--sc-blue); }
.sc-news-ex { font-size: .84rem; color: var(--sc-muted); line-height: 1.6; margin-bottom: 14px; }
.sc-news-more {
  font-family: var(--sc-ui); font-size: .74rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--sc-blue); display: inline-flex; align-items: center; gap: 5px; text-decoration: none;
  transition: var(--sc-ease);
}
.sc-news-more:hover { gap: 9px; }

/* ── Contact form ── */
.sc-form-wrap {
  background: #fff;
  border-radius: var(--sc-r-lg);
  padding: 40px;
  box-shadow: var(--sc-sh);
  border: 1px solid var(--sc-border);
}
.sc-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sc-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.sc-field.full { grid-column: 1/-1; }
.sc-field label {
  font-family: var(--sc-ui); font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--sc-dark);
}
.sc-field input,
.sc-field select,
.sc-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--sc-border);
  border-radius: var(--sc-r);
  font-family: var(--sc-sans); font-size: .93rem;
  color: var(--sc-text); background: #fff;
  outline: none; transition: var(--sc-ease);
  width: 100%; -webkit-appearance: none; appearance: none;
}
.sc-field input:focus, .sc-field select:focus, .sc-field textarea:focus {
  border-color: var(--sc-blue);
  box-shadow: 0 0 0 3px rgba(26,58,110,.1);
}
.sc-field textarea { resize: vertical; min-height: 120px; }
#sc-form-msg {
  margin-top: 14px; padding: 12px 16px;
  border-radius: var(--sc-r); font-size: .88rem; display: none;
}
#sc-form-msg.ok  { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; display: block; }
#sc-form-msg.err { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; display: block; }

/* ── Contact info items ── */
.sc-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.sc-contact-ic {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--sc-blue); color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
}
.sc-contact-ic.sc-ic-gold { background: var(--sc-gold); color: var(--sc-navy); }
.sc-contact-item h5 {
  font-family: var(--sc-ui); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--sc-muted); margin-bottom: 2px;
}
.sc-contact-item a, .sc-contact-item span {
  color: var(--sc-text); font-size: .92rem; font-weight: 500; text-decoration: none; display: block;
}
.sc-contact-item a:hover { color: var(--sc-blue); }

/* ── Hero overlay section ── */
.sc-hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sc-navy) 0%, var(--sc-blue) 55%, var(--sc-mid) 100%) !important;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  margin-top: calc(-1 * var(--sc-nav-h));
  padding-top: var(--sc-nav-h);
}
.sc-hero-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 15% 60%, rgba(200,168,75,.1) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 15%, rgba(255,255,255,.04) 0%, transparent 50%);
}
.sc-hero-section * { position: relative; z-index: 1; }

/* ── Trust bar ── */
.sc-trust-bar {
  background: var(--sc-navy);
  padding: 16px 0;
  overflow: hidden;
}
.sc-trust-track {
  display: flex;
  gap: 52px;
  animation: sc-scroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.sc-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sc-ui); font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.42); flex-shrink: 0;
}
.sc-trust-item::before { content: ''; width: 4px; height: 4px; background: var(--sc-gold); border-radius: 50%; flex-shrink: 0; }
@keyframes sc-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Fade-in animation class ── */
.sc-fade { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.sc-fade.sc-on { opacity: 1; transform: translateY(0); }
.sc-fade-d1 { transition-delay: .1s; }
.sc-fade-d2 { transition-delay: .2s; }
.sc-fade-d3 { transition-delay: .3s; }
.sc-fade-d4 { transition-delay: .4s; }

/* ── Pillar / why card ── */
.sc-pillar {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--sc-r-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--sc-ease);
  height: 100%;
}
.sc-pillar:hover { background: rgba(255,255,255,.11); border-color: rgba(200,168,75,.35); transform: translateY(-3px); }
.sc-pillar-ic { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.sc-pillar h4 { color: #fff; font-family: var(--sc-ui); font-size: .94rem; font-weight: 700; margin-bottom: 8px; }
.sc-pillar p { color: rgba(255,255,255,.58); font-size: .84rem; margin: 0; line-height: 1.65; }

/* ── Impact list ── */
.sc-impact-list { margin: 0; padding: 0; }
.sc-impact-list li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 11px 0; font-size: .93rem;
  border-bottom: 1px solid var(--sc-border); color: var(--sc-dark);
}
.sc-impact-list li:last-child { border-bottom: none; }
.sc-impact-list li::before {
  content: '\2713';
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--sc-blue); color: #fff;
  border-radius: 50%; font-size: .66rem; font-weight: 700; margin-top: 2px;
}

/* ── Page header for inner pages ── */
.sc-page-hd {
  background: linear-gradient(135deg, var(--sc-navy), var(--sc-blue));
  padding: 70px 0 60px;
  position: relative; overflow: hidden;
  margin-top: 0;
}
.sc-page-hd::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0; height: 50px;
  background: #fff;
  clip-path: ellipse(52% 100% at 50% 100%);
}
.sc-page-hd h1 { color: #fff; }
.sc-page-hd p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; margin: 10px 0 0; }
.sc-breadcrumb {
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
  font-family: var(--sc-ui); font-size: .7rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 12px;
}
.sc-breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.sc-breadcrumb a:hover { color: var(--sc-gold-lt); }
.sc-breadcrumb span { color: var(--sc-gold-lt); }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
  .sc-nav, .sc-hd-cta { display: none; }
  .sc-ham { display: flex; }
  .sc-mob { display: block; }
}
@media (max-width: 768px) {
  :root { --sc-nav-h: 64px; }
  body { padding-top: var(--sc-nav-h); }
  .sc-field-row { grid-template-columns: 1fr; }
  .sc-field.full { grid-column: 1; }
  .sc-form-wrap { padding: 24px 16px; }
}
@media (max-width: 480px) {
  .sc-wrap { padding: 0 16px; }
}

/* ================================================
   ELEMENTOR CANVAS (no header/footer)
================================================ */
body.elementor-page--canvas { padding-top: 0; }
body.elementor-page--canvas #sc-header { display: none; }

/* ================================================
   RESPONSIVE GRID HELPER CLASSES
   Use these instead of inline grid styles
================================================ */
.sc-grid-2   { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sc-grid-3   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sc-grid-4   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sc-grid-hero{ display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center; }
.sc-grid-contact { display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px; align-items: start; }
.sc-grid-impact  { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sc-grid-nums    { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.sc-grid-cta     { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }

/* ================================================
   COMPREHENSIVE MOBILE RESPONSIVE — 1024px
================================================ */
@media (max-width: 1024px) {
  .sc-grid-hero    { grid-template-columns: 1fr; }
  .sc-grid-2       { grid-template-columns: 1fr; gap: 40px; }
  .sc-grid-3       { grid-template-columns: 1fr 1fr; }
  .sc-grid-4       { grid-template-columns: 1fr 1fr; }
  .sc-grid-contact { grid-template-columns: 1fr; }
  .sc-grid-impact  { grid-template-columns: 1fr; gap: 44px; }
  .sc-grid-cta     { grid-template-columns: 1fr; }
  .sc-grid-nums    { grid-template-columns: 1fr 1fr; }

  /* Footer grid tablet */
  .sc-footer-grid  { grid-template-columns: 1fr 1fr !important; gap: 36px !important; }

  /* Inline grids in templates — force single column */
  [style*="grid-template-columns:1fr 400px"],
  [style*="grid-template-columns: 1fr 400px"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
  [style*="grid-template-columns:1fr 1.6fr"],
  [style*="grid-template-columns: 1fr 1.6fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr auto"],
  [style*="grid-template-columns: 1fr auto"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 1.5fr"],
  [style*="grid-template-columns: 1fr 1.5fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ================================================
   COMPREHENSIVE MOBILE RESPONSIVE — 768px
================================================ */
@media (max-width: 768px) {
  :root { --sc-nav-h: 64px; }
  body  { padding-top: var(--sc-nav-h); }

  /* Wrap */
  .sc-wrap { padding: 0 18px; }

  /* Section padding */
  section[style*="padding:90px"],
  section[style*="padding: 90px"] { padding: 56px 0 !important; }
  section[style*="padding:80px"],
  section[style*="padding: 80px"] { padding: 50px 0 !important; }
  section[style*="padding:76px"],
  section[style*="padding: 76px"] { padding: 50px 0 !important; }
  section[style*="padding:70px"],
  section[style*="padding: 70px"] { padding: 46px 0 !important; }
  .sc-page-hd { padding: 50px 0 44px; }

  /* All inline grids → single column on mobile */
  [style*="display:grid"],
  [style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Hero section */
  .sc-hero-section { padding-bottom: 20px; }
  [style*="grid-template-columns:1fr 400px"] { display: flex !important; flex-direction: column !important; }
  .hero-card-panel { display: none !important; }

  /* Hero text */
  [style*="font-size:clamp(2.4rem"],
  [style*="font-size: clamp(2.4rem"] { font-size: clamp(1.9rem, 7vw, 2.6rem) !important; }

  /* Hero stats — horizontal scroll on small */
  [style*="display:flex;gap:28px;padding-top:28px"],
  [style*="display: flex; gap: 28px; padding-top: 28px"] {
    gap: 16px !important;
    flex-wrap: wrap !important;
  }

  /* Hero buttons */
  .sc-hero-section .sc-btn { width: 100%; justify-content: center; }
  [style*="display:flex;gap:14px;flex-wrap:wrap;margin-bottom:44px"] {
    flex-direction: column !important;
  }

  /* Cards */
  .sc-card { padding: 22px 18px; }
  .sc-team-card .sc-team-photo { height: 200px; }
  .sc-testi { padding: 22px 18px; }
  .sc-news-card .sc-news-thumb { height: 160px; }

  /* Stats */
  .sc-stat { padding: 20px 16px; }
  .sc-stat-n { font-size: 2.2rem; }

  /* Contact form */
  .sc-form-wrap { padding: 22px 16px; }
  .sc-field-row { grid-template-columns: 1fr !important; gap: 0 !important; }
  .sc-field.full { grid-column: 1 !important; }

  /* CTA band */
  [style*="grid-template-columns:1fr auto"] { display: flex !important; flex-direction: column !important; gap: 20px !important; }
  [style*="justify-content:flex-end"] { justify-content: flex-start !important; }

  /* Buttons in CTA */
  .sc-btn { font-size: .78rem; padding: 12px 22px; }
  .sc-btn.sc-btn-lg { font-size: .82rem; padding: 14px 26px; }

  /* Footer */
  #sc-footer [style*="display:grid"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
  }
  #sc-footer [style*="grid-template-columns:2fr 1fr 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
  }
  #sc-footer [style*="display:flex;justify-content:space-between"] {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
  }

  /* Newsletter in footer */
  [style*="min-width:240px"] { min-width: unset !important; width: 100% !important; }

  /* Page header */
  .sc-page-hd h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }

  /* About section image hide on mobile */
  .sc-about-img-mobile-hide { display: none !important; }

  /* Inline flex rows → wrap */
  [style*="display:flex;gap:14px;flex-wrap:wrap"] { flex-wrap: wrap !important; }
  [style*="display:flex;gap:12px;flex-wrap:wrap"] { flex-wrap: wrap !important; }

  /* Trust marquee — smaller text */
  .sc-trust-item { font-size: .65rem; }
  .sc-trust-track { gap: 36px; }

  /* Pillar cards */
  .sc-pillar { padding: 22px 18px; }

  /* Team links on smaller cards */
  .sc-team-links a { width: 30px; height: 30px; }

  /* Impact list */
  .sc-impact-list li { font-size: .88rem; }

  /* Breadcrumb */
  .sc-breadcrumb { font-size: .65rem; }

  /* Service card tags */
  .sc-tag { font-size: .65rem; }

  /* News meta */
  .sc-news-meta { gap: 6px; }
  .sc-news-cat { font-size: .64rem; }

  /* Mobile nav fix */
  .sc-mob { top: var(--sc-nav-h); }
}

/* ================================================
   MOBILE — 480px (small phones)
================================================ */
@media (max-width: 480px) {
  .sc-wrap { padding: 0 14px; }

  /* Hero */
  .sc-hero-section { min-height: auto; padding-top: 20px; padding-bottom: 20px; }

  /* Hide hero card completely */
  [style*="backdrop-filter:blur(18px)"],
  [style*="backdrop-filter: blur(18px)"] { display: none !important; }

  /* Typography scale down */
  h1 { font-size: clamp(1.6rem, 7vw, 2rem) !important; }
  h2 { font-size: clamp(1.4rem, 6vw, 1.8rem) !important; }

  /* Buttons full width in hero */
  .sc-hero-section [style*="display:flex;gap:14px"],
  .sc-hero-section [style*="display: flex; gap: 14px"] {
    flex-direction: column !important;
  }
  .sc-hero-section .sc-btn { width: 100% !important; justify-content: center !important; }

  /* Stats row wrap nicely */
  [style*="display:flex;gap:28px;padding-top"],
  [style*="display: flex; gap: 28px; padding-top"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* Cards */
  .sc-card { padding: 18px 14px; }
  .sc-form-wrap { padding: 18px 12px; }

  /* Section padding tight */
  section[style*="padding:90px"], section[style*="padding: 90px"] { padding: 40px 0 !important; }
  section[style*="padding:80px"], section[style*="padding: 80px"] { padding: 36px 0 !important; }

  /* 3-col grids to 1 col */
  [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }

  /* Testimonials */
  .sc-testi-txt { font-size: .88rem; }

  /* Footer bottom */
  #sc-footer [style*="display:flex;gap:18px"] { flex-wrap: wrap !important; gap: 12px !important; justify-content: center !important; }
}

/* ================================================
   SPECIAL: make inline-style flex rows wrap on mobile
================================================ */
@media (max-width: 768px) {
  .sc-mob-col {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .sc-mob-col .sc-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* Hide hero card on mobile */
@media (max-width: 768px) {
  .sc-hide-mobile { display: none !important; }
}

/* ================================================
   HEADER MOBILE — ensure hamburger works perfectly
================================================ */
@media (max-width: 1024px) {
  #sc-header { height: var(--sc-nav-h) !important; }
  .sc-hd-inner { padding: 0 18px; }
  .sc-logo img { height: 44px !important; }
  .sc-ham {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
  }
}

/* ================================================
   PAGE TEMPLATES MOBILE FIXES
================================================ */
@media (max-width: 768px) {
  /* About page */
  .sc-about-img-col { display: none !important; }

  /* Services page alternating layout */
  [style*="order:2"] { order: unset !important; }
  [style*="order: 2"] { order: unset !important; }
  [style*="order:1"] { order: unset !important; }
  [style*="order: 1"] { order: unset !important; }

  /* Team page grid */
  .sc-team-card { margin-bottom: 4px; }

  /* Contact info items */
  .sc-contact-item { align-items: flex-start; }
  .sc-contact-ic { width: 38px; height: 38px; font-size: .88rem; }

  /* Case study grid */
  [style*="grid-template-columns:auto 1fr"],
  [style*="grid-template-columns: auto 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Careers requirements grid */
  [style*="grid-template-columns:1fr 1fr;gap:7px"],
  [style*="grid-template-columns: 1fr 1fr; gap: 7px"] {
    grid-template-columns: 1fr !important;
  }

  /* Jobs apply button layout */
  [style*="display:flex;justify-content:space-between;align-items:flex-start"] {
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* Vision/mission 2-col → 1 col */
  [style*="grid-template-columns:1fr 1fr;gap:28px"],
  [style*="grid-template-columns: 1fr 1fr; gap: 28px"] {
    grid-template-columns: 1fr !important;
  }

  /* Values grid 4-col */
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* News sidebar hidden on mobile, full width article list */
  [style*="grid-template-columns:2fr 1fr;gap:52px"],
  [style*="grid-template-columns: 2fr 1fr; gap: 52px"] {
    grid-template-columns: 1fr !important;
  }

  /* Stat boxes */
  [style*="grid-column:1/-1"],
  [style*="grid-column: 1/-1"],
  [style*="grid-column: 1 / -1"] {
    grid-column: 1 !important;
  }
}

/* ================================================
   ELEMENTOR MOBILE FIXES
   Ensure Elementor columns stack on mobile
================================================ */
@media (max-width: 768px) {
  .elementor-column-wrap { width: 100% !important; }
  .elementor-col-50,
  .elementor-col-33,
  .elementor-col-25 { width: 100% !important; }
  .elementor-section .elementor-container { flex-direction: column !important; }
  .elementor-widget-wrap { padding: 10px 15px !important; }
  .elementor-section { padding-left: 0 !important; padding-right: 0 !important; }
}

/* ================================================
   GENERAL MOBILE POLISH
================================================ */
@media (max-width: 768px) {
  /* Smooth font sizes */
  p { font-size: .95rem; }
  .sc-label { font-size: .68rem; }

  /* Buttons comfortable tap size */
  .sc-btn { min-height: 44px; padding: 12px 22px; }

  /* Readable line lengths */
  h1, h2, h3 { word-break: break-word; }

  /* Scroll top button position */
  #sc-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }

  /* Forms */
  .sc-field input,
  .sc-field select,
  .sc-field textarea { font-size: 16px; /* prevents iOS zoom */ }

  /* Mobile nav items bigger tap targets */
  .sc-mob a { padding: 16px 0; font-size: 1rem; }

  /* Footer newsletter full width */
  .sc-nl-wrap { flex-direction: column !important; }
  .sc-nl-inp { width: 100% !important; }
  .sc-nl-btn { width: 100% !important; padding: 12px !important; }
}
