/* Bug-fix overrides (loaded after min.css) */

/*
 * Horizontal scrollbar on mobile: overflow often lives on the root, not only body.
 * Reinforce after min.css; avoid 100vw on html (scrollbar makes vw > layout width).
 */
html {
  max-width: 100%;
  overflow-x: clip;
  color-scheme: dark;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

/* Scroll-to-top anchor removed site-wide; min.css still targets #button — keep it inert */
#button {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* —— Hero revamp (#banner-wrap.home-hero-revamp) —— */
.home-hero-revamp#banner-wrap {
  position: relative;
  display: block !important;
  padding: clamp(28px, 6vw, 72px) 0 clamp(36px, 7vw, 88px);
  overflow-x: clip;
  overflow-y: visible;
}

@supports not (overflow: clip) {
  .home-hero-revamp#banner-wrap {
    overflow-x: hidden;
    overflow-y: visible;
  }
}

.home-hero-revamp#banner-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 58% 42% at 82% 28%, rgba(252, 227, 131, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 12% 25%, rgba(252, 227, 131, 0.09) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 88% 72%, rgba(95, 199, 239, 0.08) 0%, transparent 52%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.25) 0%, transparent 48%);
}

.home-hero-revamp#banner-wrap .container {
  position: relative;
  z-index: 1;
}

.home-hero-revamp#banner-wrap .main-banner,
.home-hero-revamp#banner-wrap .main-banner .banner {
  width: 100% !important;
  max-width: 100%;
}

.home-hero-revamp#banner-wrap .main-banner {
  display: block;
  padding-top: clamp(8px, 2vw, 20px);
  padding-bottom: 0;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  width: 100%;
}

/* Two columns only when the optional aside exists (city pages). Homepage has no aside → full-width hero. */
@media (min-width: 992px) {
  .home-hero-revamp#banner-wrap .home-hero-revamp__layout:has(.home-hero-revamp__aside) {
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
    gap: clamp(28px, 4vw, 56px);
  }
}

.home-hero-revamp#banner-wrap .home-hero-revamp__copy.banner {
  position: relative;
  text-align: left;
  max-width: none;
  width: 100% !important;
  overflow: visible;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__aside {
  position: relative;
  min-height: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(155deg, rgba(24, 24, 24, 0.99) 0%, rgba(10, 10, 10, 0.99) 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: clamp(22px, 3.2vw, 32px);
  box-sizing: border-box;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__aside-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  mask-image: linear-gradient(165deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.92) 100%);
  -webkit-mask-image: linear-gradient(165deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.92) 100%);
}

.home-hero-revamp#banner-wrap .home-hero-revamp__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(44px);
  opacity: 0.38;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__orb--1 {
  width: min(45%, 200px);
  aspect-ratio: 1;
  top: -8%;
  right: -10%;
  background: radial-gradient(circle, rgba(252, 227, 131, 0.5) 0%, transparent 72%);
}

.home-hero-revamp#banner-wrap .home-hero-revamp__orb--2 {
  width: min(40%, 180px);
  aspect-ratio: 1;
  bottom: 10%;
  left: -12%;
  background: radial-gradient(circle, rgba(90, 243, 162, 0.35) 0%, transparent 72%);
}

.home-hero-revamp#banner-wrap .home-hero-revamp__aside-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.2vw, 16px);
  flex: 1;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__aside--heading-only {
  justify-content: center;
  min-height: clamp(140px, 22vw, 220px);
}

.home-hero-revamp#banner-wrap .home-hero-revamp__aside--heading-only .home-hero-revamp__aside-inner {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__aside-label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: #fce383;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__aside-title {
  margin: 0;
  font-size: clamp(0.92rem, 1.9vw, 1.05rem);
  line-height: 1.55;
  font-weight: 500;
  font-family: "Manrope", system-ui, sans-serif;
  color: rgba(255, 255, 255, 0.78);
  max-width: 26rem;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__chips {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
}

@media (min-width: 1100px) {
  .home-hero-revamp#banner-wrap .home-hero-revamp__chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.home-hero-revamp#banner-wrap .home-hero-revamp__chips li {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
  text-align: center;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__chips li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__aside-footnote {
  margin: 8px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(0.72rem, 1.5vw, 0.82rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Manrope", system-ui, sans-serif;
}

@media (max-width: 991px) {
  .home-hero-revamp#banner-wrap .home-hero-revamp__layout:has(.home-hero-revamp__aside) .home-hero-revamp__aside {
    order: 2;
  }

  .home-hero-revamp#banner-wrap .home-hero-revamp__layout:has(.home-hero-revamp__aside) .home-hero-revamp__copy.banner {
    order: 1;
  }
}

.home-hero-revamp#banner-wrap .banner::after {
  display: none !important;
  content: none !important;
}

.home-hero-revamp#banner-wrap .banner-text {
  margin-top: 0 !important;
  margin-bottom: 0;
}

.home-hero-revamp#banner-wrap .banner-text p {
  color: #fce383 !important;
  font-size: 13px !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.38em !important;
  text-transform: uppercase !important;
  line-height: 1.4 !important;
  margin: 0 0 clamp(12px, 2.5vw, 20px) !important;
  max-width: none !important;
  width: auto !important;
  height: auto !important;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__headline-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(8px, 1.8vw, 14px);
  margin-bottom: clamp(12px, 2.5vw, 20px);
  overflow: visible;
}

.home-hero-revamp#banner-wrap .banner-head {
  margin-top: 0 !important;
  overflow: visible;
  max-width: 100%;
}

/* Gradient-filled text needs roomy line-height + padding or tall letters / tittles clip (especially WebKit). */
.home-hero-revamp#banner-wrap .banner-head h1 {
  font-size: clamp(2.35rem, 8vw, 4.75rem) !important;
  line-height: 1.18 !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-weight: 800 !important;
  margin: 0 !important;
  padding: 0.08em 0 0.16em;
  letter-spacing: -0.02em;
  overflow: visible;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.home-hero-revamp#banner-wrap .last-heading {
  margin: 0 !important;
  overflow: visible;
}

.home-hero-revamp#banner-wrap .last-heading span {
  font-size: clamp(1.85rem, 6.5vw, 3.75rem) !important;
  line-height: 1.15 !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-weight: 700 !important;
  color: #fff !important;
  padding: 0.04em 0 0.08em;
  overflow: visible;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__lead {
  margin: 0 0 clamp(18px, 3.5vw, 28px);
  max-width: min(52rem, 100%);
  font-size: clamp(0.95rem, 2.2vw, 1.12rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Manrope", system-ui, sans-serif;
}

/* Homepage (no aside): let the headline block use the full hero width comfortably */
.home-hero-revamp#banner-wrap .home-hero-revamp__layout:not(:has(.home-hero-revamp__aside)) .home-hero-revamp__headline-group {
  max-width: min(56rem, 100%);
}

.home-hero-revamp#banner-wrap .home-hero-revamp__layout:not(:has(.home-hero-revamp__aside)) .banner-head h1 {
  font-size: clamp(2.5rem, 7.5vw, 5.25rem) !important;
}

.home-hero-revamp#banner-wrap .banner-review.home-hero-revamp__rating {
  display: inline-flex !important;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0 0 clamp(22px, 4vw, 32px) !important;
  padding: 10px 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-hero-revamp#banner-wrap .banner-review .review-text {
  margin-right: 0 !important;
}

.home-hero-revamp#banner-wrap .banner-review .review-text h5 {
  margin: 0 !important;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem) !important;
  font-weight: 800 !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  color: #fff !important;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__stars {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  margin: 0 !important;
  color: #fce383;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
}

.home-hero-revamp#banner-wrap .home-hero-revamp__actions {
  margin: 0;
  padding: 0;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__actions .portfolio-revamp-cta__btn {
  margin: 0;
}

/* Hero CTAs: explicit text/icon colors (avoids gradient -webkit-text-fill leaking from elsewhere) */
.home-hero-revamp#banner-wrap .home-hero-revamp__actions .portfolio-revamp-cta__btn:not(.portfolio-revamp-cta__btn--outline) {
  color: #0a0a0a !important;
  -webkit-text-fill-color: #0a0a0a !important;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__actions .portfolio-revamp-cta__btn:not(.portfolio-revamp-cta__btn--outline) i {
  color: #0a0a0a !important;
  -webkit-text-fill-color: #0a0a0a !important;
  opacity: 1;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__actions .portfolio-revamp-cta__btn:not(.portfolio-revamp-cta__btn--outline):hover,
.home-hero-revamp#banner-wrap .home-hero-revamp__actions .portfolio-revamp-cta__btn:not(.portfolio-revamp-cta__btn--outline):focus-visible {
  color: #050505 !important;
  -webkit-text-fill-color: #050505 !important;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__actions .portfolio-revamp-cta__btn:not(.portfolio-revamp-cta__btn--outline):hover i,
.home-hero-revamp#banner-wrap .home-hero-revamp__actions .portfolio-revamp-cta__btn:not(.portfolio-revamp-cta__btn--outline):focus-visible i {
  color: #050505 !important;
  -webkit-text-fill-color: #050505 !important;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__actions .portfolio-revamp-cta__btn.portfolio-revamp-cta__btn--outline {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__actions .portfolio-revamp-cta__btn.portfolio-revamp-cta__btn--outline:hover,
.home-hero-revamp#banner-wrap .home-hero-revamp__actions .portfolio-revamp-cta__btn.portfolio-revamp-cta__btn--outline:focus-visible {
  color: #0a0a0a !important;
  -webkit-text-fill-color: #0a0a0a !important;
}

.home-hero-revamp#banner-wrap .home-hero-revamp__actions .portfolio-revamp-cta__btn.portfolio-revamp-cta__btn--outline:hover i,
.home-hero-revamp#banner-wrap .home-hero-revamp__actions .portfolio-revamp-cta__btn.portfolio-revamp-cta__btn--outline:focus-visible i {
  color: #0a0a0a !important;
  -webkit-text-fill-color: #0a0a0a !important;
}

@media (max-width: 768px) {
  .home-hero-revamp#banner-wrap .banner-head h1 {
    word-break: break-word;
  }

  .home-hero-revamp#banner-wrap .banner-review.home-hero-revamp__rating {
    margin-top: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* City hub pages: optional body class not present — rely on same hero rules */
#banner-wrap-mobile .main-banner .banner {
  width: 100% !important;
  max-width: 100%;
}

/* Drawer menu: hide on desktop where horizontal .nav is used; show only on small screens */
@media (min-width: 769px) {
  #header-wrap .nav-menu {
    display: none !important;
  }

  .mobile-drawer-backdrop {
    display: none !important;
  }
}

/* Mobile drawer: fixed right sheet + backdrop (open/close via body.drawer-open in footer.php) */
@media (max-width: 768px) {
  #header-wrap {
    overflow-x: clip;
    max-width: 100%;
  }

  @supports not (overflow: clip) {
    #header-wrap {
      overflow-x: hidden;
    }
  }

  #header-wrap .col-xs-12.col-md-12.col-lg-12 {
    position: relative;
    max-width: 100%;
    min-width: 0;
  }

  .mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10040;
    background: rgba(4, 6, 8, 0.58);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.28s ease,
      visibility 0.28s linear;
  }

  body.drawer-open .mobile-drawer-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /*
   * min.css: legacy .nav-menu rules break mobile — reset inside #mobile-drawer only.
   */
  #header-wrap #mobile-drawer.nav-menu,
  #header-wrap #mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    margin: 0 !important;
    width: min(100vw - 44px, 400px) !important;
    max-width: 100vw !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    box-sizing: border-box;
    background: #060606 !important;
    background-image: none !important;
    border: none !important;
    border-radius: 0 !important;
    border-left: 1px solid rgba(252, 227, 131, 0.12) !important;
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.55) !important;
    overflow: hidden !important;
    flex-wrap: nowrap;
    z-index: 10045;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    pointer-events: none;
  }

  body.drawer-open #header-wrap #mobile-drawer {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  /* Hide menu trigger while drawer is open (close control is in the sheet). */
  body.drawer-open #header-wrap .nav-toggle {
    display: none !important;
  }

  #header-wrap #mobile-drawer .nav-menu-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    box-sizing: border-box;
    padding: max(16px, env(safe-area-inset-top, 0px)) clamp(16px, 4vw, 22px) max(24px, env(safe-area-inset-bottom, 0px));
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #060606;
  }

  .mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
    flex-shrink: 0;
  }

  .mobile-drawer-head .nav-menu-eyebrow {
    margin: 0 !important;
  }

  .mobile-drawer-close {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease;
  }

  .mobile-drawer-close:hover,
  .mobile-drawer-close:focus-visible {
    background: rgba(252, 227, 131, 0.12);
    border-color: rgba(252, 227, 131, 0.35);
    color: #fff;
    outline: none;
  }

  .mobile-drawer-close:focus-visible {
    outline: 2px solid #fce383;
    outline-offset: 2px;
  }

  .mobile-drawer-section-label {
    margin: 0 0 4px;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    flex-shrink: 0;
  }

  .mobile-drawer-section-label--spaced {
    margin-top: 18px;
    margin-bottom: 6px;
  }

  #header-wrap #mobile-drawer .nav-items {
    display: flex !important;
    flex-direction: column !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    width: 100%;
    box-sizing: border-box;
  }

  #header-wrap #mobile-drawer .nav-item-menu {
    position: relative !important;
    font-size: inherit !important;
    margin: 0 !important;
    margin-right: 0 !important;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  #header-wrap #mobile-drawer .nav-item-menu a {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    font-size: clamp(1.12rem, 4vw, 1.35rem) !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
    line-height: 1.35 !important;
  }

  #header-wrap #mobile-drawer .nav-item-wrapper {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  #header-wrap #mobile-drawer .nav-item-wrapper::after {
    display: none !important;
    content: none !important;
  }

  #header-wrap #mobile-drawer .nav-info {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    align-items: stretch !important;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  #header-wrap #mobile-drawer .nav-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 18px;
    width: 100% !important;
    max-width: 100%;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    flex-wrap: wrap;
    box-sizing: border-box;
  }

  #header-wrap .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10055;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  #header-wrap #mobile-drawer .nav-items .nav-item-menu {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  #header-wrap #mobile-drawer .nav-items .nav-item-menu:last-child {
    border-bottom: none;
  }

  #header-wrap #mobile-drawer .nav-items .nav-item-menu a {
    display: flex;
    align-items: center;
    padding: 18px 8px 18px 4px;
    min-height: 48px;
    font-family: "Manrope", system-ui, sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
  }

  #header-wrap #mobile-drawer .nav-items .nav-item-menu a:active {
    transform: translateX(2px);
  }

  #header-wrap #mobile-drawer .nav-info .address h3,
  #header-wrap #mobile-drawer .nav-info .links-social h3,
  #header-wrap #mobile-drawer .nav-info .nav-contact h3 {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
  }

  #header-wrap #mobile-drawer .nav-info .nav-portfolio p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 10px;
  }

  #header-wrap #mobile-drawer .nav-social .links-social ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  /* min.css uses white fill, circle border, and :before slide — strip it in the drawer */
  #header-wrap #mobile-drawer .nav-social .links-social ul li a {
    display: inline-flex !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-right: 0 !important;
    line-height: 1 !important;
    font-size: 0 !important;
    text-decoration: none;
    overflow: visible !important;
    position: relative !important;
    z-index: 1;
    background: rgba(255, 255, 255, 0.07) !important;
    background-color: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.2s ease;
  }

  #header-wrap #mobile-drawer .nav-social .links-social ul li a::before,
  #header-wrap #mobile-drawer .nav-social .links-social ul li a::after {
    display: none !important;
    content: none !important;
  }

  #header-wrap #mobile-drawer .nav-social .links-social ul li a .icon {
    position: static !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.125rem !important;
    line-height: 1 !important;
    z-index: 1 !important;
    bottom: auto !important;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  #header-wrap #mobile-drawer .nav-social .links-social ul li a:hover,
  #header-wrap #mobile-drawer .nav-social .links-social ul li a:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  }

  #header-wrap #mobile-drawer .nav-social .links-social ul li a:hover .icon,
  #header-wrap #mobile-drawer .nav-social .links-social ul li a:focus-visible .icon {
    color: #fff !important;
    transform: none !important;
  }

  #header-wrap #mobile-drawer .nav-social .links-social ul li:nth-child(1) a:hover {
    background: rgba(24, 119, 242, 0.35) !important;
    border-color: rgba(88, 144, 255, 0.55) !important;
  }

  #header-wrap #mobile-drawer .nav-social .links-social ul li:nth-child(2) a:hover {
    background: rgba(10, 102, 194, 0.4) !important;
    border-color: rgba(90, 163, 255, 0.5) !important;
  }

  #header-wrap #mobile-drawer .nav-social .links-social ul li:nth-child(3) a:hover {
    background: linear-gradient(
      145deg,
      rgba(225, 48, 108, 0.45) 0%,
      rgba(253, 203, 92, 0.25) 100%
    ) !important;
    border-color: rgba(255, 120, 180, 0.45) !important;
  }

  #header-wrap #mobile-drawer .nav-contact a {
    font-size: 15px;
    word-break: break-word;
  }
}

/* Full-screen loader must not steal taps/clicks (fixes menu “stuck” feeling on mobile) */
.page-loader {
  pointer-events: none !important;
}

/* Lock scroll when mobile menu is open (class toggled in footer.php) */
body.drawer-open {
  overflow: hidden;
  touch-action: none;
}

@media (min-width: 769px) {
  #header-wrap .nav-toggle {
    display: none !important;
  }

  body.drawer-open {
    overflow: visible;
    touch-action: auto;
  }
}

/* Logo: keep visible in flex row; min.css .nav__list width:28% can collapse if image fails */
#header-wrap .nav-container {
  align-items: center;
}

#header-wrap .nav__list {
  flex-shrink: 0;
  display: flex !important;
  align-items: center;
  list-style: none !important;
}

#header-wrap .nav__links {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

#header-wrap .nav__links img {
  display: block;
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 48px;
  object-fit: contain;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Desktop header: full-width bar + single-line nav (min.css uses fixed % widths + flex-wrap) */
@media (min-width: 769px) {
  #header-wrap > .container {
    max-width: none !important;
    width: 100%;
    box-sizing: border-box;
    padding-left: clamp(16px, 3vw, 56px);
    padding-right: clamp(16px, 3vw, 56px);
  }

  #header-wrap .wrapper-nav {
    width: 100%;
    max-width: 100%;
  }

  #header-wrap .nav-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: clamp(6px, 1vw, 18px);
    width: 100%;
  }

  #header-wrap .nav__list {
    width: auto !important;
    max-width: none;
    flex: 0 0 auto;
  }

  #header-wrap ul.nav {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0;
    max-width: none !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    gap: clamp(6px, 1.2vw, 22px) !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  #header-wrap ul.nav li {
    flex-shrink: 0;
  }

  #header-wrap ul.nav li a {
    white-space: nowrap;
    font-size: clamp(12px, 1.15vw, 15px) !important;
    letter-spacing: 0.07em !important;
  }

  #header-wrap .nav-button {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    margin-top: 0 !important;
    flex-shrink: 0;
  }
}

/*
  Contact forms — site-wide revamp (section.home-form):
  - thank_you.php: lead contact grid
  - submitted.php: career form + file upload
*/
section.home-form .row {
  flex-direction: column;
  align-items: stretch;
  gap: clamp(28px, 4vw, 44px);
  margin-left: 0;
  margin-right: 0;
}

section.home-form {
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);
  margin-bottom: 0 !important;
}

section.home-form .form-head,
section.home-form .contact-form {
  width: 100%;
  max-width: 100%;
  flex: 0 0 auto;
  padding-left: 0;
  padding-right: 0;
}

section.home-form .form-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

section.home-form .form-head > p:first-child {
  color: #fce383;
  font-size: 13px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

section.home-form .form-head h2 {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
}

section.home-form .contact-form {
  list-style: none;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(22px, 3.5vw, 36px) clamp(18px, 3vw, 32px);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(28, 28, 28, 0.92) 0%, rgba(14, 14, 14, 0.97) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
}

section.home-form .contact-form input,
section.home-form .contact-form select,
section.home-form .contact-form textarea {
  visibility: visible;
  opacity: 1;
  box-sizing: border-box;
}

section.home-form form#my-form[action="thank_you.php"],
section.home-form form#my-form[action="submitted.php"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(16px, 2.5vw, 22px);
  row-gap: clamp(14px, 2.2vw, 18px);
  width: 100%;
  max-width: none;
  margin: 0;
  align-items: stretch;
  list-style: none;
}

section.home-form form#my-form[action="thank_you.php"] > select#services,
section.home-form form#my-form[action="thank_you.php"] > textarea,
section.home-form form#my-form[action="thank_you.php"] > .form-bottom,
section.home-form form#my-form[action="submitted.php"] > input[name="name"],
section.home-form form#my-form[action="submitted.php"] > .career-form-upload,
section.home-form form#my-form[action="submitted.php"] > .form-bottom {
  grid-column: 1 / -1;
}

section.home-form form#my-form[action="thank_you.php"] input,
section.home-form form#my-form[action="thank_you.php"] select,
section.home-form form#my-form[action="thank_you.php"] textarea,
section.home-form form#my-form[action="submitted.php"] input:not([type="file"]),
section.home-form form#my-form[action="submitted.php"] select {
  display: block;
  width: 100% !important;
  max-width: 100%;
  margin: 0;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background-color: rgba(10, 10, 10, 0.85) !important;
  background-clip: padding-box;
  color: #f2f2f2 !important;
  font-size: 15px;
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.4;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

section.home-form form#my-form[action="thank_you.php"] input:hover,
section.home-form form#my-form[action="thank_you.php"] select:hover,
section.home-form form#my-form[action="thank_you.php"] textarea:hover,
section.home-form form#my-form[action="submitted.php"] input:not([type="file"]):hover,
section.home-form form#my-form[action="submitted.php"] select:hover {
  border-color: rgba(252, 227, 131, 0.22) !important;
}

section.home-form form#my-form[action="thank_you.php"] input:focus-visible,
section.home-form form#my-form[action="thank_you.php"] select:focus-visible,
section.home-form form#my-form[action="thank_you.php"] textarea:focus-visible,
section.home-form form#my-form[action="submitted.php"] input:not([type="file"]):focus-visible,
section.home-form form#my-form[action="submitted.php"] select:focus-visible {
  outline: none;
  border-color: rgba(252, 227, 131, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(252, 227, 131, 0.18);
  background-color: rgba(12, 12, 12, 0.95) !important;
}

section.home-form form#my-form[action="thank_you.php"] input::placeholder,
section.home-form form#my-form[action="thank_you.php"] textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
  opacity: 1;
}

section.home-form form#my-form[action="submitted.php"] .career-form-upload {
  padding: 0;
  margin: 0;
}

section.home-form form#my-form[action="submitted.php"] .career-form-upload label {
  display: block;
  color: #fce383;
  font-size: 12px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

section.home-form form#my-form[action="submitted.php"] input[type="file"] {
  display: block;
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 52px;
  padding: 12px 16px;
  background-color: rgba(10, 10, 10, 0.85) !important;
  color: rgba(255, 255, 255, 0.85);
  border: 1px dashed rgba(252, 227, 131, 0.4) !important;
  border-radius: 12px !important;
  cursor: pointer;
  font-size: 14px;
  font-family: "Manrope", system-ui, sans-serif;
}

section.home-form form#my-form[action="thank_you.php"] textarea#contact-textarea {
  min-height: 168px;
  padding: 16px 18px;
  line-height: 1.55;
  resize: vertical;
}

section.home-form form#my-form[action="thank_you.php"] select#services,
section.home-form form#my-form[action="submitted.php"] select#services {
  color: #e8e8e8 !important;
  cursor: pointer;
  padding-right: 56px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath stroke='%23fce383' stroke-width='1.6' stroke-linecap='round' d='M1 2l6 5 6-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 9px;
}

section.home-form form#my-form[action="thank_you.php"] select#services option,
section.home-form form#my-form[action="submitted.php"] select#services option {
  color: #111;
  background: #fff;
}

section.home-form form#my-form[action="thank_you.php"] .form-bottom,
section.home-form form#my-form[action="submitted.php"] .form-bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: clamp(6px, 1.5vw, 12px);
  padding-top: clamp(14px, 2vw, 20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

section.home-form form#my-form[action="thank_you.php"] .form-bottom {
  justify-content: space-between;
}

section.home-form form#my-form[action="submitted.php"] .form-bottom {
  justify-content: flex-end;
}

section.home-form form#my-form[action="thank_you.php"] .form-bottom .bottom-1 {
  flex: 1 1 240px;
  min-width: 0;
  width: auto !important;
  margin: 0;
}

section.home-form form#my-form[action="thank_you.php"] .form-bottom .bottom-1 p {
  margin: 0;
  line-height: 1.55;
  font-size: clamp(0.78rem, 1.6vw, 0.88rem);
  color: rgba(255, 255, 255, 0.78);
  font-family: "Manrope", system-ui, sans-serif;
}

section.home-form form#my-form[action="thank_you.php"] .form-bottom .bottom-1 a {
  color: #fce383;
  text-decoration: underline;
  text-underline-offset: 3px;
}

section.home-form form#my-form[action="thank_you.php"] .form-bottom .bottom-1 a:hover {
  color: #fff6d1;
}

section.home-form form#my-form[action="thank_you.php"] .form-bottom .bottom-2,
section.home-form form#my-form[action="submitted.php"] .form-bottom .bottom-2 {
  flex: 0 0 auto;
  width: auto !important;
  margin: 0;
}

section.home-form form#my-form[action="thank_you.php"] .form-bottom .bottom-2 button#form-button,
section.home-form form#my-form[action="submitted.php"] .form-bottom .bottom-2 button#form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid rgba(252, 227, 131, 0.55);
  background: linear-gradient(145deg, #fff6d1 0%, #fce383 48%, #e8c85a 100%);
  color: #0a0a0a !important;
  font-size: 12px;
  font-weight: 700;
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 10px 28px rgba(0, 0, 0, 0.35),
    0 4px 20px rgba(252, 227, 131, 0.18);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

section.home-form form#my-form[action="thank_you.php"] .form-bottom .bottom-2 button#form-button:hover,
section.home-form form#my-form[action="submitted.php"] .form-bottom .bottom-2 button#form-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 14px 36px rgba(0, 0, 0, 0.42),
    0 6px 26px rgba(252, 227, 131, 0.28);
}

section.home-form form#my-form[action="thank_you.php"] .form-bottom .bottom-2 button#form-button:focus-visible,
section.home-form form#my-form[action="submitted.php"] .form-bottom .bottom-2 button#form-button:focus-visible {
  outline: 2px solid #fce383;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  section.home-form form#my-form[action="thank_you.php"],
  section.home-form form#my-form[action="submitted.php"] {
    grid-template-columns: 1fr;
    row-gap: clamp(12px, 2.5vw, 16px);
  }

  section.home-form form#my-form[action="thank_you.php"] > select#services,
  section.home-form form#my-form[action="thank_you.php"] > textarea,
  section.home-form form#my-form[action="thank_you.php"] > .form-bottom,
  section.home-form form#my-form[action="submitted.php"] > input[name="name"],
  section.home-form form#my-form[action="submitted.php"] > .career-form-upload,
  section.home-form form#my-form[action="submitted.php"] > .form-bottom {
    grid-column: 1;
  }

  section.home-form form#my-form[action="thank_you.php"] .form-bottom,
  section.home-form form#my-form[action="submitted.php"] .form-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  section.home-form form#my-form[action="thank_you.php"] .form-bottom .bottom-2,
  section.home-form form#my-form[action="submitted.php"] .form-bottom .bottom-2 {
    width: 100% !important;
  }

  section.home-form form#my-form[action="thank_you.php"] .form-bottom .bottom-2 button#form-button,
  section.home-form form#my-form[action="submitted.php"] .form-bottom .bottom-2 button#form-button {
    width: 100%;
    max-width: none;
  }

  section.home-form form#my-form[action="thank_you.php"] input,
  section.home-form form#my-form[action="thank_you.php"] select,
  section.home-form form#my-form[action="thank_you.php"] textarea,
  section.home-form form#my-form[action="submitted.php"] input:not([type="file"]),
  section.home-form form#my-form[action="submitted.php"] select,
  section.home-form form#my-form[action="submitted.php"] input[type="file"] {
    font-size: 16px !important;
  }

  /* Compact mobile forms: less outer padding, tighter field rhythm */
  section.home-form {
    padding: 28px 0 36px;
  }

  section.home-form .row {
    gap: 18px;
  }

  section.home-form .form-head > p:first-child {
    margin-bottom: 8px;
  }

  section.home-form .contact-form {
    padding: 16px 14px;
  }

  section.home-form form#my-form[action="thank_you.php"],
  section.home-form form#my-form[action="submitted.php"] {
    row-gap: 10px;
    column-gap: 12px;
  }

  section.home-form form#my-form[action="thank_you.php"] input,
  section.home-form form#my-form[action="thank_you.php"] select,
  section.home-form form#my-form[action="thank_you.php"] textarea,
  section.home-form form#my-form[action="submitted.php"] input:not([type="file"]),
  section.home-form form#my-form[action="submitted.php"] select {
    min-height: 48px;
    padding: 11px 14px;
  }

  section.home-form form#my-form[action="thank_you.php"] textarea#contact-textarea {
    min-height: 96px;
    padding: 12px 14px;
  }

  section.home-form form#my-form[action="submitted.php"] input[type="file"] {
    min-height: 48px;
    padding: 10px 14px;
  }

  /* Prevent flex-grow from stretching privacy row and pushing the button down */
  section.home-form form#my-form[action="thank_you.php"] .form-bottom .bottom-1 {
    flex: 0 0 auto;
  }

  section.home-form form#my-form[action="thank_you.php"] .form-bottom,
  section.home-form form#my-form[action="submitted.php"] .form-bottom {
    margin-top: 2px;
    padding-top: 10px;
    gap: 10px;
  }

  section.home-form form#my-form[action="thank_you.php"] .form-bottom .bottom-2 button#form-button,
  section.home-form form#my-form[action="submitted.php"] .form-bottom .bottom-2 button#form-button {
    min-height: 48px;
    padding: 12px 22px;
  }

  section.home-form form#my-form {
    --awf-control-min-height: 48px;
  }
}

@media (max-width: 768px) {
  #exampleModal .modal-body {
    padding: 1.15rem 1rem 1.25rem !important;
  }

  #exampleModal .form_modal {
    margin-bottom: 0.75rem !important;
  }

  #exampleModal .form_modal h3 {
    margin: 6px 0 6px !important;
  }

  #exampleModal .form_modal p br {
    display: none;
  }

  #exampleModal #modal-contact-form {
    gap: 9px;
  }

  #exampleModal #modal-contact-form .form-row {
    gap: 8px;
  }

  #exampleModal #modal-contact-form .form-row input {
    min-height: 48px !important;
    padding: 11px 14px !important;
  }

  #exampleModal #modal-contact-form .custom-select {
    min-height: 48px;
  }

  #exampleModal #modal-contact-form .custom-select select {
    min-height: 48px !important;
    padding: 11px 38px 11px 14px !important;
  }

  #exampleModal #modal-contact-form .form-row textarea {
    min-height: 88px !important;
    padding: 12px 14px !important;
  }

  #exampleModal #modal-contact-form button[type="submit"] {
    min-height: 48px !important;
    padding: 12px 20px !important;
    margin-top: 2px !important;
  }

  #exampleModal #modal-contact-form {
    --awf-control-min-height: 48px;
  }
}

/* —— Header modal contact form (#exampleModal) —— aligned with home form —— */
#exampleModal .modal-content {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, #1f1f1f 0%, #141414 100%) !important;
}

#exampleModal .modal-body {
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2.25rem) !important;
  background: transparent !important;
}

#exampleModal .form_modal {
  text-align: center;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

#exampleModal .form_modal strong {
  color: #fce383;
  letter-spacing: 0.28em;
  font-size: 11px !important;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

#exampleModal .form_modal h3 {
  font-size: clamp(1.65rem, 4.5vw, 2.35rem) !important;
  line-height: 1.15 !important;
  margin: 12px 0 10px !important;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
}

#exampleModal .form_modal h3 span {
  color: #fce383 !important;
}

#exampleModal .form_modal p {
  font-size: clamp(0.9rem, 2vw, 1rem) !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.84) !important;
  margin: 0 !important;
}

#exampleModal #modal-contact-form {
  text-align: left !important;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
  max-width: 42rem;
  margin: 0 auto;
}

#exampleModal #modal-contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 14px);
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

#exampleModal #modal-contact-form .form-row:has(> textarea:only-child),
#exampleModal #modal-contact-form .form-row:has(> input:only-child) {
  grid-template-columns: 1fr;
}

#exampleModal #modal-contact-form .form-row input {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 50px;
  margin: 0 !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(10, 10, 10, 0.88) !important;
  color: #f2f2f2 !important;
  font-size: 15px !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  line-height: 1.4 !important;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#exampleModal #modal-contact-form .form-row input::placeholder {
  color: rgba(255, 255, 255, 0.62) !important;
}

#exampleModal #modal-contact-form .form-row input:focus-visible {
  outline: none !important;
  border-color: rgba(252, 227, 131, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(252, 227, 131, 0.18);
}

#exampleModal #modal-contact-form .custom-select {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 50px;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  display: block;
}

#exampleModal #modal-contact-form .custom-select select {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 50px;
  margin: 0 !important;
  padding: 14px 40px 14px 16px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(10, 10, 10, 0.88) !important;
  color: #e8e8e8 !important;
  font-size: 15px !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  cursor: pointer;
  box-sizing: border-box;
}

#exampleModal #modal-contact-form .custom-select select:focus-visible {
  outline: none !important;
  border-color: rgba(252, 227, 131, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(252, 227, 131, 0.18);
}

#exampleModal #modal-contact-form .custom-select::after {
  right: 14px;
  opacity: 0.85;
}

#exampleModal #modal-contact-form .form-row textarea {
  width: 100% !important;
  max-width: none !important;
  min-height: 140px;
  height: auto !important;
  margin: 0 !important;
  padding: 16px 16px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(10, 10, 10, 0.88) !important;
  color: #f2f2f2 !important;
  font-size: 15px !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  line-height: 1.5 !important;
  resize: vertical;
  box-sizing: border-box;
}

#exampleModal #modal-contact-form .form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.62) !important;
}

#exampleModal #modal-contact-form #recaptcha2 {
  margin-top: 4px;
}

#exampleModal #modal-contact-form button[type="submit"] {
  width: 100% !important;
  max-width: none !important;
  min-height: 52px;
  height: auto !important;
  margin-top: 4px !important;
  padding: 14px 24px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(252, 227, 131, 0.55) !important;
  background: linear-gradient(145deg, #fff6d1 0%, #fce383 48%, #e8c85a 100%) !important;
  color: #0a0a0a !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 10px 28px rgba(0, 0, 0, 0.35),
    0 4px 20px rgba(252, 227, 131, 0.18);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

#exampleModal #modal-contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 14px 36px rgba(0, 0, 0, 0.42),
    0 6px 26px rgba(252, 227, 131, 0.28);
}

@media (max-width: 576px) {
  #exampleModal #modal-contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Unified form skin: apply same control styling across site forms and modal */
section.home-form form#my-form,
#exampleModal #modal-contact-form {
  --awf-control-min-height: 52px;
  --awf-control-radius: 12px;
  --awf-control-border: 1px solid rgba(255, 255, 255, 0.12);
  --awf-control-bg: rgba(10, 10, 10, 0.88);
  --awf-control-color: #f2f2f2;
  --awf-control-placeholder: rgba(255, 255, 255, 0.62);
  --awf-focus-border: rgba(252, 227, 131, 0.55);
  --awf-focus-ring: 0 0 0 3px rgba(252, 227, 131, 0.18);
}

section.home-form form#my-form :is(input:not([type="file"]), select, textarea),
#exampleModal #modal-contact-form :is(input, .custom-select select, textarea) {
  width: 100% !important;
  max-width: 100%;
  min-height: var(--awf-control-min-height);
  border-radius: var(--awf-control-radius) !important;
  border: var(--awf-control-border) !important;
  background: var(--awf-control-bg) !important;
  color: var(--awf-control-color) !important;
  font-size: 15px;
  font-family: "Manrope", system-ui, sans-serif;
  box-sizing: border-box;
}

section.home-form form#my-form :is(input:not([type="file"]), textarea)::placeholder,
#exampleModal #modal-contact-form :is(input, textarea)::placeholder {
  color: var(--awf-control-placeholder) !important;
  opacity: 1;
}

section.home-form form#my-form :is(input:not([type="file"]), select, textarea):focus-visible,
#exampleModal #modal-contact-form :is(input, .custom-select select, textarea):focus-visible {
  outline: none !important;
  border-color: var(--awf-focus-border) !important;
  box-shadow: var(--awf-focus-ring);
}

section.home-form form#my-form select#services,
#exampleModal #modal-contact-form .custom-select select {
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath stroke='%23fce383' stroke-width='1.6' stroke-linecap='round' d='M1 2l6 5 6-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 9px;
}

section.home-form form#my-form :is(.form-bottom .bottom-2 button#form-button, button[type="submit"]),
#exampleModal #modal-contact-form button[type="submit"] {
  min-height: var(--awf-control-min-height);
  border-radius: 999px !important;
  border: 1px solid rgba(252, 227, 131, 0.55) !important;
  background: linear-gradient(145deg, #fff6d1 0%, #fce383 48%, #e8c85a 100%) !important;
  color: #0a0a0a !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

section.home-form form#my-form :is(.form-bottom .bottom-2 button#form-button, button[type="submit"]):hover,
#exampleModal #modal-contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

/* min.css hides these; show when the section exists (homepage / blogs).
   .logos-slides omitted: duplicate owl row removed from index — marquee is the single client strip. */
#testimonials,
#team,
#team-main,
section.home-blogs {
  display: block !important;
}

#team {
  margin-top: 70px;
}

.map_email a,
.map_phone a {
  color: inherit;
  text-decoration: none;
}

.map_email a:hover,
.map_phone a:hover {
  text-decoration: underline;
}

/*
 * Client logos: same visual slot for every mark (min.css used 200px + white pill).
 * — .logo-marquee-cell wraps (homepage) OR direct <img> children (city pages).
 */
#logo-slider .marquee__content,
#logo-slider-2 .marquee__content {
  font-size: 0 !important;
  line-height: 0 !important;
}

#logo-slider .marquee__content .logo-marquee-cell,
#logo-slider-2 .marquee__content .logo-marquee-cell {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: var(--logo-slot-w, 200px);
  height: var(--logo-slot-h, 88px);
  margin: 0 12px !important;
  vertical-align: middle !important;
  flex-shrink: 0;
  border-radius: 8px;
  background: transparent;
  border: none;
}

#logo-slider .marquee__content .logo-marquee-cell img,
#logo-slider-2 .marquee__content .logo-marquee-cell img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: calc(var(--logo-slot-w, 200px) - 24px) !important;
  max-height: calc(var(--logo-slot-h, 88px) - 18px) !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  opacity: 0.94;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#logo-slider .marquee__content .client-logo-mark,
#logo-slider-2 .marquee__content .client-logo-mark {
  background: transparent !important;
}

#logo-slider .marquee__content .logo-marquee-cell:hover img,
#logo-slider-2 .marquee__content .logo-marquee-cell:hover img {
  opacity: 1;
}

/* City pages & any marquee without wrapper: identical fixed slot on the <img> */
#logo-slider .marquee__content > img,
#logo-slider-2 .marquee__content > img {
  display: inline-flex !important;
  box-sizing: border-box !important;
  width: var(--logo-slot-w, 200px) !important;
  height: var(--logo-slot-h, 88px) !important;
  max-width: var(--logo-slot-w, 200px) !important;
  max-height: var(--logo-slot-h, 88px) !important;
  object-fit: contain !important;
  object-position: center !important;
  vertical-align: middle !important;
  margin: 0 12px !important;
  padding: 8px 12px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 8px !important;
  opacity: 0.94;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}

#logo-slider .marquee__content img.logo-on-dark,
#logo-slider-2 .marquee__content img.logo-on-dark {
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

#logo-slider,
#logo-slider-2 {
  --logo-slot-w: 200px;
  --logo-slot-h: 88px;
  margin-bottom: clamp(32px, 5vw, 52px) !important;
  gap: 24px !important;
}

#client-logos .logos-head {
  margin-bottom: clamp(8px, 2vw, 16px);
}

/* —— Homepage / hub “See what sets us apart” (replaces owl carousel) —— */
.home-portfolio-revamp {
  padding: clamp(48px, 8vw, 88px) 0 clamp(40px, 6vw, 72px);
  position: relative;
}

.portfolio-revamp-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 48px);
}

.portfolio-revamp-eyebrow {
  color: #fce383;
  font-size: 13px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.portfolio-revamp-title {
  font-size: clamp(1.85rem, 5vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}

.portfolio-revamp-lead {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.55;
  margin: 0;
}

.portfolio-revamp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

@media (max-width: 768px) {
  .portfolio-revamp-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-revamp-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(28, 28, 28, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.portfolio-revamp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
  border-color: rgba(252, 227, 131, 0.22);
}

.portfolio-revamp-card__media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
}

.portfolio-revamp-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0.85;
}

.portfolio-revamp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.portfolio-revamp-card:hover .portfolio-revamp-card__media img {
  transform: scale(1.04);
}

.portfolio-revamp-card__body {
  padding: clamp(18px, 3vw, 24px) clamp(18px, 3vw, 26px) clamp(20px, 3vw, 26px);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portfolio-revamp-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: rgba(252, 227, 131, 0.95);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(252, 227, 131, 0.12);
  border: 1px solid rgba(252, 227, 131, 0.25);
}

.portfolio-revamp-card__name {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  line-height: 1.25;
  color: #fff;
  margin: 0;
  font-weight: 600;
}

.portfolio-revamp-card__meta {
  font-size: clamp(0.88rem, 1.9vw, 0.98rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 4px;
  flex: 1;
}

.portfolio-revamp-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-family: "Manrope", system-ui, sans-serif;
}

.portfolio-revamp-card__link:hover {
  color: #fce383;
}

.portfolio-revamp-card__link i {
  font-size: 0.75em;
  transition: transform 0.2s ease;
}

.portfolio-revamp-card__link:hover i {
  transform: translateX(4px);
}

.portfolio-revamp-cta {
  margin-top: clamp(36px, 5vw, 52px);
  display: flex;
  justify-content: center;
  text-align: center;
}

/* Primary pill CTA — homepage + shared across About / team / blog / contact / case-study read more */
.portfolio-revamp-cta__btn,
.about-section-button a,
section.home-blogs a.blog-button,
button#readMoreBtn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 32px 15px 36px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  font-size: clamp(11px, 1.5vw, 12px) !important;
  font-weight: 700 !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  color: #0a0a0a !important;
  background: linear-gradient(145deg, #fff6d1 0%, #fce383 48%, #e8c85a 100%) !important;
  border: 1px solid rgba(252, 227, 131, 0.55) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 10px 28px rgba(0, 0, 0, 0.35),
    0 4px 20px rgba(252, 227, 131, 0.18) !important;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: 48px;
  box-sizing: border-box;
  line-height: 1.2 !important;
  -webkit-text-fill-color: #0a0a0a !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
  cursor: pointer;
  vertical-align: middle;
}

.about-section-button a img {
  display: none !important;
}

.about-section-button a::after {
  content: "\2192";
  font-size: 1.05em;
  font-weight: 700;
  line-height: 1;
  margin-left: 4px;
  transition: transform 0.22s ease;
}

.about-section-button a:hover::after {
  transform: translateX(4px);
}

#header-wrap .nav-button .about-section-button a {
  padding: 12px 24px !important;
  min-height: 0 !important;
  font-size: clamp(11px, 1.2vw, 13px) !important;
  letter-spacing: 0.1em !important;
  gap: 8px !important;
}

@media (max-width: 768px) {
  #header-wrap .nav-button .about-section-button a {
    padding: 10px 18px !important;
    font-size: 11px !important;
  }
}

.portfolio-revamp-cta__btn i,
section.home-blogs a.blog-button i {
  font-size: 0.95em;
  opacity: 0.9;
  transition: transform 0.22s ease;
}

.portfolio-revamp-cta__btn:hover,
.about-section-button a:hover,
section.home-blogs a.blog-button:hover,
button#readMoreBtn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 14px 36px rgba(0, 0, 0, 0.42),
    0 6px 26px rgba(252, 227, 131, 0.28) !important;
  color: #050505 !important;
  -webkit-text-fill-color: #050505 !important;
}

.portfolio-revamp-cta__btn:hover i,
section.home-blogs a.blog-button:hover i {
  transform: translateX(4px);
}

.portfolio-revamp-cta__btn:focus-visible,
.about-section-button a:focus-visible,
section.home-blogs a.blog-button:focus-visible,
button#readMoreBtn:focus-visible {
  outline: 2px solid #fce383;
  outline-offset: 4px;
}

/* Legacy owl carousel (other templates) */
section.portfolio-carousel-home {
  padding-bottom: clamp(28px, 4vw, 48px);
}

section.portfolio-carousel-home .about-section-button {
  margin-top: clamp(24px, 3.5vw, 40px) !important;
}

#portfolio-carousel-home .item img {
  width: 100% !important;
  max-height: min(380px, 48vh) !important;
  object-fit: cover;
  border-radius: 14px;
}


/* —— Testimonials (“Results That Speak Louder”) — card grid, aligned with portfolio revamp —— */
#testimonials.home-testimonials-revamp {
  padding: clamp(48px, 8vw, 88px) 0 clamp(40px, 6vw, 72px) !important;
}

.testimonials-revamp-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 48px);
}

.testimonials-revamp-eyebrow {
  color: #fce383;
  font-size: 13px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.testimonials-revamp-title {
  font-size: clamp(1.85rem, 5vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}

.testimonials-revamp-lead {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.55;
  margin: 0;
}

.testimonials-revamp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .testimonials-revamp-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  margin: 0;
}

.testimonial-card__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3.5vw, 30px) clamp(20px, 3vw, 28px);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(28, 28, 28, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.testimonial-card:hover .testimonial-card__inner {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
  border-color: rgba(252, 227, 131, 0.22);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(16px, 2.5vw, 22px);
}

.testimonial-card__avatar {
  width: clamp(64px, 14vw, 80px);
  height: clamp(64px, 14vw, 80px);
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(252, 227, 131, 0.4);
  flex-shrink: 0;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: #fce383;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
}

.testimonial-card__quote {
  margin: 0 0 auto;
  padding: 0;
  border: none;
  flex: 1;
}

.testimonial-card__quote p {
  margin: 0;
  font-size: clamp(0.95rem, 2.1vw, 1.08rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Manrope", system-ui, sans-serif;
}

.testimonial-card__quote p::before {
  content: "\201C";
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1;
  color: rgba(252, 227, 131, 0.35);
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
}

.testimonial-card__author {
  margin-top: clamp(18px, 3vw, 24px);
  padding-top: clamp(16px, 2.5vw, 20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__name {
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  font-weight: 600;
  color: #fff;
  font-family: "Manrope", system-ui, sans-serif;
}

.testimonial-card__role {
  font-size: clamp(0.78rem, 1.7vw, 0.9rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.testimonial-card__avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 14vw, 80px);
  height: clamp(64px, 14vw, 80px);
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid rgba(252, 227, 131, 0.4);
  background: linear-gradient(145deg, rgba(252, 227, 131, 0.18) 0%, rgba(90, 243, 162, 0.1) 100%);
  color: rgba(252, 227, 131, 0.9);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.testimonial-card__avatar--fallback i {
  opacity: 0.95;
}

/* —— Careers page: job card body text (HR plain text is in a div, not <p>; inherits dark default otherwise) —— */
section.career-positions .career-box__body {
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

section.career-positions .career-box__body a {
  color: #fce383;
  text-decoration: underline;
  text-underline-offset: 2px;
}

section.career-positions .career-box__body a:hover {
  color: #fff6d1;
}

/* —— Careers: open roles (fix Bootstrap dark text on dark bg + layout) —— */
section.career-positions--roles {
  color: rgba(255, 255, 255, 0.92);
}

section.career-positions--roles .career-roles-intro {
  max-width: 40rem;
  margin: 0 auto clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
  padding: 0 clamp(8px, 2vw, 12px);
}

section.career-positions--roles .career-roles-eyebrow {
  color: #fce383;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

section.career-positions--roles .career-roles-title {
  color: #fff !important;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.65rem, 4.2vw, 2.35rem) !important;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

section.career-positions--roles .career-roles-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
  line-height: 1.55;
  margin-bottom: 0;
}

section.career-positions--roles .career-job-list.careers--dynamic {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: clamp(1.125rem, 3vw, 1.625rem);
  width: 100%;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(8px, 2vw, 12px);
  box-sizing: border-box;
}

@media (min-width: 900px) {
  section.career-positions--roles .career-job-list.careers--dynamic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 72rem;
  }
}

section.career-positions--roles .career-job-card.career-box {
  width: 100% !important;
  max-width: none;
  margin: 0;
  padding: clamp(1.125rem, 2.8vw, 1.625rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

section.career-positions--roles .career-box--empty {
  grid-column: 1 / -1;
  max-width: 36rem;
  margin-left: auto !important;
  margin-right: auto !important;
}

section.career-positions--roles .career-box--empty > p:not(.career-id) {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 1rem !important;
  line-height: 1.6;
}

section.career-positions--roles .career-job-card__head .career-id {
  display: inline-block;
  max-width: 100%;
  width: auto !important;
  box-sizing: border-box;
  font-size: 0.6875rem !important;
  line-height: 1.35;
  padding: 0.3rem 0.6rem !important;
  word-break: break-word;
  overflow-wrap: anywhere;
  margin-bottom: 0.35rem;
}

section.career-positions--roles .career-job-card__head h2 {
  color: #fff !important;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem) !important;
  margin: 0;
  line-height: 1.25;
}

section.career-positions--roles ul.career-job-meta.career-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}

section.career-positions--roles .career-job-meta__item.detail {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
}

section.career-positions--roles .career-job-meta__text {
  color: rgba(255, 255, 255, 0.94) !important;
  font-size: 0.8125rem !important;
  line-height: 1.4;
  font-family: "Manrope", system-ui, sans-serif;
}

section.career-positions--roles .career-job-meta__icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.12em;
  background: url("../images/detail-1.png") center / contain no-repeat;
  opacity: 0.95;
}

section.career-positions--roles .career-job-cta {
  margin-top: 0.25rem;
}

section.career-positions--roles .career-job-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 480px) {
  section.career-positions--roles .career-job-cta a {
    width: auto;
  }
}

/* —— Careers page: mobile-friendly roles + core values —— */
@media (max-width: 768px) {
  section.career-positions {
    padding-left: clamp(10px, 3vw, 16px);
    padding-right: clamp(10px, 3vw, 16px);
    box-sizing: border-box;
  }

  section.career-positions > .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }

  section.career-positions .careers--dynamic {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  section.career-positions .career-box {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: clamp(18px, 4vw, 26px);
  }

  section.career-positions .career-box h2 {
    font-size: clamp(1.3rem, 5vw, 1.75rem);
    line-height: 1.2;
    word-wrap: break-word;
  }

  section.career-positions .career-box__body {
    font-size: 0.95rem;
    line-height: 1.55;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  section.career-positions .career-box__body br {
    line-height: inherit;
  }

  section.career-positions .career-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: flex-start;
  }

  section.career-positions .career-details .detail {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
  }

  section.career-positions .career-details .detail p {
    word-wrap: break-word;
  }

  section.seo-head .container {
    padding-left: clamp(12px, 3.5vw, 18px);
    padding-right: clamp(12px, 3.5vw, 18px);
    box-sizing: border-box;
  }

  section.seo-head .seo-head h2 {
    font-size: clamp(1.45rem, 6vw, 2.2rem);
    line-height: 1.15;
  }

  div.flex-container.container {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: clamp(16px, 4vw, 22px);
    padding-left: clamp(12px, 4vw, 18px);
    padding-right: clamp(12px, 4vw, 18px);
    box-sizing: border-box;
  }

  div.flex-container.container .core-box {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
  }

  section.career-bottom .role-text {
    padding-left: clamp(10px, 3vw, 16px);
    padding-right: clamp(10px, 3vw, 16px);
    box-sizing: border-box;
  }

  section.career-bottom .role-text h3 {
    font-size: clamp(1.05rem, 4vw, 1.4rem);
    line-height: 1.35;
  }
}

/* About page — top hero (min.css targets .about-page-head h2; markup uses h1) */
.about-head {
  padding: clamp(2rem, 6vw, 5.5rem) 0 clamp(1.5rem, 4vw, 3rem);
}

.about-page-head {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(8px, 2vw, 16px);
  padding-right: clamp(8px, 2vw, 16px);
}

.about-page-head .eyebrow,
.about-page-head p.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  opacity: 0.9;
  color: #fce383 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  margin-bottom: 0.75rem;
}

.about-page-head h1 {
  font-size: clamp(2rem, 5.5vw, 3.35rem);
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
  font-family: "Manrope", system-ui, sans-serif;
  margin: 0;
  letter-spacing: -0.02em;
}

.about-head-images {
  gap: clamp(12px, 3vw, 28px);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: clamp(1.25rem, 4vw, 2.5rem) 0;
}

.about-head-images img {
  max-width: min(32%, 240px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

@media (max-width: 576px) {
  .about-head-images img {
    max-width: min(100%, 280px);
  }
}

.about-page-text {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.about-page-text p {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72) !important;
  font-family: "Manrope", system-ui, sans-serif;
}

.about-journey {
  margin: clamp(3rem, 8vw, 5rem) 0;
}

.about-journey .journey-head h3 {
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  line-height: 1.2;
  font-family: "Manrope", system-ui, sans-serif;
}

.about-journey .journey-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Chapter 3–4: About + service page copy blocks */
.page-copy-section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.page-copy-section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.92);
}

.page-copy-section h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  font-weight: 700;
  font-family: "Manrope", system-ui, sans-serif;
  color: #fff;
}

.page-copy-section .lead {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 52rem;
}

.stats-strip-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  text-align: center;
}

.stats-strip-about .stat-box h3 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.25rem;
  font-weight: 800;
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: -0.02em;
  color: #fce383 !important;
  -webkit-text-fill-color: #fce383 !important;
  background: none !important;
}

.stats-strip-about .stat-box p {
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.values-grid-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: 2rem;
}

.values-grid-about .value-card {
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(252, 227, 131, 0.15);
}

.values-grid-about .value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #fff;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.values-grid-about .value-card p {
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.team-bios-about {
  margin-top: 2rem;
}

.team-bios-about .bio-card {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team-bios-about .bio-card:last-child {
  border-bottom: none;
}

.team-bios-about .bio-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #fff;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.team-bios-about .bio-card p {
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.team-bios-about .bio-card h3 a {
  color: inherit;
  text-decoration: none;
}

.team-bios-about .bio-card h3 a:hover {
  color: #fce383;
}

.team-bios-about .bio-card--with-avatar {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.team-bios-about .team-bio-avatar-wrap {
  flex-shrink: 0;
}

.team-bios-about .team-bio-avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(252, 227, 131, 0.35);
  display: block;
  background: rgba(255, 255, 255, 0.06);
}

.team-bios-about .team-bio-text {
  flex: 1;
  min-width: 0;
}

.team-bios-about .bio-card--with-avatar h3 {
  margin-top: 0;
}

@media (max-width: 520px) {
  .team-bios-about .bio-card--with-avatar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-bios-about .team-bio-text {
    text-align: center;
  }
}

.faq-list .faq-item {
  margin-bottom: 1.5rem;
}

.faq-list .faq-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
}

.faq-list .faq-item p {
  margin: 0;
  color: rgba(228, 228, 234, 0.94);
  font-size: 1.05rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .seo-sec-content-3 .seo-cont-3 h2,
  .seo-sec-content-3 .seo-cont-3 .faq-item strong {
    color: #ffffff !important;
  }

  .seo-sec-content-3 .seo-cont-3 p:not(.platform-pills),
  .seo-sec-content-3 .seo-cont-3 .process-steps li,
  .faq-list .faq-item p {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .contact-offices-head h2,
  .contact-offices-eyebrow {
    color: #ffffff !important;
  }

  .contact-quick-strip p,
  .office-card__address,
  .office-card__line,
  .office-card__line strong,
  .office-card__label {
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .about-page-text p,
  .page-copy-section .lead,
  .team-head p.lead {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .team-head p.lead {
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }

  #information .info-subtext {
    color: rgba(255, 255, 255, 0.9) !important;
  }
}

.service-cta-bar {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.95;
}

.process-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.process-steps li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.process-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  line-height: 1.75rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  background: linear-gradient(135deg, #fce383, #c9a227);
  color: #111;
}

/*
 * Service pages: .seo-cont-3 ("How we work", timeline line, FAQ intros).
 * Markup matches style.css, but style.css is not loaded (only min.css + site-fixes).
 */
.seo-sec-content-3 .seo-cont-3 h2 {
  text-align: left;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  line-height: 1.2;
  font-weight: 600;
  font-family: "Manrope", system-ui, sans-serif;
  color: #fff;
  margin-bottom: 0.35rem;
}

.seo-sec-content-3 .seo-cont-3 h2 span {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

.seo-sec-content-3 .seo-cont-3 p:not(.platform-pills) {
  color: rgba(228, 228, 234, 0.94);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 48rem;
}

@media (max-width: 768px) {
  .seo-head .container,
  .mid .container,
  .mid-keys .container,
  .seo-sec-content-3 .container,
  .service-portfolio .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .seo-sec-content-3 .seo-cont-3 p:not(.platform-pills),
  .seo-sec-content-3 .seo-cont-3 .faq-item p {
    line-height: 1.52 !important;
    font-size: 0.94rem !important;
  }
}

.seo-sec-content-3 .seo-cont-3 .process-steps li {
  color: rgba(228, 228, 234, 0.94);
  font-size: 1.05rem;
}

.seo-sec-content-3 .seo-cont-3 .process-steps li strong {
  color: #fff;
  font-weight: 700;
}

.seo-sec-content-3 .seo-cont-3 p:not(.platform-pills) strong {
  color: #fff;
  font-weight: 700;
}

/* Service pillar cards (.keys / .key-content) — same style.css gap */
.key-content h3 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.key-content p {
  color: rgba(228, 228, 234, 0.94);
  font-size: 0.98rem;
  line-height: 1.65;
}

.home-hero-revamp__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 1.5rem;
  text-align: center;
}

.home-hero-revamp__stats .stat-item h3 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  margin-bottom: 0.25rem;
  font-weight: 800;
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.home-hero-revamp__stats .stat-item p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 1;
  color: rgba(255, 255, 255, 0.94);
}

.home-hero-revamp__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Outlined CTA: base pill styles use dark text-fill — force light text on transparent bg */
.portfolio-revamp-cta__btn.portfolio-revamp-cta__btn--outline {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: transparent !important;
  background-image: none !important;
  border: 2px solid rgba(252, 227, 131, 0.72) !important;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28) !important;
}

.portfolio-revamp-cta__btn.portfolio-revamp-cta__btn--outline i {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
  opacity: 1;
}

.portfolio-revamp-cta__btn.portfolio-revamp-cta__btn--outline:hover,
.portfolio-revamp-cta__btn.portfolio-revamp-cta__btn--outline:focus-visible {
  color: #0a0a0a !important;
  -webkit-text-fill-color: #0a0a0a !important;
  background: linear-gradient(145deg, #fff6d1 0%, #fce383 48%, #e8c85a 100%) !important;
  border-color: rgba(252, 227, 131, 0.9) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 10px 28px rgba(0, 0, 0, 0.35),
    0 4px 20px rgba(252, 227, 131, 0.22) !important;
  filter: brightness(1.02);
}

@media (max-width: 768px) {
  .stats-strip-about {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* —— Contact page (Chapter 5) —— */
.contact-page-hero .seo-head h1 {
  font-size: clamp(1.85rem, 5vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.contact-page-hero__body {
  margin-top: clamp(12px, 3vw, 24px);
}

.contact-page-hero__lead {
  margin-bottom: 1.25rem !important;
  max-width: 42rem;
}

.contact-page-hero__promise {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  color: #fce383;
  font-family: "Manrope", system-ui, sans-serif;
}

.contact-offices {
  padding: clamp(48px, 8vw, 88px) 0 clamp(40px, 6vw, 72px);
}

.contact-offices-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(28px, 4vw, 40px);
}

.contact-offices-eyebrow {
  color: #fce383;
  font-size: 13px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-offices-head h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.15;
}

.contact-quick-strip {
  max-width: 52rem;
  margin: 0 auto clamp(32px, 5vw, 48px);
  padding: clamp(20px, 3vw, 28px) clamp(22px, 3vw, 32px);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(28, 28, 28, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
  border: 1px solid rgba(252, 227, 131, 0.2);
  text-align: center;
}

.contact-quick-strip p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  line-height: 1.55;
}

.contact-quick-strip p:last-child {
  margin-bottom: 0;
}

.contact-quick-strip__email a {
  color: #fce383;
  font-weight: 600;
  text-decoration: none;
}

.contact-quick-strip__email a:hover {
  text-decoration: underline;
}

.contact-quick-strip__phone {
  font-weight: 600;
  color: #fff !important;
}

.contact-quick-strip__map a {
  color: #fce383;
  font-weight: 600;
  text-decoration: none;
}

.contact-quick-strip__map a:hover {
  text-decoration: underline;
}

.contact-offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 3vw, 26px);
  margin-bottom: clamp(36px, 5vw, 52px);
}

.office-card {
  padding: clamp(20px, 3vw, 26px);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(28, 28, 28, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.office-card__label {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.25;
}

.office-card__address {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.office-card__line {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.office-card__line strong {
  display: inline-block;
  min-width: 4.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.office-card__line a {
  color: #fce383;
  text-decoration: none;
}

.office-card__line a:hover {
  text-decoration: underline;
}

.office-card__map {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.office-card__map a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fce383;
  text-decoration: none;
  font-family: "Manrope", system-ui, sans-serif;
}

.office-card__map a:hover {
  color: #fff6d1;
}

/* Contact page — WhatsApp brand gradient (inline links + floating button) */
a.contact-wa-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32em 0.9em 0.36em;
  border-radius: 999px;
  background: linear-gradient(135deg, #7bed9f 0%, #25d366 42%, #128c7e 100%) !important;
  color: #04261a !important;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 2px 14px rgba(37, 211, 102, 0.38);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

a.contact-wa-link:hover {
  color: #021208 !important;
  filter: brightness(1.07);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none !important;
}

a.contact-wa-link:focus-visible {
  outline: 2px solid #fce383;
  outline-offset: 3px;
}

body.page-contact .whatsapp-float {
  background: linear-gradient(145deg, #7bed9f 0%, #25d366 45%, #0f8a6d 100%);
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.45);
}

body.page-contact .whatsapp-float:hover {
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.contact-offices-social {
  text-align: center;
  padding-top: 8px;
}

.contact-offices-social__title {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 14px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.contact-offices-social__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.contact-offices-social__list a {
  color: #fff;
  font-size: 1.25rem;
  opacity: 0.85;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.contact-offices-social__list a:hover {
  color: #fce383;
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.whatsapp-float:focus-visible {
  outline: 2px solid #fce383;
  outline-offset: 4px;
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* —— Careers page (Chapter 6) —— */
.careers-page-hero .careers-page-hero__title {
  font-size: clamp(1.75rem, 4.8vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.careers-page-hero__body {
  margin-top: clamp(12px, 3vw, 22px);
}

.careers-page-hero__lead {
  margin: 0 !important;
  max-width: 42rem;
}

.careers-why {
  padding: clamp(40px, 7vw, 72px) 0 clamp(28px, 5vw, 48px);
  color: rgba(255, 255, 255, 0.92);
}

.careers-why__head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.careers-why__title {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.15;
}

.careers-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 3vw, 24px);
}

.careers-why__card {
  padding: clamp(20px, 3vw, 26px);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(28, 28, 28, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.careers-why__card-title {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.25;
}

.careers-why__card-body {
  margin: 0;
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

section.career-positions--roles .career-job-meta__text a {
  color: #fce383;
  text-decoration: none;
  font-weight: 600;
}

section.career-positions--roles .career-job-meta__text a:hover {
  text-decoration: underline;
}

.careers-spontaneous {
  padding: clamp(36px, 6vw, 64px) 0 clamp(48px, 8vw, 88px);
}

.careers-spontaneous__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: clamp(24px, 4vw, 36px) clamp(22px, 3vw, 32px);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(28, 28, 28, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
  border: 1px solid rgba(252, 227, 131, 0.18);
}

.careers-spontaneous__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.25;
}

.careers-spontaneous__body {
  margin: 0 0 22px;
  font-size: clamp(0.95rem, 2.1vw, 1.05rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.careers-spontaneous__body a {
  color: #fce383;
  font-weight: 600;
  text-decoration: none;
}

.careers-spontaneous__body a:hover {
  text-decoration: underline;
}

/* —— Blog hub & articles (Chapter 7) —— */
.blog-hub-page {
  padding-bottom: clamp(48px, 8vw, 88px);
}

.blog-hub-eyebrow {
  color: #fce383;
  font-size: 13px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-hub-title {
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.1;
}

.blog-hub-lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  margin: 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.blog-hub-card {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(28, 28, 28, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.blog-hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 227, 131, 0.22);
}

.blog-hub-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(18px, 3vw, 22px);
  text-decoration: none;
  color: inherit;
}

.blog-hub-card__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 16 / 9;
  background: #111;
}

.blog-hub-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-hub-card__tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fce383;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  margin-bottom: 8px;
}

.blog-hub-card__title {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}

.blog-hub-card__excerpt {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 14px;
  flex: 1;
}

.blog-hub-card__cta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fce383;
  font-family: "Manrope", system-ui, sans-serif;
}

.blog-article-page {
  padding-bottom: clamp(48px, 8vw, 88px);
}

.blog-article-prose {
  max-width: 42rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Manrope", system-ui, sans-serif;
}

.blog-article-header {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.blog-article-meta {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.blog-article-prose h1 {
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.blog-lead {
  font-size: clamp(1.02rem, 2.2vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.blog-article-prose h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
  margin: clamp(2rem, 4vw, 2.5rem) 0 0.75rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
}

.blog-article-prose h3 {
  font-size: 1.05rem;
  margin: 1.35rem 0 0.5rem;
  color: #fce383;
  font-weight: 600;
}

.blog-article-prose p,
.blog-article-prose li {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.blog-article-prose ul,
.blog-article-prose ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.blog-article-prose li {
  margin-bottom: 0.35rem;
}

.blog-article-cta {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* —— Homepage & hub vertical rhythm (services, about, ticker, team, blog, contact) —— */
#information {
  padding-top: clamp(56px, 9vw, 104px) !important;
  padding-bottom: clamp(48px, 8vw, 96px) !important;
}

#information .info-head {
  margin-bottom: clamp(32px, 5vw, 56px) !important;
}

#information .info-head h2 {
  letter-spacing: -0.02em;
  line-height: 1.08;
}

#information .info-subtext {
  line-height: 1.65 !important;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

#information .service-hover-items {
  margin-bottom: clamp(36px, 6vw, 64px);
}

#information .service-hover-item {
  padding-top: clamp(36px, 6vw, 68px) !important;
  padding-bottom: clamp(36px, 6vw, 68px) !important;
}

#information .development-para p {
  line-height: 1.65 !important;
  font-size: clamp(0.9rem, 1.9vw, 1.02rem) !important;
}

@media (max-width: 768px) {
  #information .container,
  .page-copy-section.container,
  .about-head .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  #information .info-head,
  .values-grid-about .value-card {
    padding-left: 6px;
    padding-right: 6px;
  }

  /* About hero intro: sits in .container — gutter comes from container; no extra squeeze */
  .about-head .row > .about-page-text {
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }

  /* Nitro promo band: keep copy off the viewport edge on small phones */
  .brand-section.container {
    padding-left: max(16px, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(16px, env(safe-area-inset-right, 0px)) !important;
    box-sizing: border-box;
  }

  .brand-section.container > div:first-child {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .brand-section h5,
  .brand-section h2,
  .brand-section p {
    padding-right: 2px;
    box-sizing: border-box;
  }

  #information .development-para p {
    line-height: 1.52 !important;
    font-size: 0.92rem !important;
  }
}

/* About page only — stronger side gutters on phones (scoped via body.page-about) */
@media (max-width: 767.98px) {
  body.page-about #header-wrap .container,
  body.page-about .about-head .container,
  body.page-about .page-copy-section.container,
  body.page-about #team .container,
  body.page-about #team-main .container,
  body.page-about #client-logos .container,
  body.page-about .about-journey .container,
  body.page-about footer#new-footer .container {
    padding-left: max(1.35rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(1.35rem, env(safe-area-inset-right, 0px)) !important;
  }

  body.page-about #logo-slider {
    padding-left: max(1.35rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.35rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  body.page-about .about-page-head {
    padding-left: 0;
    padding-right: 0;
  }

  body.page-about .values-grid-about .value-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

#information .development-para ul {
  margin-top: 0.75rem;
}

#information .development-para ul li {
  margin-bottom: 0.65rem !important;
  line-height: 1.5;
}

#information .development-text span {
  font-size: clamp(3rem, 10vw, 4.25rem) !important;
  opacity: 0.58 !important;
  letter-spacing: -0.03em;
}

.about-section.container {
  padding-top: clamp(52px, 8vw, 96px) !important;
  padding-bottom: clamp(52px, 8vw, 96px) !important;
  gap: clamp(36px, 5vw, 56px) !important;
}

.about-section.container > div:last-child p {
  line-height: 1.65 !important;
}

.page-home #slider-text {
  margin-top: clamp(36px, 6vw, 64px);
  padding-top: clamp(36px, 6vw, 68px) !important;
  padding-bottom: clamp(36px, 6vw, 68px) !important;
}

/* #slider-text: keep same horizontal marquee on mobile as desktop (inherit nowrap from .marquee; style.css sets mobile font-size). */
@media (max-width: 768px) {
  #slider-text .marquee__inner,
  #slider-text .marquee__content {
    max-width: 100%;
  }
}

#team {
  margin-top: clamp(56px, 8vw, 96px) !important;
  padding-top: clamp(20px, 3.5vw, 36px);
}

#team-main {
  padding-bottom: clamp(32px, 5vw, 56px);
}

/* Team carousel: square portrait frames + object-fit so Owl’s narrow cells don’t squeeze faces */
#team-main .team-slider {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

#team-main #team-slides .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(8px, 1.5vw, 18px);
  box-sizing: border-box;
}

#team-main .team-image {
  width: min(100%, 280px);
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto;
  flex-shrink: 0;
  background: linear-gradient(165deg, rgba(36, 36, 36, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

#team-main .team-image .single-img,
#team-main img.single-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

#team-main .img-info {
  width: min(100%, 280px);
  margin-top: 0.65rem;
  text-align: center;
  padding: 0 6px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  #team-main .team-image,
  #team-main .img-info {
    width: min(100%, min(300px, 88vw));
  }

  #team-main #team-slides .owl-item {
    padding-left: 8px;
    padding-right: 8px;
  }

  #team-main .img-info p {
    line-height: 1.45 !important;
    font-size: 0.9rem !important;
  }
}

.seo-main-image,
.portfolio-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.seo-main-image img,
.portfolio-image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Prevent right-edge text clipping on mobile sections */
@media (max-width: 768px) {
  .page-copy-section .row,
  .about-section .row,
  .brand-section .row,
  #information .row,
  .seo-sec-content-3 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-copy-section p,
  .page-copy-section h2,
  .about-page-text p,
  .info-head p,
  .info-head h2,
  .seo-cont-3 p,
  .seo-cont-3 h2 {
    padding-right: 8px;
    overflow-wrap: break-word;
    word-break: normal;
  }
}

/* Ensure Artwing Nitro CTA is always tappable */
.brand-section .about-section-button {
  position: relative;
  z-index: 5;
}

.brand-section .about-section-button a {
  position: relative;
  z-index: 6;
  pointer-events: auto;
}

section.home-blogs {
  padding-top: clamp(20px, 3.5vw, 36px);
  padding-bottom: clamp(48px, 7vw, 88px);
}

section.home-blogs .blog-content p {
  line-height: 1.62 !important;
}

/* Blog section: Owl slider (homepage + city hubs) */
.home-blogs-slider {
  position: relative;
  padding: 0 0 clamp(4px, 1.5vw, 16px);
  max-width: 100%;
}

.home-blog-carousel .owl-stage-outer {
  overflow: hidden;
  padding: 12px 0 8px;
}

.home-blog-carousel .item {
  height: auto;
}

.home-blog-carousel .blog-col {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  box-sizing: border-box;
  min-height: 100%;
  background: linear-gradient(145deg, rgba(28, 28, 28, 0.96) 0%, rgba(14, 14, 14, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
}

@media (max-width: 576px) {
  .home-blog-carousel .blog-col {
    flex-direction: column !important;
  }
}

.home-blog-carousel .blog-img {
  flex: 0 0 40%;
  max-width: 40%;
  min-height: 200px;
  align-self: stretch;
}

@media (max-width: 576px) {
  .home-blog-carousel .blog-img {
    flex: none !important;
    max-width: 100% !important;
    width: 100%;
    min-height: 180px;
    max-height: 220px;
  }
}

.home-blog-carousel .blog-img img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 576px) {
  .home-blog-carousel .blog-img img {
    min-height: 180px;
  }
}

.home-blog-carousel .blog-content {
  flex: 1;
  min-width: 0;
  padding: clamp(18px, 2.5vw, 30px) !important;
  display: flex;
  flex-direction: column;
}

.home-blog-carousel .blog-content .blog-button {
  margin-top: auto;
  align-self: flex-start;
}

.home-blog-carousel .blog-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: #fce383;
  margin-bottom: 10px;
}

.home-blog-carousel .owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.home-blog-carousel .owl-nav button.owl-prev,
.home-blog-carousel .owl-nav button.owl-next {
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: rgba(0, 0, 0, 0.4) !important;
  color: #fff !important;
  font-size: 1rem !important;
  margin: 0 !important;
}

.home-blog-carousel .owl-nav button.owl-prev:hover,
.home-blog-carousel .owl-nav button.owl-next:hover {
  border-color: rgba(252, 227, 131, 0.55) !important;
  color: #fce383 !important;
  background: rgba(252, 227, 131, 0.08) !important;
}

.home-blog-carousel .owl-dots {
  margin-top: 12px;
}

.home-blog-carousel .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.28);
}

.home-blog-carousel .owl-dots .owl-dot.active span,
.home-blog-carousel .owl-dots .owl-dot:hover span {
  background: #fce383;
}

section.home-form .form-subtext {
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.75rem;
}

.page-home .whatsapp-cta {
  margin-top: clamp(1.5rem, 3vw, 2.25rem) !important;
}

.page-home .whatsapp-cta a {
  color: #fce383;
  text-underline-offset: 3px;
}

.page-home .whatsapp-cta a:hover {
  color: #fff6d1;
}

/* —— Site footer (#new-footer) —— */
#new-footer {
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#new-footer .footer_wrap_new {
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: flex-start;
  justify-content: space-between;
}

#new-footer .footer-info {
  width: auto;
  min-width: min(100%, 200px);
  max-width: 300px;
}

#new-footer .footer-info p {
  font-family: "Manrope", system-ui, sans-serif;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-top: 1rem;
}

#new-footer .footer-links {
  flex: 1 1 260px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 4vw, 2rem);
  justify-content: flex-end;
  width: auto !important;
}

#new-footer .links_wrap {
  flex: 1 1 150px;
  min-width: 140px;
  max-width: 220px;
}

#new-footer .main-links h3 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fce383;
  margin-bottom: 1rem;
}

#new-footer .main-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#new-footer .main-links ul li {
  margin-bottom: 0.45rem;
}

#new-footer .main-links a {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

#new-footer .main-links a:hover {
  color: #fce383;
}

#new-footer .footer-addresses {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
}

#new-footer .footer-addresses strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

#new-footer .footer-contact-links {
  margin-top: 1rem;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.75;
}

#new-footer .footer-contact-links a {
  color: #fce383;
  text-decoration: none;
}

#new-footer .footer-contact-links a:hover {
  color: #fff6d1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#new-footer .last-sec {
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) 0 clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#new-footer .last-sec .copy {
  width: auto;
  flex: 1 1 auto;
}

#new-footer .last-sec .copy p {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.74);
}

#new-footer .social-img {
  padding-top: 0;
  gap: 12px;
}

#new-footer .social-img a {
  display: inline-flex;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

#new-footer .social-img a:hover {
  opacity: 1;
}

#new-footer .social-img img {
  width: 28px;
  height: auto;
}

#new-footer .blank {
  display: none;
}

@media (max-width: 768px) {
  #new-footer .footer-info,
  #new-footer .footer-links {
    width: 100% !important;
    max-width: none;
  }

  #new-footer .footer-links {
    justify-content: flex-start;
  }

  #new-footer .links_wrap {
    max-width: none;
  }

  #new-footer .last-sec {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* —— Services page (services.php): valid sections + full-width single cards —— */
#portfolio .portfolio-wrap-head h1 {
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 1.1;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0;
}

section#new-portfolio .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

section#new-portfolio .column-portfolio {
  box-sizing: border-box;
  padding: 0 clamp(10px, 2vw, 16px);
}

/* One service per row was still 50% wide — other half looked like an empty block */
section#new-portfolio .row > .column-portfolio:only-of-type {
  width: 100% !important;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 769px) {
  section#new-portfolio .row > .column-portfolio:not(:only-of-type) {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50% !important;
  }
}

/* —— Evaluation doc: readability (mobile), logos, imagery, journey —— */
.seo-sec-content-3 .seo-cont-3 .process-steps li {
  color: rgba(230, 230, 235, 0.95);
}

.seo-sec-content-3 .seo-cont-3 p:not(.platform-pills) {
  color: rgba(220, 220, 228, 0.95);
}

.key-content p {
  color: rgba(215, 215, 224, 0.95);
}

@media (max-width: 768px) {
  .seo-sec-content-3 .seo-cont-3 .process-steps li {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 1rem !important;
  }

  .seo-sec-content-3 .seo-cont-3 p:not(.platform-pills),
  .seo-sec-content-3 .seo-cont-3 .faq-item p {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .key-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }

  .contact-quick-strip p,
  .contact-quick-strip__note {
    color: rgba(255, 255, 255, 0.94) !important;
  }

  .office-card__address {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .office-card__line strong {
    color: rgba(255, 255, 255, 0.75) !important;
  }

  .contact-offices-social__title {
    color: rgba(255, 255, 255, 0.72) !important;
  }
}

@media (max-width: 768px) {
  #logo-slider,
  #logo-slider-2 {
    --logo-slot-w: 184px;
    --logo-slot-h: 80px;
  }
}

@media (max-width: 576px) {
  #logo-slider,
  #logo-slider-2 {
    --logo-slot-w: 168px;
    --logo-slot-h: 74px;
  }
}

.seo-main-image img,
.seo-main-image .seo-main-vector,
.portfolio-image img,
.service-portfolio .portfolio-image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}

.about-journey .journey-head {
  text-align: center;
}

.about-journey .journey-stats-line {
  margin: 12px auto 0;
  max-width: 40rem;
  font-size: clamp(0.82rem, 2.4vw, 0.95rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Manrope", system-ui, sans-serif;
}

.about-journey .journey-image {
  margin-top: clamp(16px, 3vw, 28px);
  text-align: center;
}

.about-journey .journey-image img.journey {
  display: block;
  margin: 0 auto;
  max-width: min(100%, 920px);
  height: auto;
}

@media (max-width: 768px) {
  .testimonials-revamp-lead,
  .portfolio-revamp-lead,
  .home-hero-revamp__lead {
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .home-hero-revamp#banner-wrap .banner-text p {
    color: rgba(255, 255, 255, 0.88) !important;
  }
}

/* —— Dark canvas (#060606): global heading + body copy contrast (min.css greys) —— */
body {
  background-color: #060606;
  color: rgba(255, 255, 255, 0.92);
}

/* Headlines: keep solid white; gradient phrases stay on .gradient-text spans */
.about-head h1,
.about-page-head h1,
.about-page-head h2,
.portfolio-heading,
.seo-head h1,
.seo-head h2,
.service-head h1,
.service-head h2,
.info-head h2,
.logos-head h2,
.blogs-head h2,
.testimonials-revamp-title,
.contact-offices-head h2,
.form-head h2,
#information .development-text h2,
#information .info-head h2 {
  color: #ffffff;
}

.page-copy-section h2,
.page-copy-section h3 {
  color: #ffffff;
}

/* Muted body copy from legacy bundles */
#information .development-para p,
#information .development-para li,
#information .info-subtext,
.development-para p,
.development-para li,
.list-box .development-para p,
.list-box .development-para li,
.seo-head p,
.seo-head li,
.mid p,
.mid li,
.mid-text p,
.service-head p,
.logos-head p,
.about-section p,
.brand-section p,
.banner-text p,
#portfo-text,
#portfolio-text,
.port-col-1 p,
.cs-main p,
.privacy-policy p,
.terms-conditions p,
.blog-article-prose p,
.blog-article-prose li,
.home-blogs .blog-content p,
.team-head p:not(.eyebrow),
.values-grid-about .value-card p,
.stats-strip-about .stat-box p,
.page-copy-section p,
.page-copy-section .lead {
  color: rgba(245, 245, 247, 0.95) !important;
}

/* Portfolio / case study narrative */
#portfolio-text,
#portfo-text {
  color: rgba(242, 242, 246, 0.96) !important;
}

/* FAQ + legal strong lines stay bright */
.faq-list .faq-item strong,
.privacy-policy h2,
.privacy-policy h3,
.terms-conditions h2,
.terms-conditions h3 {
  color: #ffffff !important;
}

/* Testimonial role line (was easy to wash out) */
.testimonial-card__role {
  color: rgba(255, 255, 255, 0.78) !important;
}

/* Links sitting on charcoal (not gold CTAs) */
p a:not(.portfolio-revamp-cta__btn):not(.about-section-button a):not(.view),
.mid a,
.blog-article-prose a {
  color: #fce383;
}

p a:not(.portfolio-revamp-cta__btn):not(.about-section-button a):not(.view):hover,
.mid a:hover,
.blog-article-prose a:hover {
  color: #fff6d1;
}

/* —— Responsive rhythm: gutters, safe-area, legacy portfolio / case studies —— */
@media (max-width: 991.98px) {
  .container:not(.container-fluid),
  .container-sm,
  .container-md {
    padding-left: max(1rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(1rem, env(safe-area-inset-right, 0px)) !important;
  }
}

@media (max-width: 767.98px) {
  .container:not(.container-fluid),
  .container-sm,
  .container-md {
    padding-left: max(1.05rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(1.05rem, env(safe-area-inset-right, 0px)) !important;
  }

  /* Full-bleed legacy portfolio shells (often no outer container padding) */
  .porto-bg {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  #portofio-para .row,
  #portfolio-para .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .port-col-1,
  .port-col-2,
  #portofio-para .port-col-1,
  #portofio-para .port-col-2 {
    width: 100% !important;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .cs-main,
  .main-para {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .seo-head .seo-main-image img {
    float: none !important;
    display: block;
    margin: 1rem auto 0 !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .tabs-portfolio {
    padding-left: 2px;
    padding-right: 2px;
  }

  .tabs-portfolio .nav.nav-pills {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    row-gap: 0.5rem;
  }

  .tabs-portfolio .nav-link {
    margin-bottom: 4px;
  }

  .blog-article-page .container,
  .blog-hub-page .container {
    padding-left: max(1.05rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(1.05rem, env(safe-area-inset-right, 0px)) !important;
  }

  .whatsapp-float,
  .whatsapp-cta {
    right: max(12px, env(safe-area-inset-right, 0px)) !important;
    bottom: max(16px, env(safe-area-inset-bottom, 0px)) !important;
  }

  .modal-dialog {
    margin-left: max(0.5rem, env(safe-area-inset-left, 0px));
    margin-right: max(0.5rem, env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 575.98px) {
  .container:not(.container-fluid),
  .container-sm,
  .container-md {
    padding-left: max(1.1rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(1.1rem, env(safe-area-inset-right, 0px)) !important;
  }
}
