/*
 * ============================================================
 *  STRUCTARCH CONSULTANTS — TITANIUM & CRIMSON COLOUR SCHEME
 *  Drop this file AFTER your existing stylesheets in <head>:
 *  <link rel="stylesheet" href="structarch-titanium-crimson.css">
 * ============================================================
 *
 *  COLOUR TOKENS
 *  ─────────────────────────────────────────────────────────
 *  --sc-navy          #1A1A1A   Charcoal black  (navbar, footer bg)
 *  --sc-navy-mid      #2C2C2C   Dark grey        (footer columns bg)
 *  --sc-crimson       #C0392B   Crimson red      (buttons, accents, highlights)
 *  --sc-crimson-dark  #96281B   Dark crimson     (button hover)
 *  --sc-crimson-light #E74C3C   Bright crimson   (icon glow, hover links)
 *  --sc-body-bg       #F2F2F2   Titanium grey    (page body bg)
 *  --sc-section-alt   #E8E8E8   Slightly darker  (alternating sections)
 *  --sc-white         #FFFFFF   Pure white       (cards, panels)
 *  --sc-text-primary  #1A1A1A   Charcoal         (headings)
 *  --sc-text-body     #444444   Dark grey        (body copy)
 *  --sc-text-muted    #777777   Mid grey         (subtitles, captions)
 *  --sc-text-light    #AAAAAA   Light grey       (placeholder, breadcrumbs)
 *  --sc-border        #D8D8D8   Border grey      (dividers, card edges)
 *  --sc-topbar-bg     #111111   Near-black       (top contact bar)
 * ============================================================
 */

:root {
  --sc-navy:          #1A1A1A;
  --sc-navy-mid:      #2C2C2C;
  --sc-crimson:       #C0392B;
  --sc-crimson-dark:  #96281B;
  --sc-crimson-light: #E74C3C;
  --sc-body-bg:       #F2F2F2;
  --sc-section-alt:   #E8E8E8;
  --sc-white:         #FFFFFF;
  --sc-text-primary:  #1A1A1A;
  --sc-text-body:     #444444;
  --sc-text-muted:    #777777;
  --sc-text-light:    #AAAAAA;
  --sc-border:        #D8D8D8;
  --sc-topbar-bg:     #111111;
}


/* ============================================================
   1. GLOBAL BODY & PAGE BACKGROUND
   ============================================================ */

body {
  background-color: var(--sc-body-bg) !important;
  color: var(--sc-text-body) !important;
}

/* ============================================================
   2. TOP CONTACT BAR  (the strip above the navbar with phone/email)
   ============================================================ */

.tp-header-top,
.header-top-area,
.tp-top-bar,
[class*="top-bar"],
[class*="topbar"],
[class*="header-top"] {
  background-color: var(--sc-topbar-bg) !important;
  border-bottom: 2px solid var(--sc-crimson) !important;
  color: #cccccc !important;
}

.tp-header-top a,
.header-top-area a,
[class*="top-bar"] a,
[class*="topbar"] a,
[class*="header-top"] a {
  color: #cccccc !important;
}

.tp-header-top a:hover,
.header-top-area a:hover,
[class*="top-bar"] a:hover,
[class*="topbar"] a:hover,
[class*="header-top"] a:hover {
  color: var(--sc-crimson-light) !important;
}


/* ============================================================
   3. NAVBAR / MAIN HEADER
   ============================================================ */

header,
.tp-header-area,
.tp-header-sticky,
.tp-header-main,
.main-header,
.navbar,
.tp-menu-area,
[class*="header-wrap"] {
  background-color: var(--sc-navy) !important;
  border-bottom: 3px solid var(--sc-crimson) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35) !important;
}

/* Harico template: keep inner nav transparent (avoids dark block on white bar) */
.ht-header-area {
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.ht-header-area nav,
.ht-header-area .ht-menu-main,
.ht-header-area .ht-menu-main nav,
.ht-header-area .ht-main-header {
  background-color: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.ht-header-area .ht-top-header {
  display: none !important;
}

.ht-header-area .ht-main-header .ht-menu-wrapper {
  background-color: var(--sc-white) !important;
  border: 1px solid var(--sc-border) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12) !important;
}

.ht-header-area .ht-main-header .ht-menu-main ul li > a {
  color: var(--sc-text-primary) !important;
}

.ht-header-area .ht-main-header .ht-menu-main ul li:hover > a {
  color: var(--sc-crimson) !important;
}

.ht-header-area .ht-main-header .ht-menu-right .ht-btn {
  background: var(--sc-crimson) !important;
  color: var(--sc-white) !important;
}

.ht-header-area .ht-main-header .ht-menu-right .ht-btn::before {
  background: var(--sc-crimson-dark) !important;
}

.ht-header-area .ht-main-header .ht-menu-right .ht-btn:hover {
  color: var(--sc-white) !important;
}

.ht-header-area .ht-menu-main ul li > .sub-menu {
  background-color: #FFFFFF !important;
  border-top: none !important;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08) !important;
}

.ht-header-area .ht-menu-main ul li > .sub-menu li a {
  color: var(--sc-text-primary) !important;
}

.ht-header-area .ht-menu-main ul li > .sub-menu li a:hover {
  color: var(--sc-crimson) !important;
  background-color: rgba(192, 57, 43, 0.08) !important;
  border-left-color: var(--sc-crimson) !important;
}

/* Sticky header on scroll */
.tp-header-sticky.header-sticky,
.sticky-menu,
[class*="sticky"] header,
header.sticky {
  background-color: var(--sc-navy) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45) !important;
}

/* Nav links */
.tp-main-menu nav ul li a,
.main-menu ul li a,
.navbar-nav li a,
[class*="main-menu"] ul li a,
[class*="nav-menu"] li a {
  color: #DDDDDD !important;
  font-weight: 500 !important;
  letter-spacing: 0.03em !important;
  transition: color 0.2s ease !important;
}

.tp-main-menu nav ul li a:hover,
.main-menu ul li a:hover,
.navbar-nav li a:hover,
[class*="main-menu"] ul li a:hover,
[class*="nav-menu"] li a:hover,
.tp-main-menu nav ul li.active a,
.main-menu ul li.current-menu-item a {
  color: var(--sc-crimson-light) !important;
}

/* Dropdown menus */
.tp-submenu,
.sub-menu,
[class*="submenu"],
[class*="dropdown-menu"] {
  background-color: var(--sc-navy-mid) !important;
  border-top: 2px solid var(--sc-crimson) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
}

.tp-submenu li a,
.sub-menu li a,
[class*="submenu"] li a,
[class*="dropdown-menu"] li a {
  color: #CCCCCC !important;
}

.tp-submenu li a:hover,
.sub-menu li a:hover,
[class*="submenu"] li a:hover,
[class*="dropdown-menu"] li a:hover {
  color: var(--sc-crimson-light) !important;
  background-color: rgba(192, 57, 43, 0.12) !important;
}


/* ============================================================
   4. NAVBAR CTA BUTTON  ("Get Consultation")
   ============================================================ */

.tp-btn,
.tp-header-btn a,
[class*="header-btn"] a,
[class*="tp-btn"],
a.tp-btn {
  background-color: var(--sc-crimson) !important;
  color: #FFFFFF !important;
  border: 2px solid var(--sc-crimson) !important;
  border-radius: 3px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease !important;
}

.tp-btn:hover,
.tp-header-btn a:hover,
[class*="header-btn"] a:hover,
a.tp-btn:hover {
  background-color: var(--sc-crimson-dark) !important;
  border-color: var(--sc-crimson-dark) !important;
  transform: translateY(-1px) !important;
}


/* ============================================================
   5. HERO SECTION
   ============================================================ */

.tp-hero-area,
.tp-slider-area,
[class*="hero-area"],
[class*="hero-section"],
[class*="slider-area"],
[class*="banner-area"] {
  background-color: var(--sc-navy) !important;
  background-image: none !important;
  position: relative !important;
}

/* Subtle crimson diagonal accent stripe on hero */
.tp-hero-area::before,
[class*="hero-area"]::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 6px !important;
  height: 100% !important;
  background: var(--sc-crimson) !important;
  z-index: 1 !important;
}

/* Hero text */
.tp-hero-area h1,
.tp-hero-area h2,
[class*="hero-area"] h1,
[class*="hero-area"] h2,
[class*="hero-title"],
[class*="slider-title"],
[class*="banner-title"] {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

.tp-hero-area p,
[class*="hero-area"] p,
[class*="hero-subtitle"],
[class*="slider-subtitle"] {
  color: #BBBBBB !important;
}

/* Hero badge / pill label */
[class*="hero-area"] .tp-section-title__pre,
[class*="hero-area"] [class*="section-pre"],
[class*="hero-area"] span.pre-title {
  color: var(--sc-crimson-light) !important;
  border-color: var(--sc-crimson) !important;
}

/* Hero CTA buttons */
.tp-hero-area .tp-btn,
[class*="hero-area"] .tp-btn,
[class*="hero-area"] a[class*="btn"] {
  background-color: var(--sc-crimson) !important;
  border-color: var(--sc-crimson) !important;
  color: #fff !important;
  border-radius: 3px !important;
}

.tp-hero-area .tp-btn:hover,
[class*="hero-area"] .tp-btn:hover {
  background-color: var(--sc-crimson-dark) !important;
  border-color: var(--sc-crimson-dark) !important;
}


/* ============================================================
   6. STATS BAR (35+ Years / 1991 Established)
   ============================================================ */

[class*="counter-area"],
[class*="fact-area"],
[class*="funfact-area"] {
  background-color: var(--sc-navy-mid) !important;
  border-top: 3px solid var(--sc-crimson) !important;
  border-bottom: 1px solid #3a3a3a !important;
}

.ht-stats-area {
  background-color: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
  overflow: visible;
  padding: 48px 0 56px;
}

.ht-stats-area .ht-stats-wrapper {
  background-color: #ffffff !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
  border-radius: 16px;
  overflow: hidden;
}

.ht-stats-area .ht-stats-items {
  padding: 36px 28px 40px;
}

.ht-stats-area .ht-stats-items .number {
  font-size: clamp(2.75rem, 4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.ht-stats-area .ht-stats-items .number::after {
  position: static;
  display: inline;
  margin-left: 2px;
  color: var(--sc-crimson) !important;
  font-size: 0.72em;
  vertical-align: super;
}

.ht-stats-area .ht-stats-items h4 {
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
}

.ht-stats-area .ht-stats-items p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #5a6c6b !important;
}

.ht-stats-area .ht-stats-items:not(:last-child)::after {
  height: 72%;
  max-height: 120px;
}

@media (max-width: 767px) {
  .ht-stats-area {
    padding: 36px 0 44px;
  }

  .ht-stats-area .ht-stats-items {
    padding: 28px 20px 32px;
  }
}

[class*="counter-area"] h2,
[class*="counter-area"] h3,
[class*="counter-area"] .count,
[class*="fact-area"] h2,
[class*="fact-area"] span,
[class*="funfact-area"] h2,
[class*="funfact-area"] span {
  color: var(--sc-crimson-light) !important;
}

[class*="counter-area"] p,
[class*="counter-area"] span:not(.count),
[class*="fact-area"] p,
[class*="funfact-area"] p {
  color: #AAAAAA !important;
}


/* ============================================================
   7. SECTION HEADINGS & PRE-TITLES (site-wide)
   ============================================================ */

.tp-section-title__pre,
[class*="section-pre"],
[class*="pre-title"],
[class*="sub-title"] {
  color: var(--sc-crimson) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--sc-text-primary) !important;
}

/* Section heading underline / bar accent */
[class*="section-title"] h2::after,
[class*="section-title"] h3::after {
  background-color: var(--sc-crimson) !important;
}


/* ============================================================
   8. SERVICES SECTION
   ============================================================ */

[class*="service-area"],
[class*="services-area"] {
  background-color: var(--sc-body-bg) !important;
}

/* Service cards */
[class*="service-item"],
[class*="service-box"],
[class*="service-card"],
[class*="tpservice"] {
  background-color: var(--sc-white) !important;
  border: 1px solid var(--sc-border) !important;
  border-top: 3px solid transparent !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
  transition: border-top-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease !important;
}

[class*="service-item"]:hover,
[class*="service-box"]:hover,
[class*="service-card"]:hover,
[class*="tpservice"]:hover {
  border-top-color: var(--sc-crimson) !important;
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.15) !important;
  transform: translateY(-4px) !important;
}

[class*="service-item"] h3,
[class*="service-item"] h4,
[class*="service-box"] h3,
[class*="service-card"] h3,
[class*="tpservice"] h3 {
  color: var(--sc-text-primary) !important;
}

[class*="service-item"] h3:hover,
[class*="service-item"] h4:hover,
[class*="service-item"] a:hover,
[class*="tpservice"] h3 a:hover {
  color: var(--sc-crimson) !important;
}

/* Service icon backgrounds */
[class*="service-icon"],
[class*="service-item"] .icon,
[class*="tpservice"] .icon {
  background-color: rgba(192, 57, 43, 0.08) !important;
  border-radius: 50% !important;
}

[class*="service-icon"] img,
[class*="tpservice"] .icon img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(86%) saturate(700%) hue-rotate(340deg) !important;
}

/* Service arrow icons */
[class*="service-item"] [class*="arrow"],
[class*="tpservice"] [class*="arrow"] {
  color: var(--sc-crimson) !important;
}


/* ============================================================
   9. ABOUT SECTION
   ============================================================ */

[class*="about-area"],
[class*="about-section"] {
  background-color: var(--sc-white) !important;
}

[class*="about-area"] .tp-btn,
[class*="about-section"] .tp-btn,
[class*="about-area"] a[class*="btn"] {
  background-color: var(--sc-crimson) !important;
  border-color: var(--sc-crimson) !important;
  color: #fff !important;
}

[class*="about-area"] .tp-btn:hover {
  background-color: var(--sc-crimson-dark) !important;
  border-color: var(--sc-crimson-dark) !important;
}

/* Highlight lines / borders in about */
[class*="about-area"] [class*="experience"],
[class*="about-area"] [class*="year-badge"] {
  background-color: var(--sc-crimson) !important;
  color: #fff !important;
}


/* ============================================================
   10. INDUSTRY / SECTORS SECTION
   ============================================================ */

[class*="industry-area"],
[class*="sector-area"],
[class*="categories-area"] {
  background-color: var(--sc-section-alt) !important;
}

[class*="industry-item"],
[class*="sector-item"],
[class*="category-item"] {
  background-color: var(--sc-white) !important;
  border: 1px solid var(--sc-border) !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

[class*="industry-item"]:hover,
[class*="sector-item"]:hover {
  background-color: var(--sc-crimson) !important;
  color: #fff !important;
  border-color: var(--sc-crimson) !important;
}


/* ============================================================
   10b. HOME SERVICES — detailed cards (index)
   ============================================================ */

.structarch-services-home {
  background: linear-gradient(180deg, #f4f7f7 0%, #ffffff 55%);
  overflow: visible;
}

.structarch-services-home > .container,
.structarch-services-page > .container {
  width: 100%;
  max-width: 1320px;
}

.structarch-services-home .structarch-services-grid,
.structarch-services-page .structarch-services-grid {
  width: 100%;
}

.structarch-services-home .structarch-services-grid > .row.g-4,
.structarch-services-page .structarch-services-grid > .row.g-4 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 768px) {
  .structarch-services-home .structarch-services-grid > .row.g-4,
  .structarch-services-page .structarch-services-grid > .row.g-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.structarch-services-home .structarch-services-grid > .row.g-4 > [class*='col-'],
.structarch-services-page .structarch-services-grid > .row.g-4 > [class*='col-'] {
  width: 100%;
  max-width: 100%;
  padding: 0;
  flex: none;
}

.service-list li.active > a {
  color: #c0392b !important;
  font-weight: 600;
}

.service-details-content .structarch-service-tagline {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c0392b;
}

.structarch-services-intro .structarch-services-lead {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #4a5c5b;
}

.structarch-services-grid .structarch-service-card {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(6, 50, 49, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(6, 50, 49, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.structarch-services-grid .structarch-service-card:hover {
  box-shadow: 0 16px 40px rgba(6, 50, 49, 0.1);
  transform: translateY(-3px);
}

.structarch-service-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .structarch-services-home .structarch-service-media,
  .structarch-services-page .structarch-service-media {
    height: 240px;
  }
}

.structarch-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.structarch-service-index {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(6, 50, 49, 0.88);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.structarch-service-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.structarch-service-tagline {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c0392b;
}

.structarch-services-grid .structarch-service-card .title {
  margin-top: 0;
  margin-bottom: 12px;
  text-transform: none;
  font-size: 1.35rem;
  line-height: 1.25;
  overflow: visible;
}

.structarch-services-grid .structarch-service-card .title a {
  color: #063231;
  text-decoration: none;
  transition: color 0.2s ease;
}

.structarch-services-grid .structarch-service-card .title a:hover {
  color: #c0392b;
}

.structarch-services-grid .structarch-service-card .desc {
  margin-bottom: 16px;
  font-size: 0.9875rem;
  line-height: 1.65;
  color: #4a5c5b;
}

.structarch-service-points {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  flex: 1;
}

.structarch-service-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #3d4f4e;
}

.structarch-service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c0392b;
}

.structarch-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #063231;
  text-decoration: none;
}

.structarch-service-link i {
  font-size: 0.8125rem;
  transition: transform 0.2s ease;
}

.structarch-service-link:hover {
  color: #c0392b;
}

.structarch-service-link:hover i {
  transform: translateX(4px);
}

.structarch-services-cta {
  margin-top: 48px;
  padding: 28px 24px;
  text-align: center;
  border-radius: 14px;
  background: #063231;
  color: rgba(255, 255, 255, 0.92);
}

.structarch-services-cta p {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.structarch-services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 767px) {
  .structarch-service-body {
    padding: 20px 18px 22px;
  }

  .structarch-services-grid .structarch-service-card .title {
    font-size: 1.2rem;
  }

  .structarch-services-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ============================================================
   10c. SERVICES PAGE — full listing layout
   ============================================================ */

.structarch-services-page {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7f7 40%, #ffffff 100%);
}

.structarch-services-page .structarch-services-intro {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.structarch-services-page .structarch-services-intro .title {
  text-transform: none;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.structarch-services-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}

.structarch-services-stats li {
  position: relative;
  overflow: hidden;
  padding: 18px 16px;
  text-align: center;
  border-radius: 12px;
  background: var(--sc-crimson);
  color: #ffffff;
  border: 2px solid var(--sc-crimson);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.structarch-services-stats li::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  height: 100%;
  background: var(--sc-crimson-dark);
  border-radius: inherit;
  transition: width 0.4s ease-out;
  z-index: 0;
}

.structarch-services-stats li:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(192, 57, 43, 0.28);
  border-color: var(--sc-crimson-dark);
}

.structarch-services-stats li:hover::before {
  width: 100%;
}

.structarch-services-stats strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.structarch-services-stats span {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.structarch-services-group-title {
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(192, 57, 43, 0.25);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #063231;
}

.structarch-services-page .structarch-services-grid {
  margin-bottom: 56px;
}

.structarch-services-compact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.structarch-service-compact {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid rgba(6, 50, 49, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(6, 50, 49, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.structarch-service-compact:hover {
  box-shadow: 0 12px 32px rgba(6, 50, 49, 0.09);
  transform: translateY(-2px);
}

.structarch-service-compact-media {
  display: block;
  overflow: hidden;
  min-height: 100%;
}

.structarch-service-compact-media img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.structarch-service-compact:hover .structarch-service-compact-media img {
  transform: scale(1.04);
}

.structarch-service-compact-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
}

.structarch-service-compact-body .title {
  margin: 0 0 10px;
  text-transform: none;
  font-size: 1.2rem;
  line-height: 1.25;
}

.structarch-service-compact-body .title a {
  color: #063231;
  text-decoration: none;
}

.structarch-service-compact-body .title a:hover {
  color: #c0392b;
}

.structarch-service-compact-body .desc {
  margin: 0 0 14px;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4a5c5b;
}

.structarch-services-page .structarch-services-cta {
  margin-top: 0;
}

.structarch-services-page .ht-services-items.structarch-service-card {
  margin-top: 0;
}

.structarch-services-page .ht-services-items.structarch-service-card .icon {
  display: none;
}

@media (max-width: 991px) {
  .structarch-services-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .structarch-service-compact {
    grid-template-columns: 1fr;
  }

  .structarch-service-compact-media img {
    min-height: 180px;
    max-height: 200px;
  }

  .structarch-services-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   11. PROJECTS / PORTFOLIO SECTION
   ============================================================ */

[class*="project-area"],
[class*="portfolio-area"],
[class*="work-area"] {
  background-color: var(--sc-body-bg) !important;
}

[class*="project-item"],
[class*="portfolio-item"],
[class*="work-item"] {
  border-radius: 4px !important;
  overflow: hidden !important;
}

/* Project overlay on hover */
[class*="project-item"]:hover [class*="overlay"],
[class*="project-item"]:hover [class*="thumb-overlay"],
[class*="portfolio-item"]:hover [class*="overlay"] {
  background-color: rgba(192, 57, 43, 0.82) !important;
}

[class*="project-item"] [class*="category"],
[class*="project-item"] [class*="tag"] {
  background-color: var(--sc-crimson) !important;
  color: #fff !important;
}

/* Project card title */
[class*="project-item"] h3,
[class*="project-item"] h4,
[class*="project-item"] h3 a {
  color: var(--sc-text-primary) !important;
}

[class*="project-item"] h3 a:hover,
[class*="project-item"] h4 a:hover {
  color: var(--sc-crimson) !important;
}

/* Arrow icons on project cards */
[class*="project-item"] [class*="arrow"],
[class*="project-item"] img[src*="arrow"] {
  filter: brightness(0) saturate(100%) invert(22%) sepia(86%) saturate(700%) hue-rotate(340deg) !important;
}


/* ============================================================
   12. PROCESS SECTION (Step 01/02/03)
   ============================================================ */

[class*="working-area"],
[class*="steps-area"] {
  background-color: var(--sc-navy) !important;
}

/* Restore original template green for the main process band */
.ht-process-area:not(.inner-two) {
  background-color: #063231 !important;
}

.ht-process-area.inner-two {
  background-color: #F5F7F7 !important;
}

.ht-process-area .section-title .subtitle {
  color: var(--sc-crimson-light) !important;
}

.ht-process-area h2,
.ht-process-area h3,
.ht-process-area .ht-process-item .title {
  color: #FFFFFF !important;
}

.ht-process-area.inner-two h2,
.ht-process-area.inner-two h3,
.ht-process-area.inner-two .ht-process-item .title {
  color: var(--sc-text-primary) !important;
}

.ht-process-area p,
.ht-process-area .ht-process-item p {
  color: rgba(255, 255, 255, 0.88) !important;
}

.ht-process-area.inner-two p,
.ht-process-area.inner-two .ht-process-item p {
  color: var(--sc-text-body) !important;
}

.ht-process-area .ht-process-item .step {
  background-color: #C3DF94 !important;
  color: #063231 !important;
  border: none !important;
}

.ht-process-area .ht-process-wrapper::before,
.ht-process-area .ht-process-item::before {
  background-color: #294F4E !important;
  opacity: 1 !important;
}

/* Restore brand green for "Why clients choose" section (about page) */
.ht-choose-area {
  background-color: #063231 !important;
}

.ht-choose-area .ht-choose-left .content h2,
.ht-choose-area .ht-choose-right .single-item .content h3 {
  color: #ffffff !important;
}

.ht-choose-area .ht-choose-left .content p,
.ht-choose-area .ht-choose-right .single-item .content p {
  color: rgba(255, 255, 255, 0.88) !important;
}

.ht-choose-area .ht-choose-right .single-item {
  background: rgba(255, 255, 255, 0.1) !important;
}

.ht-choose-area .ht-choose-right .single-item:hover {
  background: var(--ht-theme-color-2, #C3DF94) !important;
}

.ht-choose-area .ht-choose-right .single-item:hover .content h3,
.ht-choose-area .ht-choose-right .single-item:hover .content p {
  color: #063231 !important;
}

/* Service details sidebar — scope card + enquiry */
.ht-service-details-area .ht-sidebar-area.v2 .single-contact {
  display: none;
}

.structarch-service-sidebar-card {
  margin-top: 28px;
  padding: 26px 24px 28px;
  border-radius: 16px;
  background: #063231;
  color: #ffffff;
  text-align: left;
}

.structarch-service-sidebar-label {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sc-crimson-light);
}

.structarch-service-sidebar-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #ffffff !important;
  text-transform: none;
}

.structarch-service-sidebar-note {
  margin: 0 0 18px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82) !important;
}

.structarch-service-sidebar-scope {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
}

.structarch-service-sidebar-scope li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92) !important;
}

.structarch-service-sidebar-scope li i {
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 0.75rem;
  color: var(--sc-crimson-light);
}

.structarch-service-sidebar-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.structarch-service-sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.structarch-service-sidebar-link i {
  width: 18px;
  color: var(--sc-crimson-light);
  text-align: center;
}

.structarch-service-sidebar-link:hover {
  color: var(--sc-crimson-light) !important;
}

.structarch-service-sidebar-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px 20px !important;
  background: var(--sc-crimson) !important;
  color: #ffffff !important;
  border: 2px solid var(--sc-crimson) !important;
  border-radius: 10px !important;
  text-transform: uppercase;
  font-size: 0.875rem !important;
  letter-spacing: 0.04em;
}

.structarch-service-sidebar-btn::before {
  background: var(--sc-crimson-dark) !important;
}

.structarch-service-sidebar-btn:hover {
  color: #ffffff !important;
}

@media (max-width: 991px) {
  .structarch-service-sidebar-card {
    margin-top: 0;
    margin-bottom: 40px;
  }
}

.ht-choose-area .ht-btn.style-4 {
  color: #063231 !important;
}

[class*="working-area"] h2,
[class*="working-area"] h3 {
  color: #FFFFFF !important;
}

[class*="working-area"] p {
  color: #AAAAAA !important;
}

[class*="working-area"] [class*="number"] {
  color: var(--sc-crimson) !important;
  border-color: var(--sc-crimson) !important;
}

[class*="working-area"] [class*="line"] {
  background-color: var(--sc-crimson) !important;
  opacity: 0.4 !important;
}


/* ============================================================
   13. TEAM SECTION
   ============================================================ */

[class*="team-area"],
[class*="our-team"] {
  background-color: var(--sc-white) !important;
}

[class*="team-item"],
[class*="team-box"],
[class*="team-card"] {
  background-color: var(--sc-white) !important;
  border: 1px solid var(--sc-border) !important;
  transition: box-shadow 0.25s ease, transform 0.25s ease !important;
}

[class*="team-item"]:hover,
[class*="team-box"]:hover {
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.15) !important;
  transform: translateY(-4px) !important;
}

/* Team role tag */
[class*="team-item"] [class*="designation"],
[class*="team-item"] [class*="position"],
[class*="team-item"] span[class*="role"] {
  color: var(--sc-crimson) !important;
  font-weight: 600 !important;
}

/* Team social icons on hover */
[class*="team-item"] [class*="social"] a:hover {
  background-color: var(--sc-crimson) !important;
  border-color: var(--sc-crimson) !important;
  color: #fff !important;
}


/* ============================================================
   14. TESTIMONIALS SECTION
   ============================================================ */

[class*="testimonial-area"],
[class*="testi-area"],
[class*="review-area"] {
  background-color: var(--sc-section-alt) !important;
}

[class*="testimonial-item"],
[class*="testi-item"],
[class*="review-item"] {
  background-color: var(--sc-white) !important;
  border-left: 4px solid var(--sc-crimson) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07) !important;
}

/* Quote mark */
[class*="testimonial-item"]::before,
[class*="testi-item"]::before,
[class*="testi-quote"],
[class*="quote-icon"] {
  color: var(--sc-crimson) !important;
  opacity: 0.25 !important;
}

[class*="testimonial-item"] [class*="name"],
[class*="testi-item"] [class*="author"],
[class*="testi-item"] h5 {
  color: var(--sc-crimson) !important;
}


/* ============================================================
   15. CLIENT LOGOS / TRUSTED BY SECTION
   ============================================================ */

[class*="client-area"],
[class*="brand-area"],
[class*="partner-area"],
[class*="logo-area"] {
  background-color: var(--sc-navy) !important;
  border-top: 1px solid #2a2a2a !important;
  border-bottom: 1px solid #2a2a2a !important;
}

[class*="client-area"] p,
[class*="brand-area"] p,
[class*="client-area"] span,
[class*="brand-area"] span {
  color: #AAAAAA !important;
}

/* Make logos work on dark bg */
[class*="client-area"] img,
[class*="brand-area"] img {
  filter: brightness(0) invert(1) !important;
  opacity: 0.55 !important;
  transition: opacity 0.2s ease !important;
}

[class*="client-area"] img:hover,
[class*="brand-area"] img:hover {
  opacity: 1 !important;
}

/* Homepage client logo marquee */
.structarch-clients-area {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7f7 100%) !important;
  border-top: none !important;
  border-bottom: none !important;
}

.structarch-clients-area p,
.structarch-clients-area span {
  color: #4a5c5b !important;
}

.structarch-clients-lead {
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.65;
}

.structarch-clients-marquee {
  margin-top: 36px;
  padding: 8px 0 4px;
}

.structarch-clients-marquee-inner {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.structarch-clients-track {
  display: flex;
  width: max-content;
  animation: structarchClientsScroll 55s linear infinite;
}

.structarch-clients-marquee:hover .structarch-clients-track {
  animation-play-state: paused;
}

@keyframes structarchClientsScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.structarch-clients-set {
  display: flex;
  align-items: center;
  gap: 56px;
  list-style: none;
  margin: 0;
  padding: 0 28px;
}

.structarch-client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  max-width: 220px;
  height: 92px;
  padding: 12px 18px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(6, 50, 49, 0.1);
  box-shadow: 0 4px 14px rgba(6, 50, 49, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.structarch-client-logo:hover {
  box-shadow: 0 8px 22px rgba(6, 50, 49, 0.1);
  transform: translateY(-2px);
}

.ht-clients-area.structarch-clients-area img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  transition: transform 0.25s ease !important;
}

.ht-clients-area.structarch-clients-area img:hover {
  transform: scale(1.03);
}

.structarch-client-logo--dark img {
  height: 52px;
  max-width: 180px;
  border-radius: 6px;
}

.structarch-client-logo--text {
  padding: 12px 16px;
}

.structarch-client-name {
  display: block;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  color: #063231 !important;
}

.structarch-client-name.is-compact {
  font-size: 0.9375rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .structarch-clients-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 20px;
  }

  .structarch-clients-set[aria-hidden="true"] {
    display: none;
  }

  .structarch-clients-marquee-inner {
    mask-image: none;
    overflow: visible;
  }

  .structarch-clients-set {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
  }
}

@media (max-width: 767px) {
  .structarch-clients-set {
    gap: 40px;
  }

  .structarch-client-logo {
    min-width: 148px;
    height: 84px;
  }

  .ht-clients-area.structarch-clients-area img {
    height: 50px;
    max-width: 170px;
  }

  .structarch-client-name {
    font-size: 1rem;
  }

  .structarch-client-name.is-compact {
    font-size: 0.875rem;
  }
}

/* ============================================================
   16. FOOTER
   ============================================================ */

footer,
.tp-footer-area,
[class*="footer-area"],
[class*="footer-wrap"] {
  background-color: var(--sc-navy) !important;
  color: #AAAAAA !important;
  border-top: 3px solid var(--sc-crimson) !important;
}

/* Footer headings */
footer h4,
footer h5,
.tp-footer-area h4,
.tp-footer-area h5,
[class*="footer-area"] h4,
[class*="footer-area"] h5,
[class*="footer-widget"] h3,
[class*="footer-widget"] h4 {
  color: #FFFFFF !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
}

/* Footer links */
footer a,
.tp-footer-area a,
[class*="footer-area"] a,
[class*="footer-widget"] a {
  color: #AAAAAA !important;
  transition: color 0.2s ease !important;
}

footer a:hover,
.tp-footer-area a:hover,
[class*="footer-area"] a:hover,
[class*="footer-widget"] a:hover {
  color: var(--sc-crimson-light) !important;
}

/* Footer logo area */
[class*="footer-logo"],
[class*="footer-widget"] p {
  color: #888888 !important;
}

/* Footer bottom bar */
[class*="footer-bottom"],
[class*="copyright-area"],
[class*="bottom-bar"] {
  background-color: var(--sc-topbar-bg) !important;
  border-top: 1px solid #2a2a2a !important;
  color: #666666 !important;
}

[class*="footer-bottom"] a,
[class*="copyright-area"] a {
  color: var(--sc-crimson-light) !important;
}

/* Restore original template green footer (matches process section) */
.ht-footer-area {
  background-color: #063231 !important;
  border-top: none !important;
}

.ht-footer-area .ht-footer-top-left p,
.ht-footer-area .ht-footer-top-left .desc,
.ht-footer-area .ht-footer-widget-items .head,
.ht-footer-area .ht-footer-widget-items .link-list li > a,
.ht-footer-area .ht-footer-copyright p {
  color: #FFFFFF !important;
}

.ht-footer-area .ht-footer-widget-items .link-list li > a:hover {
  color: var(--sc-crimson-light) !important;
}

.ht-footer-area .ht-footer-widget-wrapper,
.ht-footer-area .ht-footer-copyright {
  border-top-color: #294F4E !important;
}

.ht-footer-area .footer-social li {
  background-color: #1f4746 !important;
}

.ht-footer-area .footer-social li a {
  color: #FFFFFF !important;
}

.ht-footer-area .footer-social li:hover {
  background-color: var(--sc-crimson) !important;
}


/* ============================================================
   17. SOCIAL ICONS (global)
   ============================================================ */

[class*="social-icon"] a,
[class*="tp-social"] a {
  background-color: #2a2a2a !important;
  color: #CCCCCC !important;
  border: 1px solid #3a3a3a !important;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

[class*="social-icon"] a:hover,
[class*="tp-social"] a:hover {
  background-color: var(--sc-crimson) !important;
  color: #fff !important;
  border-color: var(--sc-crimson) !important;
}


/* ============================================================
   18. ALL BUTTONS (global catch-all)
   ============================================================ */

.tp-btn,
a.tp-btn,
button.tp-btn,
[class*="tp-btn"],
[class*="theme-btn"],
[class*="main-btn"],
input[type="submit"],
button[type="submit"] {
  background-color: var(--sc-crimson) !important;
  border-color: var(--sc-crimson) !important;
  color: #FFFFFF !important;
  border-radius: 3px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease !important;
}

.tp-btn:hover,
a.tp-btn:hover,
button.tp-btn:hover,
[class*="tp-btn"]:hover,
[class*="theme-btn"]:hover,
[class*="main-btn"]:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
  background-color: var(--sc-crimson-dark) !important;
  border-color: var(--sc-crimson-dark) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(192, 57, 43, 0.35) !important;
}

/* Outline / secondary buttons */
[class*="btn-border"],
[class*="btn-outline"],
a[class*="btn-white"] {
  background-color: transparent !important;
  border: 2px solid var(--sc-crimson) !important;
  color: var(--sc-crimson) !important;
}

[class*="btn-border"]:hover,
[class*="btn-outline"]:hover {
  background-color: var(--sc-crimson) !important;
  color: #fff !important;
}


/* ============================================================
   19. FORMS & CONTACT
   ============================================================ */

[class*="contact-area"],
[class*="contact-form"] {
  background-color: var(--sc-body-bg) !important;
}

[class*="contact-area"] input,
[class*="contact-area"] textarea,
[class*="contact-area"] select,
[class*="contact-form"] input,
[class*="contact-form"] textarea {
  background-color: var(--sc-white) !important;
  border: 1px solid var(--sc-border) !important;
  color: var(--sc-text-body) !important;
  border-radius: 3px !important;
  transition: border-color 0.2s ease !important;
}

[class*="contact-area"] input:focus,
[class*="contact-area"] textarea:focus,
[class*="contact-form"] input:focus,
[class*="contact-form"] textarea:focus {
  border-color: var(--sc-crimson) !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12) !important;
  outline: none !important;
}


/* ============================================================
   20. BREADCRUMB — brand green (#063231)
   ============================================================ */

.ht-breadcrumb-area,
[class*="breadcrumb-area"],
[class*="page-title-area"],
[class*="inner-banner"] {
  background-color: #063231 !important;
  border-bottom: 2px solid var(--sc-crimson) !important;
}

.ht-breadcrumb-area .ht-breadcrumb-title,
[class*="breadcrumb-area"] h1,
[class*="breadcrumb-area"] h2,
[class*="page-title-area"] h1,
[class*="inner-banner"] h1 {
  color: #ffffff !important;
}

.ht-breadcrumb-area .ht-breadcrumb-list li a,
.ht-breadcrumb-area .ht-breadcrumb-list li i {
  color: #ffffff !important;
}

.ht-breadcrumb-area .ht-breadcrumb-list li a:hover,
.ht-breadcrumb-area .ht-breadcrumb-list li i:hover {
  color: var(--sc-crimson-light) !important;
}

.ht-breadcrumb-area .ht-breadcrumb-list li.active,
[class*="breadcrumb"] .active,
[class*="breadcrumb"] li:last-child {
  color: var(--sc-crimson-light) !important;
}

[class*="breadcrumb"] li,
[class*="breadcrumb"] span {
  color: rgba(255, 255, 255, 0.85) !important;
}

[class*="breadcrumb"] li a:hover {
  color: var(--sc-crimson-light) !important;
}


/* ============================================================
   21. SECTION ALTERNATING BACKGROUNDS
   ============================================================ */

section:nth-of-type(even):not(.ht-choose-area):not(.ht-process-area):not(.ht-hero-area) {
  background-color: var(--sc-section-alt);
}

section:nth-of-type(odd):not(.ht-choose-area):not(.ht-process-area):not(.ht-hero-area) {
  background-color: var(--sc-body-bg);
}


/* ============================================================
   22. LINKS (global)
   ============================================================ */

a {
  transition: color 0.2s ease !important;
}

a:hover {
  color: var(--sc-crimson) !important;
}


/* ============================================================
   23. SCROLLBAR (webkit browsers)
   ============================================================ */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--sc-section-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--sc-crimson);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--sc-crimson-dark);
}


/* ============================================================
   24. SELECTION HIGHLIGHT
   ============================================================ */

::selection {
  background-color: var(--sc-crimson);
  color: #ffffff;
}


/* ============================================================
   END OF STRUCTARCH TITANIUM & CRIMSON THEME
   ============================================================ */


/* ============================================================
   25. HERO VIDEO PANEL (replaces portrait <img>)
   ============================================================ */

/* Full-bleed hero background video */
.ht-hero-area--video {
  position: relative;
  overflow: hidden;
  background-color: var(--sc-navy) !important;
  background-image: none !important;
  min-height: 100vh;
  min-height: 100svh;
  isolation: isolate;
}

.ht-hero-area--video::before {
  display: none !important;
}

.ht-hero-area--video.ht-hero-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 !important;
}

.ht-hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.ht-hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  display: block;
  z-index: 0;
}

.ht-hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(26, 26, 26, 0.88) 0%,
    rgba(26, 26, 26, 0.72) 38%,
    rgba(26, 26, 26, 0.48) 72%,
    rgba(26, 26, 26, 0.32) 100%
  );
  pointer-events: none;
}

.ht-hero-area--video .ht-hero-content h1 span {
  color: var(--sc-crimson-light);
}

.ht-hero-area--video > .ht-hero-shape {
  display: none;
}

.ht-hero-area--video > .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(1280px, 92vw);
  padding-top: clamp(64px, 11vh, 112px);
  padding-bottom: clamp(72px, 10vh, 128px);
  padding-inline: clamp(24px, 4vw, 48px);
}

.ht-hero-area--video .ht-hero-content {
  max-width: min(720px, 82vw);
}

.ht-hero-area--video .ht-hero-content h1 {
  font-size: clamp(2.25rem, 3.6vw + 0.5rem, 4.5rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.02em !important;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
}

.ht-hero-area--video .ht-hero-content .desc {
  font-size: clamp(1.0625rem, 1vw + 0.5rem, 1.3125rem) !important;
  font-weight: 500;
  margin-top: clamp(16px, 2.5vh, 24px) !important;
  margin-bottom: clamp(20px, 3vh, 32px) !important;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}

.ht-hero-area--video .ht-hero-content .ht-btn {
  font-size: clamp(0.9375rem, 0.4vw + 0.7rem, 1.0625rem) !important;
  padding: clamp(16px, 1.8vh, 22px) clamp(28px, 2.8vw, 40px) !important;
  border-radius: 12px;
  letter-spacing: 0.04em;
}

@media (min-width: 1400px) {
  .ht-hero-area--video .ht-hero-content {
    max-width: min(780px, 78vw);
  }

  .ht-hero-area--video .ht-hero-content h1 {
    font-size: clamp(3.75rem, 2.8vw + 1.25rem, 5rem) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ht-hero-video-bg video {
    display: none;
  }
  .ht-hero-video-bg {
    background: url("../video/hero-cad-poster.jpg") center/cover no-repeat;
  }
}


/* ============================================================
   26. HOMEPAGE — TRANSPARENT HEADER OVER VIDEO HERO
   ============================================================ */

body:has(.ht-hero-area--video) .ht-header-area.header-1 {
  background: transparent !important;
}

body:has(.ht-hero-area--video) .ht-header-area .ht-main-header.header-1 .ht-menu-wrapper {
  background: var(--sc-white) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--sc-border) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12) !important;
  margin-top: 20px;
}

body:has(.ht-hero-area--video) .ht-header-area .ht-main-header .ht-menu-main ul li > a {
  color: var(--sc-text-primary) !important;
}

body:has(.ht-hero-area--video) .ht-header-area .ht-main-header .ht-menu-main ul li:hover > a {
  color: var(--sc-crimson) !important;
}

body:has(.ht-hero-area--video) .ht-header-area .ht-main-header .ht-menu-right .ht-menu-btn i {
  color: var(--sc-text-primary) !important;
}

body:has(.ht-hero-area--video) .ht-hero-area--video {
  margin-top: -90px;
  padding-top: 90px;
  min-height: calc(100svh + 90px);
  min-height: calc(100dvh + 90px);
}

@media (min-width: 992px) {
  body:has(.ht-hero-area--video) .ht-hero-area--video {
    min-height: calc(100svh + 90px);
    min-height: calc(100dvh + 90px);
  }
}

@media (max-width: 991px) {
  body:has(.ht-hero-area--video) .ht-hero-area--video {
    margin-top: 0;
    padding-top: clamp(88px, 14vw, 110px);
    min-height: 100svh;
    min-height: 100dvh;
  }

  body:has(.ht-hero-area--video) .ht-header-area .ht-main-header.header-1 .ht-menu-wrapper {
    margin-top: 12px;
  }

  .ht-hero-video-bg video {
    display: none;
  }

  .ht-hero-video-bg {
    background: url("../video/hero-cad-poster.jpg") center/cover no-repeat;
  }

  .ht-hero-area--video > .container {
    padding-top: clamp(48px, 10vh, 80px);
    padding-bottom: clamp(56px, 10vh, 96px);
    padding-inline: clamp(20px, 5vw, 32px);
  }

  .ht-hero-area--video .ht-hero-content {
    max-width: min(520px, 90vw);
  }

  .ht-hero-area--video .ht-hero-content h1 {
    font-size: clamp(1.75rem, 5.5vw, 2.5rem) !important;
    line-height: 1.15 !important;
    text-transform: none;
  }

  .ht-hero-area--video .ht-hero-content .desc {
    font-size: clamp(1rem, 3.2vw, 1.125rem) !important;
    margin-top: clamp(12px, 2vh, 18px) !important;
    margin-bottom: clamp(16px, 2.5vh, 24px) !important;
  }

  .ht-hero-area--video .ht-hero-content .ht-btn {
    font-size: 0.875rem !important;
    padding: 16px 28px !important;
  }

  .ht-hero-area--video .ht-hero-content h1 br {
    display: none;
  }
}


/* ============================================================
   26b. STICKY HEADER — keep GET A QUOTE vertically centered
   ============================================================ */

@media (min-width: 992px) {
  /*
   * Parent .ht-header-area.header-1 is already position:fixed.
   * Base .sticky re-applies fixed + slide transform on #header-sticky,
   * collapsing the outer header and shifting/clipping the CTA row.
   */
  .ht-header-area .ht-main-header.header-1.sticky {
    position: static !important;
    top: auto !important;
    width: 100% !important;
    animation: none !important;
    transform: none !important;
    overflow: visible !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .ht-header-area .ht-main-header.header-1.sticky .ht-menu-wrapper {
    display: flex !important;
    align-items: center !important;
    margin-top: 20px !important;
    padding: 0 20px !important;
    overflow: visible !important;
  }

  .ht-header-area .ht-main-header.header-1.sticky .ht-menu-left,
  .ht-header-area .ht-main-header.header-1.sticky .ht-menu-right {
    display: flex !important;
    align-items: center !important;
    align-self: stretch !important;
  }

  .ht-header-area .ht-main-header.header-1.sticky .ht-menu-right .ht-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }
}

/* Video hero: keep the same sticky bar spacing as inner pages */
body:has(.ht-hero-area--video) .ht-header-area .ht-main-header.header-1.sticky .ht-menu-wrapper {
  margin-top: 20px !important;
}


/* ============================================================
   27. STRUCTARCH BRAND LOGO
   ============================================================ */

.ht-menu-logo img,
.ht-offcanvas-logo img {
  height: 48px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
  display: block;
}

/* Mobile offcanvas — match desktop flat navigation */
.ht-offcanvas-menu ul li > a {
  color: #063231 !important;
  border-bottom: 1px solid rgba(6, 50, 49, 0.1) !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px 0;
}

.ht-offcanvas-menu ul li > a:hover,
.ht-offcanvas-menu ul li.active > a {
  color: #c0392b !important;
}

.ht-offcanvas-menu ul li .sub-menu,
.ht-offcanvas-menu ul li .ht-menu-close {
  display: none !important;
}

.ht-offcanvas-quote-item {
  margin-top: 18px;
  padding-top: 8px;
  border-top: 1px solid rgba(6, 50, 49, 0.1);
}

.ht-offcanvas-quote-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px !important;
  border-radius: 999px !important;
  border: none !important;
  background: #c0392b !important;
  color: #ffffff !important;
  text-transform: uppercase;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
}

.ht-offcanvas-quote-link:hover {
  background: #a93226 !important;
  color: #ffffff !important;
}

.ht-footer-top-left > a img,
.ht-footer-info > a img {
  height: auto;
  max-height: 56px;
  width: auto;
  max-width: min(240px, 70vw);
  object-fit: contain;
  display: inline-block;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   NICE SELECT — keep dropdown lists visible & clickable
   ============================================================ */

.nice-select {
  overflow: visible;
}

.nice-select.open {
  z-index: 100;
}

.nice-select .list {
  z-index: 101;
}

/* ============================================================
   SOCIAL COMING SOON PAGE
   ============================================================ */

.ht-social-coming-soon-area {
  background: linear-gradient(180deg, #f8fafa 0%, #ffffff 100%);
  min-height: clamp(520px, 72vh, 780px);
  display: flex;
  align-items: center;
}

.ht-social-coming-soon-area .container {
  width: 100%;
}

.ht-social-coming-soon-content {
  max-width: min(880px, 92vw);
  margin: 0 auto;
  padding: clamp(48px, 8vh, 88px) clamp(28px, 5vw, 56px) clamp(64px, 10vh, 100px);
}

.ht-social-coming-soon-content .platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(120px, 14vw, 168px);
  height: clamp(120px, 14vw, 168px);
  margin-bottom: clamp(32px, 4vh, 48px);
  border-radius: 50%;
  background-color: #063231;
  color: #ffffff;
  font-size: clamp(52px, 6vw, 76px);
  box-shadow: 0 16px 40px rgba(6, 50, 49, 0.28);
}

.ht-social-coming-soon-content .platform-label {
  margin-bottom: clamp(10px, 1.5vh, 16px);
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #063231;
}

.ht-social-coming-soon-content .platform-name {
  margin-bottom: clamp(12px, 2vh, 20px);
  font-size: clamp(2.25rem, 4.5vw + 0.25rem, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #063231 !important;
}

.ht-social-coming-soon-content .coming-soon-title {
  margin-bottom: clamp(20px, 3vh, 32px);
  font-size: clamp(1.75rem, 3.2vw + 0.25rem, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #C0392B !important;
}

.ht-social-coming-soon-content .coming-soon-desc {
  max-width: min(720px, 88vw);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(36px, 5vh, 52px);
  font-size: clamp(1.0625rem, 1.2vw + 0.5rem, 1.375rem);
  line-height: 1.75;
  color: #4a5c5b;
}

.ht-social-coming-soon-content .ht-btn {
  font-size: clamp(1rem, 0.8vw + 0.75rem, 1.125rem);
  padding: clamp(18px, 2vh, 24px) clamp(36px, 4vw, 52px);
  min-width: clamp(200px, 28vw, 260px);
}

@media (max-width: 575px) {
  .ht-social-coming-soon-area {
    min-height: auto;
  }

  .ht-social-coming-soon-content .platform-name {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .ht-social-coming-soon-content .coming-soon-title {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }
}

/* ============================================================
   THANK YOU PAGE (form submission success)
   ============================================================ */

.page-thank-you #preloader {
  display: none !important;
}

.page-thank-you {
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-width: 100%;
}

.page-thank-you .ht-thank-you-area .container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

.page-thank-you .ht-thank-you-card {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  box-sizing: border-box;
}

.page-thank-you .ht-footer-area {
  overflow: visible;
}

.ht-thank-you-hero .ht-breadcrumb-heading {
  padding: clamp(120px, 14vh, 168px) 16px clamp(44px, 5vh, 64px);
}

.page-thank-you .ht-thank-you-hero .ht-breadcrumb-title {
  font-size: clamp(1.75rem, 3vw + 0.75rem, 2.75rem);
  line-height: 1.15;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

.ht-thank-you-hero {
  padding-bottom: 0;
}

.ht-thank-you-area {
  background: linear-gradient(180deg, #eef3f3 0%, #f8fafa 48%, #ffffff 100%);
  margin-top: clamp(-28px, -3vh, -16px);
  padding: 0 0 clamp(56px, 8vh, 88px);
}

.ht-thank-you-card {
  max-width: min(760px, 94vw);
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(6, 50, 49, 0.08);
  box-shadow:
    0 24px 64px rgba(6, 50, 49, 0.1),
    0 4px 16px rgba(6, 50, 49, 0.04);
  overflow: visible;
}

.ht-thank-you-content {
  padding: clamp(52px, 7vh, 68px) clamp(28px, 5vw, 48px) clamp(28px, 4vh, 36px);
  border-bottom: 1px solid rgba(6, 50, 49, 0.08);
}

.ht-thank-you-content .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 10vw, 96px);
  height: clamp(72px, 10vw, 96px);
  margin: clamp(-40px, -5vh, -28px) auto clamp(20px, 2.5vh, 28px);
  border-radius: 50%;
  background: linear-gradient(145deg, #063231 0%, #0a4a48 100%);
  color: #ffffff;
  font-size: clamp(32px, 4vw, 42px);
  border: 5px solid #ffffff;
  box-shadow: 0 12px 32px rgba(6, 50, 49, 0.22);
  animation: thank-you-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes thank-you-pop {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.ht-thank-you-content .thank-you-label {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c0392b;
}

.ht-thank-you-content .thank-you-title {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2vw + 0.75rem, 2rem) !important;
  font-weight: 700;
  line-height: 1.25;
  color: #063231 !important;
  text-transform: none !important;
  letter-spacing: 0;
}

.ht-thank-you-content .thank-you-desc {
  max-width: 560px;
  margin: 0 auto 20px;
  font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #4a5c5b;
}

.thank-you-response-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f4f8f8;
  font-size: 0.9375rem;
  color: #3d4f4e;
}

.thank-you-response-time i {
  color: #063231;
}

.thank-you-steps {
  padding: clamp(28px, 4vh, 36px) clamp(28px, 5vw, 48px);
  background: #fafbfb;
}

.thank-you-steps-title {
  margin-bottom: 20px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #063231;
  text-align: center;
}

.thank-you-steps-list {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thank-you-steps-list li::marker {
  content: none;
}

.thank-you-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9875rem;
  line-height: 1.6;
  color: #3d4f4e;
}

.thank-you-steps-list .step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #063231;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
}

.thank-you-contact-strip {
  padding: clamp(24px, 3vh, 32px) clamp(28px, 5vw, 48px);
  text-align: center;
  border-top: 1px solid rgba(6, 50, 49, 0.08);
}

.thank-you-contact-heading {
  margin-bottom: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #063231;
}

.thank-you-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}

.thank-you-contact-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
}

.thank-you-contact-list i {
  color: #c0392b;
}

.thank-you-contact-list a {
  color: #063231;
  font-weight: 600;
  text-decoration: none;
}

.thank-you-contact-list a:hover {
  color: #c0392b;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding: clamp(28px, 4vh, 36px) clamp(28px, 5vw, 48px);
}

.thank-you-actions .ht-btn {
  font-size: 0.9375rem;
  padding: 16px 32px;
  min-width: 168px;
}

@media (max-width: 575px) {
  .page-thank-you .ht-thank-you-hero .ht-breadcrumb-heading {
    padding: 104px 12px 36px;
  }

  .page-thank-you .ht-thank-you-hero .ht-breadcrumb-title {
    max-width: none;
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .ht-btn {
    width: 100%;
  }

  .thank-you-contact-list {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ht-thank-you-content .success-icon {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   21. LEGAL PAGES
   -------------------------------------------------------------------------- */
.ht-legal-area {
  background: #ffffff;
}

.ht-legal-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: #3d4f4e;
}

.ht-legal-content h2 {
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
  color: #063231;
}

.ht-legal-content h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #063231;
}

.ht-legal-content p,
.ht-legal-content li {
  margin-bottom: 14px;
}

.ht-legal-content ul,
.ht-legal-content ol {
  padding-left: 1.4rem;
  margin-bottom: 18px;
}

.ht-legal-content a {
  color: #C0392B;
  text-decoration: underline;
}

.ht-legal-content a:hover {
  color: #063231;
}

.ht-legal-content .legal-updated {
  display: inline-block;
  margin-bottom: 28px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #063231;
  background: #f0f5f5;
  border-radius: 4px;
}

.ht-legal-content .legal-contact {
  margin-top: 32px;
  padding: 20px 24px;
  background: #f8fafa;
  border-left: 4px solid #C0392B;
  border-radius: 0 6px 6px 0;
}

/* Footer legal links */
.ht-footer-copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 14px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #C0392B;
}

.footer-legal-links .sep {
  color: rgba(255, 255, 255, 0.4);
  user-select: none;
}

/* Form privacy consent */
.form-privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 8px;
  text-align: left;
  font-size: 14px;
  color: #555;
}

.form-privacy-consent input[type="checkbox"] {
  width: auto;
  margin: 4px 0 0;
  flex-shrink: 0;
}

.form-privacy-consent label {
  margin: 0;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
}

.form-privacy-consent a {
  color: #C0392B;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   22. COOKIE CONSENT BANNER
   -------------------------------------------------------------------------- */
.structarch-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 16px 20px;
  background-color: #063231;
  color: #ffffff;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.structarch-cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.structarch-cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.structarch-cookie-banner__text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.structarch-cookie-banner__text a {
  color: #ffffff;
  text-decoration: underline;
}

.structarch-cookie-banner__text a:hover {
  color: #C0392B;
}

.structarch-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.structarch-cookie-banner__link {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.structarch-cookie-banner__link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.structarch-cookie-banner__btn {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.structarch-cookie-banner__btn--accept {
  background-color: #C0392B;
  color: #ffffff;
}

.structarch-cookie-banner__btn--accept:hover {
  background-color: #a93226;
}

@media (max-width: 575px) {
  .structarch-cookie-banner__actions {
    width: 100%;
  }

  .structarch-cookie-banner__link,
  .structarch-cookie-banner__btn {
    flex: 1;
    text-align: center;
  }

  .ht-footer-copyright {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   ACCESSIBILITY — skip link & keyboard focus
   ============================================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100000;
  padding: 0.75rem 1.25rem;
  background: var(--sc-crimson);
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
  outline: none;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.35);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.ht-btn:focus-visible,
.nice-select:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.35) !important;
}

[class*="contact-area"] input:focus-visible,
[class*="contact-area"] textarea:focus-visible,
[class*="contact-form"] input:focus-visible,
[class*="contact-form"] textarea:focus-visible {
  border-color: var(--sc-crimson) !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.35) !important;
  outline: none !important;
}

/* Team profile card — clickable link to detail page */
a.ht-team-item-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: inherit;
}

a.ht-team-item-link:hover .ht-team-items,
a.ht-team-item-link:focus-visible .ht-team-items {
  box-shadow: 0 12px 32px rgba(6, 50, 49, 0.12);
  transform: translateY(-3px);
}

a.ht-team-item-link .ht-team-items {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

a.ht-team-item-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.35);
  border-radius: 12px;
}

a.ht-team-item-link:hover .ht-team-content--profile .name {
  color: #c0392b;
}

/* Service FAQ accordion */
.structarch-faq-area {
  background: var(--sc-body-bg);
}

.structarch-faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.structarch-faq-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 1.25rem;
  color: var(--sc-text-primary);
}

.structarch-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.structarch-faq-item {
  background: var(--sc-white);
  border: 1px solid var(--sc-border);
  border-radius: 10px;
  padding: 0.25rem 1rem;
}

.structarch-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--sc-text-primary);
  padding: 0.85rem 0;
  list-style: none;
}

.structarch-faq-item summary::-webkit-details-marker {
  display: none;
}

.structarch-faq-item summary::after {
  content: '+';
  float: right;
  color: var(--sc-crimson);
  font-weight: 700;
}

.structarch-faq-item[open] summary::after {
  content: '−';
}

.structarch-faq-item p {
  margin: 0 0 1rem;
  color: var(--sc-text-body);
  line-height: 1.65;
}

.structarch-faq-cta {
  margin-top: 1.25rem;
  color: var(--sc-text-muted);
}

.structarch-faq-cta a {
  color: var(--sc-crimson);
  font-weight: 600;
}

/* Insights index + articles */
.structarch-insights-index {
  background: var(--sc-body-bg);
}

.structarch-insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}

.structarch-insight-card {
  background: var(--sc-white);
  border: 1px solid var(--sc-border);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}

.structarch-insight-card h3 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.structarch-insight-card h3 a {
  color: var(--sc-text-primary);
  text-decoration: none;
}

.structarch-insight-card h3 a:hover {
  color: var(--sc-crimson);
}

.structarch-insight-meta {
  font-size: 0.85rem;
  color: var(--sc-text-muted);
  margin-bottom: 0.75rem;
}

.structarch-insight-article h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
}

.structarch-services-insights-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--sc-white);
  border: 1px solid var(--sc-border);
  border-radius: 12px;
  text-align: center;
}

.structarch-services-insights-cta h3 {
  margin-bottom: 0.75rem;
}

.structarch-services-insights-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.structarch-services-insights-links a {
  color: var(--sc-crimson);
  font-weight: 600;
}
