:root {
  --bs-primary: #2F3E3A;
  --bs-primary-rgb: 47, 62, 58;
  --bs-secondary: #F4B400;
  --bs-secondary-rgb: 244, 180, 0;
  --bs-tertiary-color: #C85A2E;
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #F7F8F6;
  --bs-tertiary-bg-rgb: 248, 249, 250;

  --bs-light: #F7F8F6;
  --bs-light-rgb: 247, 248, 246;
  --bs-dark: #2F3E3A;
  --bs-dark-rgb: 47, 62, 58;

  --bs-body-bg: #F7F8F6;
  --bs-body-bg-rgb: 247, 248, 246;
  --bs-body-color: #2F3E3A;
  --bs-body-color-rgb: 47, 62, 58;

  --bs-link-color: #C85A2E;
  --bs-link-color-rgb: 200, 90, 46;
  --bs-link-hover-color: #F4B400;

  --bs-body-font-size: 1.25rem;

  /* Brand colours */
  --sia-dark:           #2F3E3A;
  --sia-dark-hover:     #1e2926;
  --sia-dark-rgb:       47, 62, 58;

  --sia-orange:         #C85A2E;
  --sia-orange-hover:   #a84924;
  --sia-orange-light:   rgba(200, 90, 46, 0.12);

  --sia-yellow:         #F4B400;
  --sia-yellow-hover:   #d49c00;
  --sia-yellow-light:   rgba(244, 180, 0, 0.15);

  --sia-light:          #F7F8F6;
  --sia-light-alt:      #eef0ed;

  /* Typography */
  --sia-font-heading:   'DM Sans', sans-serif;
  --sia-font-body:      'Source Sans 3', sans-serif;
  --sia-body-color:     #3a3a3a;
  --sia-muted:          #6b7069;

  /* Radius & Shadows */
  --sia-radius-sm:      6px;
  --sia-radius-md:      12px;
  --sia-radius-lg:      20px;
  --sia-shadow-sm:      0 2px 8px rgba(0,0,0,.07);
  --sia-shadow-md:      0 6px 24px rgba(0,0,0,.11);
  --sia-shadow-lg:      0 16px 48px rgba(0,0,0,.14);

  /* Spacing helpers */
  --section-py:         96px;
  --section-py-sm:      56px;

  /* Navbar height (used to offset hero) */
  --navbar-h:           100px;
}

.form-control:focus {
  border-color: var(--bs-secondary);
  box-shadow: 0 0 0 .25rem rgba(var(--bs-secondary-rgb), .25);
}
/*:target {
  scroll-margin-top: var(--navbar-h);
}*/

.btn-primary {
  --bs-btn-bg: #2F3E3A;
  --bs-btn-border-color: #2F3E3A;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #F4B400;
  --bs-btn-hover-border-color: #F4B400;
  --bs-btn-focus-shadow-rgb: 200, 90, 46;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #1e2926;
  --bs-btn-active-border-color: #1e2926;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #2F3E3A;
  --bs-btn-disabled-border-color: #2F3E3A;
}
.btn-secondary {
  --bs-btn-bg: #F4B400;
  --bs-btn-border-color: #F4B400;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2F3E3A;
  --bs-btn-hover-border-color: #2F3E3A;
  --bs-btn-focus-shadow-rgb: 200, 90, 46;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #d49c00;
  --bs-btn-active-border-color: #d49c00;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #F4B400;
  --bs-btn-disabled-border-color: #F4B400;
}

.cms-overlay img {
  display:block;
  width:100%;
  height:auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-h) + 16px);
}

body {
  font-family: var(--sia-font-body);
  color: var(--sia-body-color);
  background-color: var(--sia-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.sia-heading {
  font-family: var(--sia-font-heading);
  font-weight: 700;
  color: var(--sia-dark);
  line-height: 1.2;
}

a {
  color: var(--sia-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--sia-orange-hover);
}

/*img {
  max-width: 100%;
  height: auto;
}*/

/* Sections */
.section-padding        { padding-block: var(--section-py); }
.section-padding--sm    { padding-block: var(--section-py-sm); }




/* Eyebrow label above titles */
.sia-eyebrow {
  display: inline-block;
  font-family: var(--sia-font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sia-orange);
  margin-bottom: 0.5rem;
}

.sia-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}

.sia-section-lead {
  font-size: 1.05rem;
  color: var(--sia-muted);
  max-width: 580px;
  margin-inline: auto;
}


.btn {
  font-family: var(--sia-font-heading);
  font-weight: 600;
  border-radius: var(--sia-radius-sm);
  transition: all 0.22s ease;
  letter-spacing: 0.01em;
}

/* Primary: Yellow */
.sia-btn-primary {
  background-color: var(--sia-yellow);
  color: var(--sia-dark);
  border: 2px solid var(--sia-yellow);
  padding: 0.55rem 1.5rem;
}
.sia-btn-primary:hover,
.sia-btn-primary:focus-visible {
  background-color: var(--sia-light);
  border-color: var(--sia-yellow-hover);
  color: var(--sia-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 180, 0, 0.35);
}

/* Outline: Dark border, transparent bg */
.sia-btn-outline {
  background-color: transparent;
  color: var(--sia-dark);
  border: 2px solid var(--sia-dark);
  padding: 0.55rem 1.5rem;
}
.sia-btn-outline:hover,
.sia-btn-outline:focus-visible {
  background-color: var(--sia-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sia-shadow-sm);
}

/* On dark backgrounds */
.sia-btn-outline--light {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.sia-btn-outline--light:hover {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

/* Large modifier */
.sia-btn-lg {
  padding: 0.72rem 2rem;
  font-size: 1rem;
}


.navbar {
  background-color: var(--bs-light);
  height: var(--navbar-h);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding-block: 0;
}

/* Shrink on scroll */
.navbar.scrolled {
  background-color: rgba(var(--bs-dark-rgb), 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Brand text logo (used when image not available) */
.sia-brand-text {
  font-family: var(--sia-font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.sia-brand-text em {
  font-style: normal;
  color: var(--sia-yellow);
}
.sia-brand-text--footer {
  font-size: 1.6rem;
}

/* Nav links */
.navbar .nav-link {
  color: var(--sia-dark);
  font-family: var(--sia-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.4rem 0.75rem;
  background: transparent;
  margin-left: 1rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--sia-orange);
}

.navbar .nav-link.nav-link-btn {
  background-color: var(--sia-yellow);
  border-radius: var(--sia-radius-sm);
  color: #fff !important;
  padding: 0.4rem 0.75rem;
  transition: background 0.2s;
}

.navbar .nav-link.nav-link-btn:hover,
.navbar .nav-link.nav-link-btn.active{
  background-color: var(--sia-dark);
}


/* Dropdown menus */
.navbar .dropdown-menu {
  background-color: var(--sia-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--sia-radius-md);
  box-shadow: var(--sia-shadow-md);
  min-width: 200px;
  margin-top: 8px;
  padding: 0.5rem;
  --bs-dropdown-link-active-bg: var(--bs-tertiary-color);
}
.navbar .dropdown-item {
  color: rgba(255,255,255,0.85);
  font-family: var(--sia-font-heading);
  font-size: 0.88rem;
  border-radius: var(--sia-radius-sm);
  padding: 0.45rem 1rem;
  transition: background 0.18s, color 0.18s;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: var(--sia-light);
  color: var(--bs-tertiary-color);
}

/* Hamburger colour */
.navbar .navbar-toggler-icon {
  filter: invert(1);
}


.sia-hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--navbar-h);
  background-color: var(--sia-dark);
  color: #fff;
  overflow: hidden;
}

/* Decorative background shape */
.sia-hero__bg-shape {
  position: absolute;
  top: -120px;
  right: -180px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(244, 180, 0, 0.18) 0%,
    rgba(200, 90, 46, 0.12) 50%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Second decorative blob (bottom-left) */
.sia-hero::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(200, 90, 46, 0.08);
  pointer-events: none;
}

.sia-hero .container {
  position: relative;
  z-index: 1;
}

.sia-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.sia-hero__title strong,
.sia-hero__title em {
  color: var(--sia-yellow);
  font-style: normal;
}

.sia-hero__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.65;
}

/* Image wrapper in hero */
.sia-hero__visual {
  position: relative;
  display: inline-block;
}
.sia-hero__visual img {
  border-radius: var(--sia-radius-lg);
  box-shadow: var(--sia-shadow-lg);
  max-height: 480px;
  object-fit: cover;
}

/* Orange accent pill decoration */
.sia-hero__visual::before {
  content: '';
  position: absolute;
  inset: -12px -12px auto auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sia-orange);
  opacity: 0.7;
  z-index: -1;
}
.sia-hero__visual::after {
  content: '';
  position: absolute;
  inset: auto auto -16px -16px;
  width: 120px;
  height: 8px;
  border-radius: 4px;
  background: var(--sia-yellow);
  opacity: 0.6;
}


.sia-clients {
  background-color: #fff;
  border-block: 1px solid rgba(0,0,0,0.06);
}
.sia-clients__label {
  font-size: 0.78rem;
  font-family: var(--sia-font-heading);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sia-muted);
}
.sia-clients__logos img {
  height: 36px;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.25s;
}
.sia-clients__logos img:hover {
  filter: grayscale(0) opacity(1);
}


.sia-features {
  background-color: var(--sia-light);
}

.card {
  background: #fff;
  border-radius: var(--sia-radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--sia-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.card-header {
  border-bottom: 0;
}
.card-footer {
  border-top: 0;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sia-shadow-md);
}

.card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--sia-radius-sm);
  background-color: var(--sia-yellow-light);
  color: var(--sia-orange);
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  transition: background 0.25s;
}
.card:hover .card__icon {
  background-color: var(--sia-yellow);
  color: var(--sia-dark);
}

.card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card__text {
  color: var(--sia-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}


.sia-stats {
  background-color: var(--sia-dark);
  color: #fff;
}

.sia-stat__number {
  font-family: var(--sia-font-heading);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--sia-yellow);
  line-height: 1;
}
.sia-stat__suffix {
  font-family: var(--sia-font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sia-yellow);
}
.sia-stat__label {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--sia-font-heading);
  font-weight: 500;
}


.sia-about {
  background-color: #fff;
}

.sia-about__visual {
  position: relative;
}
.sia-about__visual img {
  border-radius: var(--sia-radius-lg);
  box-shadow: var(--sia-shadow-md);
}
/* Orange accent stripe */
.sia-about__visual::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60%;
  height: 8px;
  background: linear-gradient(90deg, var(--sia-orange), var(--sia-yellow));
  border-radius: 4px;
  z-index: -1;
}

.sia-about__body p {
  color: var(--sia-muted);
  line-height: 1.8;
}

/* Checklist inside about body (if CMS plugin outputs <ul>) */
.sia-about__body ul {
  list-style: none;
  padding-left: 0;
}
.sia-about__body ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--sia-body-color);
}
.sia-about__body ul li::before {
  content: '\F26B'; /* Bootstrap Icons check-circle-fill */
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--sia-orange);
  font-size: 1rem;
}


.sia-testimonials {
  background-color: var(--sia-light-alt);
}

.sia-testimonial-card {
  background: #fff;
  border-radius: var(--sia-radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--sia-shadow-sm);
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.sia-testimonial-card__quote {
  font-size: 1.05rem;
  color: var(--sia-body-color);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.sia-testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--sia-yellow);
  margin-bottom: 0.75rem;
}

.sia-testimonial-card__name {
  font-family: var(--sia-font-heading);
  font-weight: 700;
  color: var(--sia-dark);
}
.sia-testimonial-card__role {
  font-size: 0.85rem;
  color: var(--sia-muted);
}

/* Stars */
.sia-testimonial-card__stars {
  color: var(--sia-yellow);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Carousel controls override */
.sia-carousel-icon {
  font-size: 1.5rem;
  color: var(--sia-dark);
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  padding: 0.4rem;
  box-shadow: var(--sia-shadow-sm);
}


.sia-cta-band {
  background: linear-gradient(135deg, var(--sia-orange) 0%, #a8441e 100%);
  color: #fff;
}

.sia-cta-band__title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.sia-cta-band__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-inline: auto;
}

.sia-cta-band .sia-btn-primary {
  background-color: var(--sia-yellow);
  border-color: var(--sia-yellow);
  color: var(--sia-dark);
}
.sia-cta-band .sia-btn-primary:hover {
  background-color: #fff;
  border-color: #fff;
  color: var(--sia-orange);
}


.sia-footer {
  background-color: var(--sia-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
  padding-bottom: 32px;
  font-size: 0.9rem;
}

.sia-footer__heading {
  font-family: var(--sia-font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sia-footer__tagline {
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  font-size: 0.88rem;
}

.sia-footer__address {
  font-style: normal;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* Footer navigation (rendered by CMS menu tag) */
.sia-footer ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.sia-footer ul li {
  margin-bottom: 0.4rem;
}
.sia-footer ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.sia-footer ul a:hover {
  color: var(--sia-yellow);
}

/* Social icons */
.sia-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
  margin-right: 6px;
}
.sia-footer__social a:hover {
  background: var(--sia-yellow);
  color: var(--sia-dark);
}

.sia-footer__divider {
  border-color: rgba(255,255,255,0.1);
  margin-block: 2rem;
}

.sia-footer__bottom {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.sia-footer__bottom a {
  color: rgba(255,255,255,0.55);
}
.sia-footer__bottom a:hover {
  color: var(--sia-yellow);
}


.sia-back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--sia-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--sia-shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 1040;
}
.sia-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sia-back-to-top:hover {
  background-color: var(--bs-warning);
  color: #fff;
}


/* When the CMS toolbar is active, push content down */
.cms-toolbar-expanded .navbar {
  top: 46px; /* CMS toolbar height */
}
.cms-toolbar-expanded .sia-hero {
  padding-top: calc(var(--navbar-h) + 46px);
}


.text-sia-yellow  { color: var(--sia-yellow) !important; }
.text-sia-orange  { color: var(--sia-orange) !important; }
.text-sia-dark    { color: var(--sia-dark)   !important; }
.bg-sia-dark      { background-color: var(--sia-dark) !important; }
.bg-sia-orange    { background-color: var(--sia-orange) !important; }
.bg-sia-yellow    { background-color: var(--sia-yellow) !important; }
.bg-sia-light     { background-color: var(--sia-light) !important; }

/* Highlight bar (decorative) */
.sia-highlight-bar {
  display: inline-block;
  position: relative;
}
.sia-highlight-bar::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background: var(--sia-yellow);
  opacity: 0.4;
  z-index: -1;
  border-radius: 2px;
}


@media (max-width: 991.98px) {
  :root {
    --section-py: 64px;
    --section-py-sm: 40px;
  }

  /* Mobile nav: full-width dropdown bg */
  .navbar .navbar-collapse {
    background-color: var(--bs-light);
    padding: 1rem 1.25rem 1.5rem;
    border-radius: 0 0 var(--sia-radius-md) var(--sia-radius-md);
    margin-top: 8px;
    box-shadow: var(--sia-shadow-md);
  }

  .navbar .nav-link {
    padding: 0.55rem 0.5rem !important;
  }

  .sia-hero {
    text-align: center;
  }
  .sia-hero__lead {
    margin-inline: auto;
  }
  .sia-hero__actions {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  :root {
    --section-py: 48px;
    --section-py-sm: 32px;
  }

  .sia-back-to-top {
    bottom: 20px;
    right: 20px;
  }
}


:focus-visible {
  outline: 3px solid var(--sia-yellow);
  outline-offset: 3px;
}

/* Skip to content */
.sia-skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--sia-yellow);
  color: var(--sia-dark);
  font-weight: 700;
  transition: top 0.2s;
}
.sia-skip-link:focus {
  top: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ─────────────────────────────────────────
   18. Cookie Banner
──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 28px;
  left: 28px;
  max-width: 360px;
  z-index: 9999;
  background: var(--sia-dark);
  color: rgba(255,255,255,0.75);
  font-family: var(--sia-font-body);
  font-size: 0.9rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--sia-radius-md);
  border-top: 3px solid var(--sia-orange);
  box-shadow: var(--sia-shadow-lg);
}
.cookie-banner p {
  margin: 0 0 1rem;
}

.cookie-banner a:hover {
  color: var(--sia-yellow-hover);
}
