:root {
  /* Goldly brand palette — sampled from logo-trim.png */
  --brand-gold: #F8B820;
  --brand-gold-deep: #E8A010;
  --brand-gold-light: #FFD848;
  --gradient-primary: linear-gradient(to right, #E8A010 0%, #FFD848 100%);
  --gradient-primary-reverse: linear-gradient(to right, #FFD848 0%, #E8A010 100%);
  /* Dark variant for large gradient backgrounds that carry white body text
     (Services, Contact sections). The bright gold above ⇄ white = ~2.5:1.
     This deeper range keeps contrast acceptable while staying in the same hue. */
  --gradient-dark: linear-gradient(to right, #8B6914 0%, #B8881F 100%);
  --text-on-gold: #1A1A2E;
  --gold-overlay-80: rgba(248, 184, 32, 0.8);
  --gold-overlay-80-end: rgba(255, 216, 72, 0.8);
}

body,
html {
  font-family: "Open Sans", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #777;
  font-weight: 400;
  width: 100% !important;
  height: 100% !important;
}
h2,
h3,
h4 {
  font-family: "Raleway", sans-serif;
}
h2 {
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 800;
  font-size: 36px;
  color: #333;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
h4 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
}
h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}
p {
  font-size: 15px;
}
p.intro {
  margin: 12px 0 0;
  line-height: 24px;
}
a {
  color: var(--brand-gold-deep);
  font-weight: 400;
}
a:hover,
a:focus {
  text-decoration: none;
  color: var(--brand-gold-deep);
}
ul,
ol {
  list-style: none;
}
ul,
ol {
  padding: 0;
  webkit-padding: 0;
  moz-padding: 0;
}
hr {
  height: 2px;
  width: 70px;
  text-align: center;
  position: relative;
  background: #1e7a46;
  margin-bottom: 20px;
  border: 0;
}
/* Navigation */
#menu {
  padding: 15px;
  transition: all 0.8s;
}
#menu.navbar-default {
  background-color: #fff;
  border-color: rgba(231, 231, 231, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#menu a.navbar-brand {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  padding-top: 6px;
  padding-bottom: 6px;
  height: auto;
  display: flex;
  align-items: center;
}
#menu a.navbar-brand .navbar-logo {
  height: 50px;
  width: auto;
  display: block;
}
#menu.navbar-default .navbar-nav > li > a {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  color: #555;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 2px;
  border-radius: 0;
  margin: 9px 20px 0;
}
#menu.navbar-default .navbar-nav > li > a:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  content: "";
  transition: width 0.2s;
}
#menu.navbar-default .navbar-nav > li > a:hover:after {
  width: 100%;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:after,
.navbar-default .navbar-nav > .active > a:hover:after,
.navbar-default .navbar-nav > .active > a:focus:after {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -1px !important;
  width: 100% !important;
  height: 2px !important;
  background: var(--gradient-primary) !important;
  content: "" !important;
  transition: width 0.2s !important;
}
.navbar-toggle {
  border-radius: 0;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #fff;
  border-color: var(--brand-gold-deep);
}
.navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: var(--brand-gold-deep);
}
.section-title {
  margin-bottom: 70px;
}
.section-title h2 {
  position: relative;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.section-title h2::after {
  position: absolute;
  content: "";
  background: var(--gradient-primary);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
.section-title p {
  font-size: 18px;
}
.btn-custom {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: var(--text-on-gold);
  background-color: var(--brand-gold);
  background-image: var(--gradient-primary);
  padding: 14px 34px;
  letter-spacing: 1px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.5s linear;
  border: 0;
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom.focus,
.btn-custom:active,
.btn-custom.active {
  color: var(--text-on-gold);
  background-image: none;
  background-color: var(--brand-gold-deep);
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline-offset: none;
}
/* Header Section */
.intro {
  position: relative;
  width: 100%;
  padding: 0;
  /* Aspect ratio of intro-bg.jpg is 16:9 (1672x941). Forcing the hero to that
     ratio keeps the full image visible — no cropping, no letterboxing. */
  height: 0;
  padding-top: 56.28%;
  background: url(../img/intro-bg.jpg) center top no-repeat;
  background-color: #e5e5e5;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  -o-background-size: contain;
}
.intro .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 65%,
    rgba(0, 0, 0, 0.18) 100%
  );
}
.intro h1 {
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-size: 82px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}
.intro h1 span {
  font-weight: 800;
  color: var(--brand-gold);
}
.intro p {
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  margin: 0 auto;
  margin-bottom: 60px;
}
header .intro-text {
  position: absolute;
  /* Sits in the gap between GOLDLY AI GATEWAY hexagon and the ENTERPRISE AI
     AGENTS row, matching the highlighted band in the bg image. */
  top: 73%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: auto;
  padding: 0;
}
/* Features Section */
#features {
  background: #f6f6f6;
}
#features i.fa {
  font-size: 38px;
  margin-bottom: 20px;
  transition: all 0.5s;
  color: var(--text-on-gold);
  width: 100px;
  height: 100px;
  padding: 30px 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
/* About Section */
#about {
  padding: 100px 0;
}
#about .about-layout {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
#about .about-media,
#about .about-copy {
  display: flex;
}
#about .about-media {
  align-items: flex-start;
  justify-content: center;
}
#about .about-copy {
  align-items: flex-start;
}
#about .about-text {
  width: 100%;
}
#about .list-style::after {
  content: "";
  display: table;
  clear: both;
}
#about h3 {
  font-size: 22px;
  margin: 20px 0 20px;
}
#about h2 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#about h2::after {
  position: absolute;
  content: "";
  background: var(--gradient-primary);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 0;
}
#about .about-text li {
  margin-bottom: 6px;
  margin-left: 6px;
  list-style: none;
  padding: 0;
}
#about .about-text li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  color: var(--brand-gold-deep);
  font-size: 11px;
  font-weight: 300;
  padding-right: 8px;
}
#about img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  margin: 0;
  background: #fff;
  border-right: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
}
#about p {
  line-height: 24px;
  margin: 30px 0;
}
/* Services Section */
#services {
  padding: 100px 0;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  color: #fff;
}
#services .service-desc {
  margin: 10px 10px 20px;
}
#services h2 {
  color: #fff;
}
#services .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
#services i.fa {
  font-size: 42px;
  width: 120px;
  height: 120px;
  padding: 40px 0;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: var(--text-on-gold);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
#services h3 {
  font-weight: 500;
  padding: 5px 0;
  color: #fff;
}
#services p {
  color: rgba(255, 255, 255, 0.75);
}
#services .service-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin: 12px auto 0;
  max-width: 430px;
}
#services .service-links a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 7px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
#services .service-links a:hover,
#services .service-links a:focus {
  background: #fff;
  border-color: #fff;
  color: #1f386e;
}
#services .service-desc {
  margin-bottom: 40px;
  min-height: 180px;
}
/* Force 3-per-row reflow for Services so unequal heights don't break the grid */
@media (min-width: 992px) {
  #services .row > .col-md-4:nth-child(3n + 1) {
    clear: left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #services .row > .col-md-4:nth-child(2n + 1) {
    clear: left;
  }
}
/* Portfolio Section */
#portfolio {
  padding: 60px 0 70px;
}
#portfolio .section-title {
  margin-bottom: 36px;
}
.portfolio-item {
  margin: 1px -15px 0 -14px;
  padding: 0;
}
.portfolio-item .hover-bg {
  overflow: hidden;
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 2;
}
.portfolio-item .hover-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Force 3-per-row reflow for Products so unequal source image ratios don't break the grid */
@media (min-width: 1200px) {
  #portfolio .portfolio-items > .col-lg-4:nth-child(3n + 1) {
    clear: left;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #portfolio .portfolio-items > .col-md-4:nth-child(3n + 1) {
    clear: left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #portfolio .portfolio-items > .col-sm-6:nth-child(2n + 1) {
    clear: left;
  }
}
.hover-bg .hover-text {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  background: linear-gradient(
    to right,
    var(--gold-overlay-80) 0%,
    var(--gold-overlay-80-end) 100%
  );
  padding: 30% 0 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
}
.hover-bg .hover-text > h4 {
  opacity: 0;
  color: #fff;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.3s;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}
.hover-bg:hover .hover-text > h4 {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.hover-bg:hover .hover-text {
  opacity: 1;
}

/* ============ Products Carousel ============ */
.gallery-carousel {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 8px;
}
.gallery-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f4f8;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}
.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
.gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.gallery-link .gallery-img {
  transition: transform 0.4s ease;
}
.gallery-link:hover .gallery-img {
  transform: scale(1.015);
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #1f2a44;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.gallery-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-caption {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  color: #2b2c2e;
  letter-spacing: 0.3px;
  min-height: 22px;
}
.gallery-caption-link {
  color: #2b2c2e;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: color 0.2s, border-color 0.2s;
}
.gallery-caption-link:hover,
.gallery-caption-link:focus {
  color: var(--brand-gold-deep);
  border-bottom-color: var(--brand-gold-deep);
}
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.gallery-dot:hover { background: #9ca3af; }
.gallery-dot.is-active {
  background: var(--gradient-primary);
  transform: scale(1.3);
}
@media (max-width: 767px) {
  .gallery-nav { width: 40px; height: 40px; font-size: 16px; }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
}
/* Testimonials Section */
#testimonials {
  padding: 100px 0;
  background: #f6f6f6;
}
#testimonials .section-title p {
  font-size: 16px;
  color: #666;
  max-width: 760px;
  margin: 0 auto;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 10px;
}
.case-card {
  position: relative;
  appearance: none;
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 12px;
  padding: 22px 22px 18px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.case-card:hover,
.case-card:focus {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  outline: none;
}
.case-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.case-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.case-monogram {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #fff;
  background: #1f2a44;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.case-monogram-lg {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  font-size: 20px;
  border-radius: 12px;
}
.case-monogram.has-logo {
  background: #ffffff !important;
  padding: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 2px rgba(15, 23, 41, 0.06);
}
.case-monogram-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.case-head-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.case-date {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #999;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 2px;
}
.case-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.case-metric {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.4;
  color: #4b5563;
}
.case-metric::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-gold-deep);
  font-size: 12px;
  line-height: 1.4;
}
.case-name {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1f2a44;
  line-height: 1.3;
}
.case-industry {
  font-size: 12px;
  color: #777;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.case-industry i {
  margin-right: 4px;
  color: #999;
}
.case-summary {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}
.case-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #f0f0f5;
  padding-top: 12px;
  margin-top: 2px;
}
.case-products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
  flex: 1;
}
.case-chip {
  display: inline-block;
  background: #f3f4f8;
  color: #555;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.case-readmore {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-gold-deep);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}
.case-card:hover .case-readmore {
  gap: 9px;
}
.cases-disclaimer {
  text-align: center;
  margin: 26px 0 0;
  font-size: 12px;
  color: #999;
  font-style: italic;
}

/* Ribbon color tokens */
.ribbon-indigo .case-ribbon,
.ribbon-indigo .case-detail-ribbon { background: linear-gradient(to right, #6366f1, #818cf8); }
.ribbon-indigo .case-monogram { background: #4338ca; }

.ribbon-teal .case-ribbon,
.ribbon-teal .case-detail-ribbon { background: linear-gradient(to right, #14b8a6, #2dd4bf); }
.ribbon-teal .case-monogram { background: #0f766e; }

.ribbon-amber .case-ribbon,
.ribbon-amber .case-detail-ribbon { background: linear-gradient(to right, #d97706, #f59e0b); }
.ribbon-amber .case-monogram { background: #b45309; }

.ribbon-rose .case-ribbon,
.ribbon-rose .case-detail-ribbon { background: linear-gradient(to right, #e11d48, #fb7185); }
.ribbon-rose .case-monogram { background: #be123c; }

.ribbon-slate .case-ribbon,
.ribbon-slate .case-detail-ribbon { background: linear-gradient(to right, #475569, #64748b); }
.ribbon-slate .case-monogram { background: #334155; }

.ribbon-emerald .case-ribbon,
.ribbon-emerald .case-detail-ribbon { background: linear-gradient(to right, #059669, #10b981); }
.ribbon-emerald .case-monogram { background: #047857; }

/* ============ Case Detail Page ============ */
.case-detail {
  background: #fff;
  min-height: 100vh;
  padding-bottom: 80px;
}
.case-detail-ribbon {
  height: 6px;
  width: 100%;
}
.case-detail-topbar {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.case-detail-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.case-detail-brand:focus,
.case-detail-brand:hover {
  text-decoration: none;
}
.case-detail-logo {
  height: 52px;
  width: auto;
  display: block;
}
.case-detail-back {
  appearance: none;
  background: transparent;
  border: 1px solid #e2e2ea;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #1f2a44;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.case-detail-back:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--text-on-gold);
}
.case-detail-hero {
  max-width: 1080px;
  margin: 22px auto 0;
  padding: 0 24px;
}
.case-detail-hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14);
}
.case-detail-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px 0;
}
.case-detail-header {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.case-detail-industry {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}
.case-detail-industry i {
  margin-right: 6px;
  color: #888;
}
.case-detail-date {
  margin-left: 8px;
  color: #888;
}
.case-detail-title {
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1f2a44;
  margin: 0 0 14px;
  line-height: 1.15;
}
.case-detail-summary {
  font-size: 17px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}
.case-detail-products {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  margin: 0 0 28px;
  border-top: 1px solid #eef0f5;
  border-bottom: 1px solid #eef0f5;
}
.case-detail-products-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #888;
  margin-right: 6px;
}
.case-detail-products .case-chip {
  font-size: 12px;
  padding: 5px 12px;
}
.case-detail-body {
  font-size: 17px;
  color: #374151;
  line-height: 1.85;
}
.case-detail-paragraph {
  margin: 0 0 24px;
}
.case-detail-figure {
  margin: 8px 0 32px;
  padding: 0;
}
.case-detail-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.case-detail-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

/* Related cases */
.case-detail-related {
  max-width: 1080px;
  margin: 60px auto 0;
  padding: 60px 24px 0;
  border-top: 1px solid #eef0f5;
}
.case-detail-related-title {
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1f2a44;
  margin: 0 0 22px;
  text-align: center;
}
.case-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-related-card {
  position: relative;
  appearance: none;
  background: #fff;
  border: 1px solid #ececf2;
  border-radius: 12px;
  padding: 18px 18px 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.case-related-card:hover,
.case-related-card:focus {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  outline: none;
}
.case-related-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}
.case-related-card .case-name { font-size: 15px; }
.case-related-card .case-industry { font-size: 11px; }

@keyframes caseFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes caseSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .case-detail-title {
    font-size: 26px;
  }
  .case-detail-header {
    flex-direction: column;
    gap: 14px;
  }
  .case-detail-related-grid {
    grid-template-columns: 1fr;
  }
}
/* Global Presence Section */
#team.global-presence {
  padding: 100px 0;
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}
.global-presence .container {
  max-width: 1240px;
}
.global-presence .gp-head {
  margin-bottom: 56px;
}
.global-presence .gp-head h2 {
  font-size: 38px;
}
.global-presence .gp-head p {
  color: #6b7385;
  font-size: 16px;
  max-width: 720px;
  margin: 16px auto 0;
}

.gp-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 36px;
}
.gp-map-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(31, 42, 68, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.gp-map-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: contain;
}

.gp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: stretch;
}
.gp-stat-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 18px;
  box-shadow: 0 6px 20px rgba(31, 42, 68, 0.05);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gp-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(31, 42, 68, 0.1);
}
.gp-stat-card:first-child {
  grid-column: 1 / -1;
}
.gp-stat-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #eef2ff 0%, #dbe9ff 100%);
  color: #4f46e5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.gp-stat-body { min-width: 0; }
.gp-stat-value {
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #4f46e5;
  line-height: 1.1;
}
.gp-stat-card:first-child .gp-stat-value { font-size: 44px; }
.gp-stat-label {
  color: #1f2a44;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}
.gp-stat-sub {
  color: #6b7385;
  font-size: 12px;
  margin-top: 2px;
  line-height: 1.5;
}

.gp-hubs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.gp-hub-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(31, 42, 68, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gp-hub-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(31, 42, 68, 0.1);
}
.gp-hub-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef2ff 0%, #dbe9ff 100%);
  color: #4f46e5;
  margin: 0 auto 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.gp-hub-city {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #1f2a44;
  margin-bottom: 6px;
}
.gp-hub-role {
  color: #6b7385;
  font-size: 12px;
  line-height: 1.55;
}

.gp-partners {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(31, 42, 68, 0.05);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: center;
}
.gp-partners-intro {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.gp-partners-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eef2ff 0%, #dbe9ff 100%);
  color: #4f46e5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.gp-partners-title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #4f46e5;
  margin-bottom: 6px;
}
.gp-partners-sub {
  color: #6b7385;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}
.gp-partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.gp-partner-card {
  background: #f8fafc;
  border: 1px solid #e7eaf0;
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
}
.gp-partner-card:hover {
  background: #ffffff;
  border-color: #c7d2fe;
  transform: translateY(-2px);
}
.gp-partner-icon {
  font-size: 26px;
  color: #4f46e5;
}
.gp-partner-logo {
  max-width: 80%;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.gp-partner-name {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #1f2a44;
}

@media (max-width: 1100px) {
  .gp-hubs { grid-template-columns: repeat(4, 1fr); }
  .gp-partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .gp-top { grid-template-columns: 1fr; }
  .gp-stats { grid-template-columns: 1fr 1fr; }
  .gp-partners { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .gp-hubs { grid-template-columns: repeat(2, 1fr); }
  .gp-partners-grid { grid-template-columns: repeat(2, 1fr); }
  .gp-stats { grid-template-columns: 1fr; }
  .gp-stat-card:first-child { grid-column: auto; }
}
/* Contact Section */
#contact {
  padding: 100px 0 60px;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  color: rgba(255, 255, 255, 0.75);
}
#contact .section-title {
  margin-bottom: 40px;
}
#contact .section-title p {
  font-size: 16px;
}
#contact h2 {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#contact .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 30px;
}
#contact h3 {
  color: #fff;
  margin-top: 80px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  font-weight: 400;
}
#contact form {
  padding-top: 20px;
}
#contact .text-danger {
  color: #cc0033;
  text-align: left;
}
#contact .btn-custom {
  margin: 30px 0;
  background: transparent;
  border: 2px solid #fff;
}
#contact .btn-custom:hover {
  color: #1f386e;
  background: #fff;
}
#contact .contact-submit {
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s ease, color 0.25s ease,
    border-color 0.25s ease, transform 0.15s ease, opacity 0.2s ease;
}
#contact .contact-submit-icon {
  font-size: 16px;
  line-height: 1;
}
#contact .contact-submit.is-sending,
#contact .contact-submit.is-sending:hover,
#contact .contact-submit.is-sending:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  cursor: progress;
}
#contact .contact-submit.is-success,
#contact .contact-submit.is-success:hover,
#contact .contact-submit.is-success:focus {
  background: #2ecc71;
  border-color: #2ecc71;
  color: #fff;
  cursor: default;
}
#contact .contact-submit[disabled] {
  opacity: 1;
}
#contact .contact-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  margin: 0 0 -10px;
  max-height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0);
  color: #eafff3;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.35s ease, padding 0.25s ease, margin 0.25s ease,
    opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
#contact .contact-status.contact-status-visible {
  max-height: 80px;
  padding: 12px 16px;
  margin: 4px 0 18px;
  border-color: rgba(46, 204, 113, 0.55);
  opacity: 1;
  transform: translateY(0);
}
#contact .contact-status-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2ecc71;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.25);
  animation: contact-status-pop 0.35s ease;
}
#contact .contact-status-text {
  font-size: 14px;
  line-height: 1.5;
}
#contact .contact-status-text strong {
  color: #ffffff;
  font-weight: 700;
  margin-right: 4px;
}
@keyframes contact-status-pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
label {
  font-size: 12px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  float: left;
}
#contact .form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #444;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ddd;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
#contact .form-control:focus {
  border-color: #999;
  outline: 0;
  -webkit-box-shadow: transparent;
  box-shadow: transparent;
}
.form-control::-webkit-input-placeholder {
  color: #777;
}
.form-control:-moz-placeholder {
  color: #777;
}
.form-control::-moz-placeholder {
  color: #777;
}
.form-control:-ms-input-placeholder {
  color: #777;
}
#contact .contact-item {
  margin: 20px 0;
}
#contact .contact-item span {
  color: rgba(255, 255, 255, 1);
  margin-bottom: 10px;
  display: block;
}
#contact .contact-item i.fa {
  margin-right: 10px;
}
#contact .contact-item a,
#contact .contact-item a:hover,
#contact .contact-item a:focus {
  color: #fff;
}
#contact .social {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 50px;
  margin-top: 50px;
  text-align: center;
}
#contact .social ul li {
  display: inline-block;
  margin: 0 20px;
}
#contact .social i.fa {
  font-size: 22px;
  width: 48px;
  height: 48px;
  padding: 12px 0;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
#contact .social i.fa:hover {
  color: var(--brand-gold-deep);
  background: #fff;
}
/* Footer Section */
.site-footer {
  background: #0f1729;
  color: #c5cbda;
  padding: 64px 0 0;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}
.site-footer .container {
  max-width: 1200px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand {
  display: inline-block;
  margin-bottom: 18px;
}
.footer-brand:hover,
.footer-brand:focus {
  text-decoration: none;
}
.footer-logo {
  height: 56px;
  width: auto;
  display: block;
}
.footer-tagline {
  color: #97a0b5;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 360px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #c5cbda;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.18s ease;
}
.footer-social a:hover {
  background: var(--gradient-primary);
  color: var(--text-on-gold);
  transform: translateY(-1px);
}
.footer-heading {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 6px 0 18px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 10px;
}
.footer-list a {
  color: #c5cbda;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-list a:hover {
  color: #ffffff;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #c5cbda;
}
.footer-contact .fa {
  width: 16px;
  margin-top: 4px;
  color: var(--brand-gold-deep);
  flex-shrink: 0;
}
.footer-contact a {
  word-break: break-all;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  margin: 0;
  color: #7d869c;
  font-size: 13px;
}
.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: #7d869c;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s ease;
}
.footer-legal a:hover {
  color: #ffffff;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .site-footer {
    padding-top: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  p {
    font-size: 15px;
    line-height: 1.65;
  }

  #menu {
    padding: 10px 0;
  }

  #menu .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  #menu .navbar-header {
    min-height: 62px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #menu .navbar-header::before,
  #menu .navbar-header::after {
    display: none;
    content: none;
  }

  #menu a.navbar-brand {
    height: auto;
    padding: 0;
    order: 1;
  }

  #menu a.navbar-brand .navbar-logo {
    height: 54px;
  }

  #menu .navbar-toggle {
    width: 44px;
    height: 44px;
    margin: 0;
    order: 2;
    border-color: #e6e8ed;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  #menu .navbar-toggle .icon-bar {
    width: 22px;
    height: 2px;
    margin: 0;
    background-color: #555;
  }

  #menu .navbar-collapse {
    margin: 10px -22px 0;
    padding: 8px 22px 12px;
    border-top: 1px solid #eeeeee;
    box-shadow: none;
  }

  #menu.navbar-default .navbar-nav > li > a {
    margin: 0;
    padding: 12px 0;
    font-size: 13px;
  }

  #header {
    padding-top: 82px;
    background: #ffffff;
  }

  .intro {
    padding-top: 56.28%;
    background-position: center top;
    background-size: contain;
  }

  .intro .overlay {
    background: none;
  }

  header .intro-text {
    top: 73%;
    width: 100%;
  }

  .btn-custom {
    padding: 11px 24px;
    border-radius: 22px;
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  .intro .btn-custom,
  .intro .btn-custom.btn-lg {
    min-width: 96px;
    padding: 3px 14px;
    border-radius: 12px;
    font-size: 9px;
    line-height: 1.1;
    letter-spacing: 0.35px;
  }

  #features,
  #about,
  #services,
  #portfolio,
  #testimonials,
  #team.global-presence,
  #contact {
    padding: 56px 0;
  }

  .section-title {
    margin-bottom: 34px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .section-title h2 {
    margin-top: 0;
    padding-bottom: 14px;
    overflow-wrap: break-word;
  }

  .section-title p {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.65;
  }

  #features {
    padding-top: 32px;
    padding-bottom: 34px;
  }

  #features .row {
    margin-left: 0;
    margin-right: 0;
  }

  #features .row > [class*="col-"] {
    float: none;
    width: 100%;
    padding-left: 28px;
    padding-right: 28px;
    margin-bottom: 34px;
  }

  #features i.fa {
    width: 84px;
    height: 84px;
    padding: 25px 0;
    margin-bottom: 18px;
    font-size: 34px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  }

  #features h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
  }

  #features p {
    max-width: 315px;
    margin: 0 auto;
    color: #666666;
    font-size: 16px;
    line-height: 1.65;
  }

  #about .about-layout,
  #about .about-media,
  #about .about-copy,
  #about .about-text {
    display: block;
  }

  #about .about-media {
    margin-bottom: 30px;
    text-align: center;
  }

  #about .about-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  #about img {
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: none;
    object-fit: contain;
    margin: 0 auto;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  }

  #about h2 {
    font-size: 30px;
  }

  #about p {
    margin: 22px 0;
    font-size: 15px;
    line-height: 1.75;
  }

  #about h3 {
    margin: 24px 0 16px;
    font-size: 22px;
  }

  #about .list-style > [class*="col-"] {
    float: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  #about .about-text li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.55;
  }

  #services .row {
    margin-left: 0;
    margin-right: 0;
  }

  #services .row > [class*="col-"] {
    float: none;
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
    margin-bottom: 38px;
  }

  #services .row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }

  #services i.fa {
    width: 88px;
    height: 88px;
    padding: 27px 0;
    margin-bottom: 16px;
    font-size: 34px;
  }

  #services .service-desc {
    max-width: 340px;
    min-height: 0;
    margin: 0 auto;
  }

  #services h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.25;
  }

  #services p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
  }

  #services .service-links {
    gap: 6px;
    margin-top: 14px;
  }

  #services .service-links a {
    min-height: 28px;
    padding: 4px 9px;
    font-size: 12px;
  }

  .gallery-carousel {
    padding: 0;
  }

  .gallery-stage {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  }

  .gallery-nav {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .gallery-caption {
    max-width: 330px;
    min-height: 0;
    margin: 12px auto 0;
    font-size: 13px;
    line-height: 1.5;
  }

  .cases-grid {
    gap: 16px;
  }

  .case-card {
    padding: 18px 16px 16px;
  }

  .case-head {
    align-items: flex-start;
    gap: 12px;
  }

  .case-date {
    max-width: 82px;
    font-size: 10px;
    text-align: right;
  }

  .case-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-readmore {
    align-self: flex-start;
  }

  .global-presence .gp-head {
    margin-bottom: 34px;
  }

  .global-presence .gp-head h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .global-presence .gp-head p {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.65;
  }

  .gp-top {
    gap: 18px;
    margin-bottom: 24px;
  }

  .gp-map-wrap {
    min-height: 220px;
    padding: 12px;
    border-radius: 12px;
  }

  .gp-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gp-stat-card:first-child {
    grid-column: auto;
  }

  .gp-stat-card {
    padding: 15px;
    border-radius: 12px;
  }

  .gp-stat-value,
  .gp-stat-card:first-child .gp-stat-value {
    font-size: 28px;
  }

  .gp-hubs {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .gp-hub-card {
    padding: 16px 10px;
  }

  .gp-hub-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    font-size: 20px;
  }

  .gp-hub-city {
    font-size: 14px;
  }

  .gp-partners {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 12px;
  }

  .gp-partners-intro {
    gap: 12px;
  }

  .gp-partners-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gp-partner-card {
    min-height: 76px;
    padding: 14px 10px;
  }

  #contact {
    padding-bottom: 42px;
  }

  #contact .container > .col-md-8,
  #contact .contact-info {
    float: none;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  #contact .section-title {
    margin-bottom: 26px;
  }

  #contact h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  #contact .btn-custom {
    width: 100%;
    max-width: 260px;
    margin: 22px 0 8px;
  }

  #contact .contact-info {
    margin-top: 16px;
  }

  #contact .contact-item {
    margin: 16px 0;
  }

  #contact .social {
    padding-top: 28px;
    margin-top: 32px;
  }

  #contact .social ul li {
    margin: 0 8px;
  }

  .site-footer {
    padding-top: 44px;
  }

  .site-footer .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 30px;
  }

  .footer-logo {
    height: 50px;
  }

  .footer-tagline {
    max-width: 100%;
    font-size: 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    padding: 20px 0;
  }

  .footer-copy {
    font-size: 12px;
    line-height: 1.6;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 28px;
  }

  #header {
    padding-top: 76px;
  }

  #menu .navbar-header {
    min-height: 56px;
  }

  #menu a.navbar-brand .navbar-logo {
    height: 50px;
  }

  .intro {
    padding-top: 56.28%;
  }

  #features .row > [class*="col-"] {
    padding-left: 18px;
    padding-right: 18px;
  }

  #features h3 {
    font-size: 22px;
  }

  #services h3 {
    font-size: 21px;
  }

  .gp-hubs,
  .gp-partners-grid {
    grid-template-columns: 1fr;
  }
}
