@charset "UTF-8";
:root {
  --scg-primary: #bb9449;
  --scg-primary-dk: #C2B292;
  --scg-primary-lt: #F5EFE3;
  --scg-secondary: #6C757D;
  --scg-secondary-lt: #8E959C;
  --scg-bg: #FAF8F4;
  --scg-bg-alt: #F3F0EA;
  --scg-section-2: #F0ECE3;
  --scg-section-3: #EBE6DC;
  --scg-dark: #E8E6E1;
  --scg-dark-2: #2C2C2C;
  --scg-text: #111111;
  --scg-muted: #4A4A4A;
  --scg-border: #E0DCD4;
  --scg-white: #FFFFFF;
  --scg-footer-text: #1A1A1A;
  --font-display: 'Quicksand', sans-serif;
  --font-body: 'Quicksand', sans-serif;
  --ease: 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 18px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font-body);
  background: var(--scg-white);
  color: var(--scg-muted);
  overflow-x: hidden;
  line-height: 1.75;
  font-size: 1.05rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.rating {
  color: var(--scg-primary);
  font-size: 20px;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--scg-secondary);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 5px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--scg-primary);
  flex-shrink: 0;
  border-radius: 2px;
}
.eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}
.eyebrow--light::before {
  background: var(--scg-primary);
}

.section-heading {
  font-family: var(--font-display);
  font-size: 2.5em;
  line-height: 1.15;
  color: #2b353d;
  font-weight: 400;
}

.divider-line {
  width: 44px;
  height: 3px;
  background: var(--scg-primary);
  border-radius: 3px;
  margin: 12px 0 0;
}
.divider-line--center {
  margin: 12px auto 0;
}

.btn-scg {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  border-radius: 3px;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn-scg svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-scg--primary {
  background: var(--scg-primary);
  color: var(--scg-white);
}
.btn-scg--primary:hover {
  background: var(--scg-primary-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 197, 169, 0.35);
  color: var(--scg-text);
}
.btn-scg--outline-login {
  background: transparent;
  border: 2px solid var(--scg-primary);
  color: var(--scg-primary);
}
.btn-scg--outline-login:hover {
  background: var(--scg-primary);
  transform: translateY(-1px);
  color: var(--scg-text);
  box-shadow: 0 8px 24px rgba(212, 197, 169, 0.35);
}
.btn-scg--ghost {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-scg--ghost:hover {
  background: var(--scg-primary);
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 8px 24px rgba(212, 197, 169, 0.35);
}
.btn-scg--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-scg--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.btn-scg--outline-dark {
  background: transparent;
  border: 2px solid var(--scg-border);
  color: var(--scg-text);
}
.btn-scg--outline-dark:hover {
  border-color: var(--scg-primary);
  color: var(--scg-primary);
}
.btn-scg--white {
  background: var(--scg-white);
  color: var(--scg-primary);
}
.btn-scg--white:hover {
  background: var(--scg-primary-lt);
  color: var(--scg-primary-dk);
}

.btn-scg--outline-login {
  background: transparent;
  border: 2px solid var(--scg-primary);
  color: var(--scg-primary);
}
.btn-scg--outline-login:hover {
  background: var(--scg-primary);
  color: var(--scg-text);
}

.top-bar {
  background: var(--scg-muted);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  padding: 10px 0;
}
.top-bar .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.top-bar a:hover {
  color: #fff;
}
.top-bar a svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}
.top-bar .top-phone {
  color: rgba(255, 255, 255, 0.92);
}
@media (max-width: 576px) {
  .top-bar .top-bar-inner {
    justify-content: center;
    gap: 18px;
  }
  .top-bar .top-yt {
    display: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: var(--scg-white);
}
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 87%;
  height: 1px;
  background: var(--scg-border);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  min-height: 120px;
  gap: 30px;
  padding-top: 30px;
}
.site-header .header-logo img {
  height: 100px;
  width: auto;
  max-width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header .header-divider {
  width: 1px;
  height: 80px;
  background: var(--scg-border);
}
@media (max-width: 992px) {
  .site-header .header-divider {
    display: none;
  }
}
.site-header .header-contact-info {
  gap: 4px;
  margin-left: auto;
}
.site-header .header-phone-link,
.site-header .header-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85em;
  color: var(--scg-muted);
  white-space: nowrap;
  margin-right: 18px;
}
.site-header .header-phone-link svg,
.site-header .header-email-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--scg-primary);
  flex-shrink: 0;
}
.site-header .header-phone-link:hover,
.site-header .header-email-link:hover {
  color: var(--scg-primary);
}
@media (max-width: 992px) {
  .site-header .header-contact-info {
    display: none;
  }
}
.site-header .header-tagline {
  max-width: 250px;
  margin-top: 20px;
  font-size: 1em;
  color: var(--scg-muted);
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 1100px) {
  .site-header .header-tagline {
    display: none;
  }
}
.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  flex-shrink: 0;
}
.site-header .navbar-toggler {
  border: 2px solid var(--scg-border);
}
.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(212, 197, 169, 0.3);
}

.site-nav {
  background: var(--scg-white);
  border-bottom: 1px solid var(--scg-border);
}
.site-nav .navbar-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  font-size: 16px;
}
.site-nav .dropdown-menu {
  border: 1px solid var(--scg-border);
  border-radius: 5px;
  background: var(--scg-white);
  width: 290px;
  top: 53px;
}
.site-nav .submenu {
  top: -10px !important;
}
.site-nav .dropdown-menu .dropdown {
  position: relative;
}
.site-nav .dropdown-menu .dropdown > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
}
.site-nav .dropdown-menu .dropdown > .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-nav .dropdown-menu .dropdown > .dropdown-item::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--scg-primary);
  flex-shrink: 0;
}
.site-nav .dropdown-view-all > .dropdown-item {
  font-weight: 600;
  color: var(--scg-primary);
}
.site-nav .navbar-nav > .dropdown {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.site-nav .nav-link.dropdown-parent-link {
  margin-right: 4px;
  line-height: 2.2;
}
.site-nav .nav-link.submenu-toggle {
  margin-right: 20px;
  padding-left: 0;
  padding-right: 0;
  border: 0;
  background: transparent;
  color: inherit;
  line-height: 1;
}
.site-nav .nav-link.submenu-toggle::after {
  content: "";
  border: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 0;
}
.site-nav .nav-item.active > .nav-link,
.site-nav .nav-item.active > .dropdown-parent-link,
.site-nav .nav-item.current-menu-item > .nav-link,
.site-nav .nav-item.current-menu-ancestor > .nav-link,
.site-nav .nav-item.current-menu-parent > .nav-link,
.site-nav .nav-item.current_page_item > .nav-link,
.site-nav .nav-item.current_page_ancestor > .nav-link,
.site-nav .dropdown-item.active,
.site-nav .dropdown-item[aria-current=page] {
  color: var(--scg-primary);
  white-space: unset;
}
@media (min-width: 993px) {
  .site-nav .dropdown:hover > .dropdown-menu,
  .site-nav .dropdown:focus-within > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .site-nav .dropdown-toggle {
    cursor: pointer;
  }
}
.site-nav .dropdown-item {
  padding: 5px 15px;
  font-size: 16px;
  white-space: unset;
}
.site-nav .dropdown-item:hover {
  background: var(--scg-primary-lt);
}
.site-nav .nav-link {
  margin-right: 20px;
}
@media (max-width: 992px) {
  .site-nav .navbar-nav > .dropdown {
    width: 100%;
    flex-wrap: wrap;
  }
  .site-nav .nav-item {
    border-bottom: 1px solid var(--scg-border);
  }
  .site-nav .nav-item:last-child {
    border-bottom: none;
  }
  .site-nav .nav-link {
    padding: 7px 0 !important;
  }
  .site-nav .nav-link.dropdown-parent-link {
    flex: 1 1 auto;
    min-width: 0;
    margin-right: 8px;
  }
  .site-nav .nav-link.submenu-toggle {
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 0;
    padding: 12px 8px !important;
  }
  .site-nav .dropdown-menu {
    flex-basis: 100%;
    position: static;
    float: none;
    margin: 0;
    min-width: 100%;
    border-radius: 0;
    border-bottom: 0;
  }
  .site-nav .dropdown-menu .dropdown > .dropdown-menu {
    margin-left: 0;
  }
  .site-nav .dropdown-menu.show {
    display: block;
  }
}

.contact-tab {
  position: fixed;
  right: -52px;
  top: 50%;
  transform: translateY(-50%) rotate(270deg);
  background: var(--scg-primary);
  color: var(--scg-white);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 3px 3px 0 0;
  z-index: 999;
}
.contact-tab:hover {
  right: -44px;
  background: var(--scg-primary-dk);
  color: var(--scg-text);
}
@media (max-width: 768px) {
  .contact-tab {
    display: none;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-section .carousel {
  width: 100%;
}
.hero-section .carousel-inner {
  height: 85vh;
}
@media (max-width: 768px) {
  .hero-section .carousel-inner {
    height: 70vh;
  }
}
@media (max-width: 480px) {
  .hero-section .carousel-inner {
    height: 60vh;
  }
}
.hero-section .carousel-item {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
}
.hero-section .carousel-item.active {
  position: relative;
  height: 100%;
}
.hero-section .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
  z-index: 0;
}
.hero-section .carousel-item.active .slide-bg {
  transform: scale(1);
}
.hero-section .slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(155deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 55%, transparent 100%);
}
.hero-section .slide-content {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 0;
  right: 0;
  z-index: 2;
  transform: translateY(-40%);
  padding-bottom: 0;
  padding-top: 0;
  width: 100%;
}
.hero-section .slide-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.hero-section .slide-eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--scg-primary);
}
.hero-section .slide-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 18px;
}
.hero-section .slide-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.65;
}
@media (max-width: 576px) {
  .hero-section .slide-sub {
    font-size: 1rem;
  }
}
.hero-section .slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 481px) {
  .hero-section .slide-actions {
    display: none;
  }
}
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(197, 158, 84, 0.6);
  border-radius: 50%;
  top: auto;
  bottom: clamp(20px, 5vh, 48px);
  transform: none;
  opacity: 1;
  transition: background 0.25s;
}
.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
  background: var(--scg-primary);
}
.hero-section .carousel-control-prev .carousel-control-prev-icon,
.hero-section .carousel-control-prev .carousel-control-next-icon,
.hero-section .carousel-control-next .carousel-control-prev-icon,
.hero-section .carousel-control-next .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 518px) {
  .hero-section .carousel-control-prev,
  .hero-section .carousel-control-next {
    display: none;
  }
}
.hero-section .carousel-control-prev {
  left: 20px;
}
.hero-section .carousel-control-next {
  right: 20px;
}
.hero-section .carousel-indicators {
  bottom: 28px;
}
.hero-section .carousel-indicators button {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  transition: background 0.25s, width 0.3s;
}
.hero-section .carousel-indicators button.active {
  background: var(--scg-primary);
  width: 48px;
}
.hero-section .slide-content .row > div {
  padding-right: clamp(64px, 9vw, 96px);
}
@media (max-width: 576px) {
  .hero-section .slide-content .row > div {
    padding-right: 60px;
  }
}

.intro-section {
  padding: clamp(52px, 7vw, 40px) 0;
  background: var(--scg-white);
  border-bottom: 2px solid var(--scg-border);
}
.intro-section__body {
  color: var(--scg-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}
.intro-section__stat {
  background: var(--scg-white);
  border: 1px solid var(--scg-border);
  border-radius: 5px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--ease);
}
.intro-section__stat:hover {
  box-shadow: 0 8px 28px rgba(212, 197, 169, 0.2);
  transform: translateY(-3px);
  border-color: var(--scg-primary);
}
.intro-section__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--scg-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.intro-section__stat span {
  font-size: 0.88rem;
  color: var(--scg-muted);
}

.experience-section {
  padding: clamp(52px, 7vw, 40px) 0;
  background: var(--scg-white);
  text-align: center;
  border-bottom: 2px solid var(--scg-border);
}
.experience-section__header {
  margin-bottom: 44px;
}
.experience-section .experience-text {
  font-size: 1.1rem;
  color: var(--scg-muted);
  line-height: 1.85;
}

.technology-section {
  padding: clamp(52px, 7vw, 40px) 0;
  background: var(--scg-white);
  border-bottom: 2px solid var(--scg-border);
}
.technology-section__image img {
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.12);
  width: 100%;
}
.technology-section .technology-list {
  list-style: none;
  padding: 0;
}
.technology-section .technology-list li {
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.technology-section .technology-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--scg-primary-lt);
  color: var(--scg-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.services-section {
  padding: clamp(52px, 7vw, 40px) 0;
  background: var(--scg-white);
  border-bottom: 2px solid var(--scg-border);
}
.services-section__header {
  text-align: center;
  margin-bottom: 44px;
}
.services-section__subtitle {
  font-size: 1rem;
  color: var(--scg-muted);
  margin-top: 12px;
}

.why-section {
  padding: clamp(52px, 7vw, 40px) 0;
  background: var(--scg-bg);
  border-bottom: 2px solid var(--scg-border);
}
.why-section__header {
  text-align: center;
  margin-bottom: 44px;
}
.why-section__card {
  background: var(--scg-white);
  border: 1px solid var(--scg-border);
  border-radius: 5px;
  padding: 36px 22px;
  text-align: center;
  height: 100%;
  transition: var(--ease);
}
.why-section__card:hover {
  box-shadow: 0 10px 32px rgba(212, 197, 169, 0.2);
  transform: translateY(-4px);
  border-color: var(--scg-primary);
}
.why-section__card:hover .why-icon {
  background: var(--scg-primary);
  color: var(--scg-white);
}
.why-section__card:hover .why-icon img {
  filter: invert(1);
}
.why-section .why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--scg-primary-lt);
  color: var(--scg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-section .why-icon svg {
  width: 26px;
  height: 26px;
}
.why-section__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--scg-text);
}
.why-section__desc {
  font-size: 0.88rem;
  color: var(--scg-muted);
  line-height: 1.5;
  margin: 0;
}

.process-section {
  padding: clamp(52px, 7vw, 40px) 0;
  background: var(--scg-white);
  border-bottom: 2px solid var(--scg-border);
}
.process-section__header {
  text-align: center;
  margin-bottom: 44px;
}

.process-card {
  background: var(--scg-bg);
  border: 1px solid var(--scg-border);
  border-radius: 8px;
  padding: 32px 20px;
  text-align: center;
  height: 100%;
  transition: var(--ease);
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(212, 197, 169, 0.15);
}
.process-card .process-number {
  width: 48px;
  height: 48px;
  background: var(--scg-primary);
  color: var(--scg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.process-card .process-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.process-card .process-desc {
  font-size: 0.88rem;
  color: var(--scg-muted);
}

.reviews-section {
  padding: clamp(52px, 7vw, 40px) 0;
  background: var(--scg-bg);
  border-bottom: 2px solid var(--scg-border);
}
.reviews-section__header {
  text-align: center;
  margin-bottom: 44px;
}

.review-card {
  background: var(--scg-white);
  border-radius: 8px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--ease);
  border-top: 4px solid var(--scg-primary);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.review-card .review-stars {
  color: var(--scg-primary);
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.review-card .review-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--scg-text);
  margin-bottom: 20px;
  font-style: italic;
}
.review-card .review-author {
  font-size: 0.85rem;
  color: var(--scg-secondary);
  border-top: 1px solid var(--scg-border);
  padding-top: 16px;
}

.quote-section {
  padding: clamp(52px, 7vw, 40px) 0;
  background: var(--scg-white);
}

.quote-info {
  color: rgba(0, 0, 0, 0.8);
}
.quote-info h2 {
  font-family: var(--font-display);
  color: #000000;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}
.quote-info p {
  font-size: 0.96rem;
  line-height: 1.82;
  margin-bottom: 30px;
}
.quote-info .info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}
.quote-info .info-item .i-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 197, 169, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-info .info-item .i-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--scg-primary);
}
.quote-info .info-item strong {
  display: block;
  font-size: 0.86rem;
  color: rgba(17, 17, 17, 0.92);
  margin-bottom: 2px;
}
.quote-info .info-item span {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.8);
}

.quote-form-box {
  background: var(--scg-white);
  border-radius: 6px;
  padding: clamp(28px, 5vw, 44px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}
.quote-form-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--scg-text);
  margin-bottom: 6px;
}
.quote-form-box .form-label {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--scg-muted);
  margin-bottom: 5px;
}
.quote-form-box .form-control {
  background: var(--scg-bg);
  border: 1.5px solid var(--scg-border);
  border-radius: 3px;
}
.quote-form-box .form-control:focus {
  border-color: var(--scg-primary);
  box-shadow: 0 0 0 3px rgba(212, 197, 169, 0.2);
  background: #fff;
}
.quote-form-box .captcha-row {
  background: var(--scg-bg);
  border: 1px solid var(--scg-border);
  border-radius: 3px;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--scg-muted);
}
.quote-form-box .captcha-row strong {
  color: var(--scg-text);
  display: block;
  margin-bottom: 4px;
}

.cta-section {
  padding: clamp(52px, 7vw, 40px) 0;
  background: var(--scg-primary-dk);
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--scg-text);
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 1.02rem;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 36px;
}
.cta-section .cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-band {
  background: #d9cec2;
  border-top: 1px solid var(--scg-border);
  border-bottom: 1px solid var(--scg-border);
  padding: clamp(36px, 5vw, 52px) 0;
}
.footer-band__label {
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--scg-muted);
  font-weight: 500;
  margin-bottom: 18px;
  display: block;
}
.footer-band__inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}
@media (max-width: 900px) {
  .footer-band__inner {
    flex-direction: column;
    gap: 36px;
  }
}
.footer-band__trust {
  flex: 0 0 clamp(300px, 35%, 450px);
  min-width: 0;
  padding-right: 24px;
}
@media (max-width: 900px) {
  .footer-band__trust {
    flex: none;
    width: 100%;
    padding-right: 0;
  }
}
.footer-band__lca {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: clamp(-60px, -5vw, -80px);
}
.footer-band__lca img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 900px) {
  .footer-band__lca {
    flex: none;
    width: 100%;
    padding: 0;
  }
}
.footer-band__divider {
  width: 1px;
  background: var(--scg-border);
  align-self: stretch;
  flex-shrink: 0;
  margin: 0 28px;
}
@media (max-width: 900px) {
  .footer-band__divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
}
.footer-band__scg {
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 900px) {
  .footer-band__scg {
    width: 100%;
  }
}
.footer-band__scg-desc {
  font-size: 0.9rem;
  color: var(--scg-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.footer-band__scg-desc a {
  color: var(--scg-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-band__scg-desc a:hover {
  color: var(--scg-footer-text);
}

.footer-trust-new {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3vw, 20px);
}

.ftn-row {
  display: flex;
  width: 100%;
  align-items: center;
}
.ftn-row--small {
  justify-content: center;
  gap: clamp(8px, 2vw, 20px);
  max-width: 92%;
  padding-right: clamp(0px, 2vw, 30px);
}
.ftn-row--small .ftn-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ftn-row--small .ftn-item img {
  max-width: 100%;
  height: auto;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: clamp(60px, 8vw, 84px);
  display: block;
}
.ftn-row--wide .ftn-item--full {
  display: flex;
  padding-left: clamp(0px, 2vw, 3px);
  width: 100%;
}
.ftn-row--wide .ftn-item--full img {
  max-width: 92%;
  width: auto;
  height: auto;
  max-height: clamp(60px, 8vw, 90px);
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.ftn-row--wide .ftn-item--full:nth-of-type(3) img {
  max-height: clamp(60px, 8vw, 90px);
}
.ftn-row--wide .ftn-item--full:nth-of-type(4) img, .ftn-row--wide .ftn-item--full:nth-of-type(5) img {
  height: 72px;
}

.footer-scg-logos {
  align-items: center;
  margin-bottom: 24px;
}
.footer-scg-logos__main {
  display: flex;
  align-items: center;
  background: var(--scg-white);
}
.footer-scg-logos__main img {
  height: 70px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.footer-scg-logos__brand {
  display: flex;
  align-items: center;
  background: var(--scg-white);
}
.footer-scg-logos__brand img {
  height: 64px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.footer-yt-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--scg-muted);
  border: 1px solid var(--scg-muted);
  border-radius: 6px;
  padding: 8px 10px;
  transition: all 0.2s;
  width: 44px;
  height: 44px;
}
.footer-yt-link svg {
  width: 20px;
  height: 20px;
}
.footer-yt-link:hover {
  border-color: var(--scg-primary);
  color: var(--scg-primary);
  background: rgba(197, 158, 84, 0.06);
}

.footer-scg-band {
  display: none;
}

.site-footer {
  background: #d9cec2;
  color: var(--scg-footer-text);
  border-top: 1px solid rgba(255, 255, 255, 0.5) !important;
}
.site-footer .asst img {
  max-height: 80px;
  margin-right: 20px;
  display: inline-block;
  margin-bottom: 20px;
  max-width: 291px;
  background: var(--scg-white);
}
@media (max-width: 500px) {
  .site-footer .col {
    flex: none !important;
  }
}
.site-footer .brand img {
  max-height: 70px;
  margin-right: 20px;
  display: inline-block;
  margin-bottom: 20px;
  background: var(--scg-white);
}
.site-footer .border-end {
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.site-footer__bottom {
  background: #d9cec2;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--scg-footer-text);
  border-top: 1px solid rgba(255, 255, 255, 0.5) !important;
}
.site-footer__bottom .footer-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 10px;
  font-weight: 600;
}
.site-footer__bottom .footer-links a {
  color: var(--scg-muted);
  font-size: 0.82rem;
}
.site-footer__bottom .footer-links a:hover {
  opacity: 1;
  color: var(--scg-primary);
}
.site-footer__bottom p {
  margin: 0;
  line-height: 1.5;
  color: var(--scg-footer-text);
  opacity: 0.75;
  font-size: 0.75rem;
  font-weight: 500;
}

.dropdown-toggle::after {
  margin-left: 8px;
}

@media (max-width: 992px) {
  .dropdown-toggle:not(.submenu-toggle) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .dropdown-toggle:not(.submenu-toggle)::after {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .hero-section .slide-sub {
    display: none;
  }
}
.why-section__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-section__card svg,
.why-section__card img {
  width: 26px;
  filter: invert(63%) sepia(20%) saturate(700%) hue-rotate(5deg) brightness(90%);
  transition: filter 0.3s ease;
  display: inline-block;
  transition: 0.3s ease;
}
.why-section__card svg:hover img,
.why-section__card svg svg,
.why-section__card img:hover img,
.why-section__card img svg {
  filter: brightness(0) invert(1) !important;
}
.why-section__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(212, 197, 169, 0.25);
}
.why-section__card .why-icon {
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), background 0.3s ease, color 0.3s ease;
}

.navbar-toggler {
  padding: 8px 14px !important;
  min-width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}
.navbar-toggler svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .d-md-none {
    display: flex !important;
  }
  .site-nav .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--scg-white);
    z-index: 1060;
    padding: 20px;
    border-top: 1px solid var(--scg-border);
    border-bottom: 1px solid var(--scg-border);
    max-height: 70vh;
    overflow-y: auto;
  }
}
.services .item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.services .item:hover .overlay {
  opacity: 1;
}
.services .item img {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.services .item:hover img {
  transform: scale(1.06);
}
.services .item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  color: white;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.35s ease;
}
.services .item .content h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: white;
  position: absolute;
  background: rgba(30, 27, 46, 0.65);
  bottom: 65px;
  left: 15px;
  padding: 10px 15px;
  border-radius: 10px;
}
.services .item .content p {
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  margin: 0;
  line-height: 1.5;
}
.services .item:hover .content {
  transform: translateY(0);
}
.services .item:hover .content p {
  opacity: 1;
}

.services-custom-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .services-custom-grid {
    flex-direction: column;
    gap: 20px;
  }
}

.services-custom-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.left-col .services-custom__item,
.right-col .services-custom__item {
  flex: 1;
}

.center-col {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.center-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.center-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services-custom__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  display: block;
}
.services-custom__item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.services-custom__item:hover img {
  transform: scale(1.06);
}
.services-custom__item .item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.services-custom__item:hover .item-overlay {
  opacity: 1;
}
.services-custom__item .item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  color: white;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.35s ease;
}
.services-custom__item .item-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: white;
  position: absolute;
  background: rgba(30, 27, 46, 0.65);
  bottom: 64px;
  left: 14px;
  backdrop-filter: blur(4px);
  padding: 5px 10px;
  border-radius: 2px;
}
.services-custom__item .item-content p {
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  margin: 0;
  line-height: 1.5;
}
.services-custom__item:hover .item-content {
  transform: translateY(0);
}
.services-custom__item:hover .item-content p {
  opacity: 1;
}

.center-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  height: 100%;
}
.center-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.center-item:hover img {
  transform: scale(1.06);
}
.center-item .item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.center-item:hover .item-overlay {
  opacity: 1;
}
.center-item .item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  color: white;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.35s ease;
}
.center-item .item-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: white;
  position: absolute;
  background: rgba(30, 27, 46, 0.65);
  bottom: 64px;
  left: 14px;
  backdrop-filter: blur(4px);
  padding: 5px 10px;
  border-radius: 2px;
}
.center-item .item-content p {
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  margin: 0;
  line-height: 1.5;
}
.center-item:hover .item-content {
  transform: translateY(0);
}
.center-item:hover .item-content p {
  opacity: 1;
}

@media (max-width: 768px) {
  .services-custom-grid {
    gap: 20px;
  }
  .services-custom-col {
    width: 100%;
  }
  .left-col .services-custom__item,
  .right-col .services-custom__item {
    min-height: 400px;
  }
  .center-col {
    align-items: center;
    width: 100%;
  }
  .center-item {
    height: auto;
    width: 100%;
    min-height: 200px;
  }
  .center-item img {
    height: auto;
    min-height: 200px;
  }
  .services-custom__item img {
    min-height: 400px;
    height: auto;
  }
  .center-item img {
    min-height: 200px;
    height: auto;
  }
}
.services-masonry {
  display: none;
}

.services-custom-grid {
  display: flex;
}

@media (max-width: 991px) {
  .header-actions {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1180px;
  }
}
@media (max-width: 900px) {
  .footer-trust-new .ftn-row--small {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(8px, 2vw, 12px);
    padding-right: 0;
    justify-content: flex-start;
  }
  .footer-trust-new .ftn-row--small .ftn-item {
    flex: 0 0 auto;
    width: auto;
  }
  .footer-trust-new .ftn-row--small .ftn-item img {
    max-height: 50px;
    width: auto;
    display: block;
  }
  .footer-trust-new .ftn-row--wide {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer-trust-new .ftn-row--wide .ftn-item--full {
    padding-left: 0;
    margin-bottom: 0;
  }
  .footer-trust-new .ftn-row--wide .ftn-item--full img {
    max-width: 100%;
    max-height: 50px;
    display: block;
  }
}
.section {
  margin-bottom: 40px;
}

.section-text {
  color: var(--scg-muted);
  line-height: 1.8;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-list-item {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--scg-border);
}
.process-list-item:last-child {
  border-bottom: none;
}

.process-list-number {
  width: 40px;
  height: 40px;
  background: var(--scg-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.process-list-content {
  flex: 1;
}
.process-list-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--scg-text);
  font-family: var(--font-display);
}
.process-list-content p {
  color: var(--scg-muted);
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--scg-text);
  line-height: 1.5;
}
.feature-item .feature-icon {
  color: var(--scg-primary);
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
}
.feature-item strong {
  color: var(--scg-primary);
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.tech-list .tech-item {
  color: var(--scg-text);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}
.tech-list .tech-item::before {
  content: "✓";
  color: var(--scg-primary);
  font-weight: bold;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .tech-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .process-list-item {
    gap: 15px;
  }
  .process-list-number {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .process-list-content h3 {
    font-size: 1rem;
  }
  .process-list-content p {
    font-size: 0.85rem;
  }
  .features-list {
    gap: 10px;
  }
}
.contact-page-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1400px;
  padding: 60px;
}
@media (max-width: 992px) {
  .contact-page-wrapper {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }
}

.contact-main-content {
  flex: 1;
  min-width: 0;
}

.contact-sidebar {
  width: 30%;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .contact-sidebar {
    width: 100%;
  }
}

.contact-quote-form {
  background: var(--scg-primary);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}
.contact-quote-form h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-family: var(--font-display);
}
.contact-quote-form .form-subtitle {
  font-size: 0.85rem;
  color: var(--scg-muted);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.contact-quote-form .form-control {
  font-size: 0.85rem;
  padding: 10px 12px;
  background: var(--scg-white);
  border: 1px solid var(--scg-border);
  border-radius: 4px;
  width: 100%;
}
.contact-quote-form .form-control:focus {
  border-color: var(--scg-primary-dk);
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}
.contact-quote-form textarea.form-control {
  resize: vertical;
  min-height: 80px;
}
.contact-quote-form .captcha-row {
  background: var(--scg-white);
  border: 1px solid var(--scg-border);
  border-radius: 4px;
  padding: 12px;
  font-size: 0.85rem;
}
.contact-quote-form .captcha-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--scg-text);
}

.contact-blog-list {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.contact-blog-list h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #1a1a1a;
  border-left: 3px solid var(--scg-primary);
  padding-left: 12px;
  font-family: var(--font-display);
}

.contact-blog-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-blog-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.contact-blog-item:hover .contact-blog-image {
  transform: scale(1.05);
}

.contact-blog-image {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-blog-content {
  flex: 1;
}
.contact-blog-content a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 5px;
}
.contact-blog-content a:hover {
  color: var(--scg-primary);
}

.contact-blog-date {
  font-size: 0.7rem;
  color: #999;
  display: block;
}

.contact-btn-download {
  display: inline-block;
  background: white;
  color: var(--scg-primary);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}
.contact-btn-download:hover {
  transform: translateY(-2px);
  color: #b8893a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-download {
  background: linear-gradient(135deg, var(--scg-primary) 0%, #b8893a 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 40px 0;
}
.contact-download h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-family: var(--font-display);
}
.contact-download p {
  margin-bottom: 25px;
  opacity: 0.95;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .contact-download {
    padding: 30px 20px;
  }
  .contact-download h3 {
    font-size: 1.4rem;
  }
}

.contact-consultation {
  background: var(--scg-white);
  color: var(--scg-muted);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 40px 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--scg-border);
}
.contact-consultation h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: var(--font-display);
  color: var(--scg-text);
}
.contact-consultation p {
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-btn-book {
  display: inline-block;
  background: var(--scg-primary);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin: 15px 0;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.contact-btn-book:hover {
  background: #b8893a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.contact-methods a {
  color: var(--scg-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.contact-methods a:hover {
  color: var(--scg-primary);
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.contact-social-links a {
  color: var(--scg-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}
.contact-social-links a:hover {
  color: var(--scg-primary);
}

@media (max-width: 768px) {
  .contact-blog-item {
    gap: 12px;
  }
  .contact-blog-image {
    width: 55px;
    height: 55px;
  }
  .contact-methods,
  .contact-social-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
.ws-block {
  padding: clamp(52px, 7vw, 40px) 0;
  border-bottom: 2px solid var(--scg-border);
}
.ws-block img {
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.12);
  width: 100%;
}
@media (max-width: 576px) {
  .ws-block {
    padding: 35px 0 25px;
  }
}
.ws-block blockquote {
  padding: 15px;
  margin-left: 25px;
  border-left: 5px solid var(--scg-primary);
  background: #f9f9f9;
  font-size: 18px;
  font-weight: 500;
}
.ws-block blockquote p {
  margin-bottom: 0;
}
.ws-block ul {
  padding-left: 20px;
  position: relative;
}
.ws-block ul li {
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ws-block ul li:before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--scg-primary-lt);
  color: var(--scg-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.page-hero {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--scg-primary);
}
@media (max-width: 768px) {
  .page-hero {
    height: 50vh;
  }
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 100%);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.page-hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.page-hero__eyebrow::before, .page-hero__eyebrow::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--scg-primary);
  flex-shrink: 0;
  border-radius: 2px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}
.page-hero__line {
  width: 48px;
  height: 3px;
  background: var(--scg-primary);
  border-radius: 3px;
  margin-top: 2px;
}
.page-hero a {
  color: var(--scg-white);
}

.ws-contents {
  padding: 70px 0;
  font-size: 16px;
}
.ws-contents main h1,
.ws-contents main h2,
.ws-contents main h3,
.ws-contents main h4,
.ws-contents main h5,
.ws-contents main h6 {
  line-height: 1.4;
  font-weight: 500;
}
.ws-contents main h2 {
  font-size: 2rem;
}
.ws-contents main h3 {
  font-size: 1.7rem;
}
.ws-contents main h3 {
  font-size: 1.5rem;
}
.ws-contents main h1 + hr,
.ws-contents main h2 + hr,
.ws-contents main h3 + hr {
  width: 44px;
  height: 3px;
  background: var(--scg-primary);
  border: none;
  border-radius: 3px;
  margin: 0 0 20px;
}
.ws-contents main ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ws-contents main ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--scg-text);
  line-height: 1.5;
}
.ws-contents main ul li::before {
  content: "✓";
  color: var(--scg-primary);
  font-weight: bold;
  flex-shrink: 0;
}
.ws-contents main ul li strong {
  color: var(--scg-primary);
}
.ws-contents main ul.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .ws-contents main ul.grid {
    grid-template-columns: 1fr;
  }
}
.ws-contents main blockquote {
  padding: 20px;
  margin-left: 25px;
  border-left: 5px solid var(--scg-primary);
  background: #f9f9f9;
  font-size: 18px;
  font-weight: 500;
  color: var(--scg-primary);
  margin-bottom: 30px;
}
.ws-contents main blockquote p {
  margin-bottom: 0;
}
.ws-contents main table {
  width: 100%;
  line-height: 1.4;
}
.ws-contents main table thead {
  border-bottom: 2px solid var(--scg-border);
}
.ws-contents main table th {
  font-weight: 600;
}
.ws-contents main table td {
  padding: 0.4rem;
  border-color: var(--scg-secondary-lt);
}
.ws-contents main ol {
  counter-reset: ws-step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.ws-contents main ol li {
  counter-increment: ws-step;
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--scg-border);
}
.ws-contents main ol li:last-child {
  border-bottom: none;
}
.ws-contents main ol li::before {
  content: counter(ws-step);
  width: 40px;
  min-width: 40px;
  height: 40px;
  background: var(--scg-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.ws-contents main ol li > div {
  flex: 1;
}
.ws-contents main ol li > div h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.ws-contents main ol li > div p {
  font-size: 0.9rem;
  margin: 0;
}
@media (max-width: 768px) {
  .ws-contents main ol li {
    gap: 15px;
  }
  .ws-contents main ol li::before {
    width: 32px;
    min-width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
}
.ws-contents main .ws-highlight {
  background: linear-gradient(135deg, var(--scg-primary) 0%, #b8893a 100%);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 40px 0;
}
.ws-contents main .ws-highlight h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.ws-contents main .ws-highlight p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .ws-contents main .ws-highlight {
    padding: 30px 20px;
  }
  .ws-contents main .ws-highlight h3 {
    font-size: 1.4rem;
  }
}
.ws-contents main .ws-cta-card {
  background: var(--scg-white);
  border: 1px solid var(--scg-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 40px 0;
}
.ws-contents main .ws-cta-card h3 {
  color: var(--scg-text);
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.ws-contents main .ws-cta-card .ws-contact-links,
.ws-contents main .ws-cta-card .ws-social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.ws-contents main .ws-cta-card .ws-contact-links a,
.ws-contents main .ws-cta-card .ws-social-links a {
  color: var(--scg-muted);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.ws-contents main .ws-cta-card .ws-contact-links a:hover,
.ws-contents main .ws-cta-card .ws-social-links a:hover {
  color: var(--scg-primary);
}
@media (max-width: 768px) {
  .ws-contents main .ws-cta-card .ws-contact-links,
  .ws-contents main .ws-cta-card .ws-social-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.ws-contents aside .wp-block-heading {
  margin: 25px 0;
}
.ws-contents aside .wp-block-latest-posts__featured-image {
  margin-bottom: 1rem;
}
.ws-contents aside .wp-block-latest-posts__featured-image img {
  width: 100px;
  height: 90px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.ws-contents aside .wp-block-latest-posts__list li {
  min-height: 90px;
}
.ws-contents aside .wp-block-latest-posts__list li a {
  font-weight: 500;
  color: var(--scg-primary);
}

.faq-intro {
  margin-bottom: 28px;
}
.faq-intro p {
  margin-bottom: 16px;
}
.faq-intro p:last-child {
  margin-bottom: 0;
}
.faq-intro a {
  color: var(--scg-primary);
  text-decoration: underline;
}
.faq-intro a:hover {
  text-decoration: none;
}

.faq-accordion-group {
  margin-bottom: 40px;
}
.faq-accordion-group:last-child {
  margin-bottom: 0;
}

.faq-item {
  border: 1px solid var(--scg-border);
  background: #f4f4f4;
  margin-bottom: 10px;
  transition: background 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
}
.faq-item.open {
  background: var(--scg-white);
}
.faq-item:last-child {
  margin-bottom: 0;
}

.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 14px 30px 14px 18px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq-trigger h3 {
  font-size: 1rem !important;
  margin: 0;
  color: var(--scg-text);
}
.faq-trigger p {
  margin: 0;
}

.chevron {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
  margin-left: 12px;
}
.chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -75%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--scg-secondary);
  border-bottom: 2px solid var(--scg-secondary);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-trigger .chevron::after {
  transform: translate(-50%, -25%) rotate(225deg);
}

.faq-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq-content-inner {
  padding: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--scg-muted);
  border-top: 1px solid var(--scg-border);
}
.faq-content-inner a {
  color: var(--scg-primary);
  text-decoration: underline;
}
.faq-content-inner a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .faq-trigger {
    padding: 12px 20px 12px 15px;
  }
  .faq-trigger h4 {
    font-size: 0.95rem;
  }
  .faq-content-inner {
    padding: 4px 15px 15px;
    font-size: 0.9rem;
  }
  .chevron {
    width: 16px;
    height: 16px;
  }
  .chevron::after {
    width: 6px;
    height: 6px;
  }
}
.faq-section-title {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 12px;
}
.faq-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--scg-primary);
  border-radius: 3px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}
.gallery-grid .gallery-item {
  overflow: hidden;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.4s;
}
.gallery-grid .gallery-item:hover img {
  transform: scale(1.08);
}

.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, .94);
}

@media (max-width: 768px) {
  .gallery-page {
    padding: 40px 12px;
  }
  .gallery-item img {
    height: 240px;
  }
}
.blog-pagination {
  margin-top: 20px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.blog-pagination__item {
  display: inline-block;
  padding: 7px 13px;
  border: 1px solid var(--scg-border);
  color: var(--scg-text);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  border-radius: 4px;
}
.blog-pagination__item:hover {
  background: var(--scg-primary);
  color: var(--scg-white);
  border-color: var(--scg-primary);
}
.blog-pagination__item.current {
  background: var(--scg-primary);
  color: var(--scg-white);
  border-color: var(--scg-primary);
}
.blog-pagination__dots {
  display: inline-block;
  padding: 7px 13px;
  color: var(--scg-muted);
  font-size: 0.85rem;
}

.block-card {
  border: 1px solid var(--scg-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.block-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.block-card figure {
  overflow: hidden;
}
.block-card figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.block-card figure:hover img {
  transform: scale(1.03);
}
.block-card__body {
  padding: 20px;
}
.block-card__title {
  font-size: 1rem !important;
  line-height: 1.4;
  color: var(--scg-text);
}
.block-card__title a {
  color: var(--scg-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.block-card__title a:hover {
  color: var(--scg-primary);
}
.block-card__divider {
  width: 40px;
  height: 2px;
  background: var(--scg-primary);
  margin-bottom: 14px;
}
.block-card__excerpt {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--scg-muted);
  flex: 1;
}
.block-card__btn {
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid var(--scg-primary);
  color: var(--scg-primary);
  font-size: 0.85rem;
  background: transparent;
  transition: all 0.25s ease;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.3px;
  text-align: center;
  text-decoration: none;
  align-self: flex-start;
  text-transform: uppercase;
}
.block-card__btn:hover {
  background: var(--scg-primary);
  color: var(--scg-white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border: 1px solid #dcdcdc;
  background: white;
}
.locations-grid .location-item {
  padding: 15px 18px;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
  transition: 0.3s ease;
  text-transform: capitalize;
}
.locations-grid .location-item:hover {
  background: var(--scg-primary);
  color: white;
}
.locations-grid .location-item {
  /* Remove extra right borders */
}
.locations-grid .location-item:nth-child(6n) {
  border-right: none;
}
@media (max-width: 1100px) {
  .locations-grid .location-item:nth-child(6n) {
    border-right: 1px solid #e5e5e5;
  }
}
@media (max-width: 768px) {
  .locations-grid .location-item .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pagenav {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.pagenav .page-numbers {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #eee;
  border-radius: 2px;
  text-decoration: none;
  color: var(--scg-text);
  transition: all 0.25s ease;
}
.pagenav .page-numbers:hover {
  border-color: var(--scg-primary);
  color: var(--scg-primary);
}
.pagenav .current {
  border-color: var(--scg-primary);
  font-weight: 500;
  color: var(--scg-primary);
}

.posts-navigation {
  padding-top: 20px;
}
.posts-navigation .nav-links {
  display: inline-flex;
  gap: 6px;
}
.posts-navigation .nav-next a,
.posts-navigation .nav-previous a {
  display: inline-block;
  padding: 5px 15px;
  margin: 0;
  border: 1px solid #eee;
  border-radius: 2px;
  background: #fff;
  color: var(--scg-text);
  text-decoration: none;
  transition: all 0.25s ease;
}
.posts-navigation .nav-next a:hover,
.posts-navigation .nav-previous a:hover {
  border-color: var(--scg-primary);
  color: var(--scg-primary);
}

.gallery img[data-mce-selected]:focus {
  outline: none;
}

.gallery a {
  cursor: default;
}

.gallery {
  margin: auto -6px;
  padding: 6px 0;
  line-height: 1;
  overflow-x: hidden;
}

.ie7 .gallery,
.ie8 .gallery {
  margin: auto;
}

.gallery .gallery-item {
  float: left;
  margin: 0;
  text-align: center;
  padding: 6px;
  box-sizing: border-box;
}

.ie7 .gallery .gallery-item,
.ie8 .gallery .gallery-item {
  padding: 6px 0;
}

.gallery .gallery-caption,
.gallery .gallery-icon {
  margin: 0;
}

.gallery .gallery-caption {
  font-size: 13px;
  margin: 4px 0;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33.333%;
}

.ie8 .gallery-columns-3 .gallery-item,
.ie7 .gallery-columns-3 .gallery-item {
  width: 33%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery-columns-6 .gallery-item {
  width: 16.665%;
}

.gallery-columns-7 .gallery-item {
  width: 14.285%;
}

.gallery-columns-8 .gallery-item {
  width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  width: 11.111%;
}

.gallery img {
  max-width: 100%;
  height: auto;
  border: none;
  padding: 0;
}

img.wp-oembed {
  border: 1px dashed #888;
  background: #f7f5f2 url(images/embedded.png) no-repeat scroll center center;
  width: 300px;
  height: 250px;
  outline: 0;
}/*# sourceMappingURL=app.css.map */