/* Tech.GoBright button and UI polish
   Real CSS only: this file is loaded after Tailwind CDN on every page. */

:root {
  --gb-red: #e60012;
  --gb-red-dark: #c4000f;
  --gb-ink: #111827;
  --gb-muted: #4b5563;
  --gb-border: #e5e7eb;
  --gb-ring: rgba(230, 0, 18, 0.2);
}

html { scroll-behavior: smooth; }

body {
  color: var(--gb-ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a,
button { -webkit-tap-highlight-color: transparent; }

/* Shared CTA shape: matches the reference image, with a tighter modern pill. */
a[class*="bg-red-600"][class*="rounded-full"],
button[class*="bg-red-600"][class*="rounded"],
.btn-primary,
.btn-primary-small,
.btn-cta,
.btn-support,
.btn-lg,
.btn-xs,
.btn-pill {
  background: var(--gb-red) !important;
  border: 1px solid var(--gb-red) !important;
  border-radius: 8px !important;
  color: #fff !important;
  box-shadow: 0 10px 18px rgba(230, 0, 18, 0.18), 0 2px 5px rgba(17, 24, 39, 0.08) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  min-height: 44px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease !important;
}

a[class*="bg-red-600"][class*="rounded-full"]:hover,
button[class*="bg-red-600"][class*="rounded"]:hover,
.btn-primary:hover,
.btn-primary-small:hover,
.btn-cta:hover,
.btn-support:hover,
.btn-lg:hover,
.btn-xs:hover,
.btn-pill:hover {
  background: var(--gb-red-dark) !important;
  border-color: var(--gb-red-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(230, 0, 18, 0.24), 0 4px 10px rgba(17, 24, 39, 0.12) !important;
}

/* White secondary CTA. Covers the current white/outlined Tailwind patterns. */
a[class*="bg-white"][class*="border"][class*="rounded-full"],
button[class*="bg-white"][class*="border"][class*="rounded"],
.btn-secondary,
.btn-secondary-small {
  background: #fff !important;
  border: 1px solid var(--gb-border) !important;
  border-radius: 8px !important;
  color: var(--gb-ink) !important;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08) !important;
  font-weight: 700 !important;
  min-height: 44px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, background-color 180ms ease !important;
}

a[class*="bg-white"][class*="border"][class*="rounded-full"]:hover,
button[class*="bg-white"][class*="border"][class*="rounded"]:hover,
.btn-secondary:hover,
.btn-secondary-small:hover {
  border-color: #d1d5db !important;
  color: var(--gb-red) !important;
  background: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(17, 24, 39, 0.12) !important;
}

/* Keep small card buttons compact but still aligned with the global style. */
a[class*="text-xs"][class*="rounded-full"],
button[class*="text-xs"][class*="rounded"] {
  min-height: 34px;
  border-radius: 7px !important;
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.08) !important;
}

/* Arrow icons should feel like a clear action, not static decoration. */
a[class*="items-center"] svg:last-child,
button[class*="items-center"] svg:last-child {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

a[class*="items-center"]:hover svg:last-child,
button[class*="items-center"]:hover svg:last-child { transform: translateX(3px); }


.gb-hero-copy {
  width: min(100%, 780px);
  padding: clamp(1rem, 2vw, 1.6rem);
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 14px;
  background: rgba(255,255,255,0.62);
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.14);
  backdrop-filter: blur(4px);
}

.gb-hero-copy-right {
  margin-left: auto;
  background: rgba(255,255,255,0.66);
}

.gb-hero-copy span:first-child {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  padding: 0.35rem 0.75rem;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
}

#hero-section .hidden.lg\:flex.items-center.gap-6,
#hero-section .hidden.lg\:flex.items-center.justify-end.gap-6 {
  flex-wrap: wrap;
  gap: 0.75rem !important;
}

#hero-section .hidden.lg\:flex.items-center.gap-6 > div,
#hero-section .hidden.lg\:flex.items-center.justify-end.gap-6 > div {
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  padding: 0.35rem 0.65rem;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(4px);
}
/* Navigation and menus get a cleaner, lighter surface. */
header nav {
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 6px 24px rgba(17, 24, 39, 0.06) !important;
}

header nav a,
#mobile-menu a,
#mobile-menu button {
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease !important;
}

header nav a:hover,
#mobile-menu a:hover,
#mobile-menu button:hover { transform: translateY(-1px); }

/* Cards across services/blog/about pages. */
a[class*="rounded-2xl"][class*="shadow"],
div[class*="rounded-2xl"][class*="shadow"],
article[class*="rounded-2xl"],
section form,
.rounded-2xl.bg-white {
  border-color: rgba(229, 231, 235, 0.9) !important;
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.07) !important;
}

a[class*="rounded-2xl"][class*="shadow"]:hover,
article[class*="rounded-2xl"]:hover { box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12) !important; }

input,
textarea,
select { transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease; }

input:focus,
textarea:focus,
select:focus,
a:focus-visible,
button:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 4px var(--gb-ring) !important;
}

@media (max-width: 640px) {
  a[class*="bg-red-600"][class*="rounded-full"],
  a[class*="bg-white"][class*="border"][class*="rounded-full"],
  button[class*="bg-red-600"][class*="rounded"],
  button[class*="bg-white"][class*="border"][class*="rounded"] {
    min-height: 40px;
    border-radius: 8px !important;
  }

  #mobile-menu a,
  #mobile-menu button { border-radius: 8px !important; }
}

/* Banner / hero improvements */
.gb-page-banner,
#hero-section,
.gb-service-banner {
  isolation: isolate;
  background: #f8fafc;
}

.gb-page-banner::before,
#hero-section .relative.w-full.h-full.shrink-0::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.38) 40%, rgba(255,255,255,0.04) 100%),
    radial-gradient(circle at 18% 38%, rgba(230,0,18,0.08), transparent 30%);
}

#hero-section .relative.w-full.h-full.shrink-0:nth-child(2)::before {
  background:
    linear-gradient(270deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.38) 40%, rgba(255,255,255,0.04) 100%),
    radial-gradient(circle at 78% 38%, rgba(230,0,18,0.08), transparent 30%);
}

.gb-page-banner > img,
#hero-section .relative.w-full.h-full.shrink-0 > img {
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}

.gb-page-banner > .relative,
#hero-section .absolute.inset-0,
.gb-service-banner > div {
  position: relative;
  z-index: 2;
}

.gb-page-banner h1,
#hero-section h2,
.gb-service-banner h1 {
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.gb-page-banner p,
#hero-section p,
.gb-service-banner p {
  line-height: 1.7;
}

.gb-banner-actions {
  align-items: center;
}

.gb-banner-actions a {
  white-space: nowrap;
}

.gb-service-banner {
  background:
    linear-gradient(135deg, rgba(254,242,242,0.95), rgba(255,255,255,1) 52%),
    radial-gradient(circle at 85% 20%, rgba(230,0,18,0.10), transparent 30%);
  border-bottom: 1px solid rgba(229,231,235,0.85);
}

.gb-service-banner img {
  transform: scale(1.01);
  transition: transform 240ms ease;
}

.gb-service-banner .relative.rounded-3xl {
  border-radius: 18px !important;
  box-shadow: 0 24px 52px rgba(17, 24, 39, 0.14) !important;
}

@media (max-width: 640px) {
  .gb-page-banner::before,
  #hero-section .relative.w-full.h-full.shrink-0::before,
  #hero-section .relative.w-full.h-full.shrink-0:nth-child(2)::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.78), rgba(255,255,255,0.28));
  }


  .gb-hero-copy {
    padding: 0.8rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.62);
    backdrop-filter: blur(3px);
  }
  .gb-page-banner {
    min-height: 360px;
  }

  .gb-banner-actions {
    gap: 0.6rem !important;
  }

  .gb-banner-actions a {
    min-height: 38px !important;
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
    font-size: 0.78rem !important;
  }

  .gb-banner-actions a svg {
    width: 0.9rem;
    height: 0.9rem;
  }
}
/* Force homepage banner text visibility */
#hero-section .absolute.inset-0 {
  z-index: 3 !important;
}

#hero-section .gb-hero-copy {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22) !important;
}

#hero-section .gb-hero-copy span,
#hero-section .gb-hero-copy h2,
#hero-section .gb-hero-copy p,
#hero-section .gb-banner-actions {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#hero-section .gb-hero-copy h2 {
  display: block !important;
  color: #111827 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

#hero-section .gb-hero-copy p {
  display: block !important;
  color: #374151 !important;
  font-weight: 500;
}

#hero-section .gb-hero-copy .text-red-500 {
  color: #e60012 !important;
}

@media (max-width: 640px) {
  #hero-section {
    min-height: 430px;
    aspect-ratio: auto !important;
  }

  #hero-section .gb-hero-copy {
    width: calc(100vw - 2rem) !important;
    max-width: calc(100vw - 2rem) !important;
    padding: 1rem !important;
  }

  #hero-section .gb-hero-copy h2 {
    font-size: 1.55rem !important;
    line-height: 1.15 !important;
    margin-bottom: 0.7rem !important;
  }

  #hero-section .gb-hero-copy p {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    margin-bottom: 0.85rem !important;
  }
}
/* Hard fix: homepage banner text must sit above slide images */
#hero-section .relative.w-full.h-full.shrink-0 {
  position: relative !important;
}

#hero-section .relative.w-full.h-full.shrink-0 > img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

#hero-section .relative.w-full.h-full.shrink-0 > .absolute.inset-0 {
  position: absolute !important;
  inset: 0 !important;
  z-index: 20 !important;
  display: flex !important;
  align-items: center !important;
  pointer-events: none;
}

#hero-section .gb-hero-copy,
#hero-section .gb-hero-copy * {
  pointer-events: auto;
}

#hero-section .gb-hero-copy {
  position: relative !important;
  z-index: 30 !important;
  color: #111827 !important;
  background: rgba(255,255,255,0.92) !important;
  outline: 3px solid rgba(230,0,18,0.18);
}

#hero-section .gb-hero-copy h2,
#hero-section .gb-hero-copy p,
#hero-section .gb-hero-copy span,
#hero-section .gb-hero-copy a {
  position: relative !important;
  z-index: 31 !important;
}
/* Right-center floating contact widget */
.gb-floating-contact {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 10px;
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  animation: gbFloatDockIn 520ms ease-out both, gbFloatDockBreathe 3.8s ease-in-out infinite 900ms;
}

.gb-floating-contact__btn {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #111827;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.gb-floating-contact__btn svg {
  width: 22px;
  height: 22px;
}

.gb-floating-contact__btn:hover {
  transform: translateX(-5px) scale(1.08);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.18);
}

.gb-floating-contact__btn--whatsapp {
  background: #25d366;
  color: #ffffff;
  animation: gbFloatIconPulse 2.4s ease-in-out infinite;
}

.gb-floating-contact__btn--phone {
  background: #e60012;
  color: #ffffff;
}

.gb-floating-contact__btn--mail {
  background: #ffffff;
  color: #111827;
}

.gb-floating-contact__btn--mail:hover {
  color: #e60012;
}

.gb-floating-contact__btn::after {
  content: attr(title);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  min-width: max-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: #111827;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.gb-floating-contact__btn:hover::after {
  opacity: 1;
  transform: translate(0, -50%);
}

@keyframes gbFloatDockIn {
  from { opacity: 0; transform: translate(24px, -50%); }
  to { opacity: 1; transform: translate(0, -50%); }
}

@keyframes gbFloatDockBreathe {
  0%, 100% { box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16); }
  50% { box-shadow: 0 20px 52px rgba(230, 0, 18, 0.16); }
}

@keyframes gbFloatIconPulse {
  0%, 100% { box-shadow: 0 10px 22px rgba(37, 211, 102, 0.24); }
  50% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.46), 0 0 0 8px rgba(37, 211, 102, 0.10); }
}

@media (max-width: 768px) {
  .gb-floating-contact {
    right: 14px;
    top: auto;
    bottom: 84px;
    gap: 9px;
    padding: 9px 8px;
    transform: none;
    animation: gbFloatDockMobileIn 420ms ease-out both;
  }

  .gb-floating-contact__btn {
    width: 42px;
    height: 42px;
  }

  .gb-floating-contact__btn::after {
    display: none;
  }
}

@keyframes gbFloatDockMobileIn {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}
/* Remove banner text box background and border */
#hero-section .gb-hero-copy {
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

#hero-section .gb-hero-copy-right {
  background: transparent !important;
}

#hero-section .gb-hero-copy span:first-child {
  background: transparent !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Site-wide icon polish */
svg {
  flex-shrink: 0;
  shape-rendering: geometricPrecision;
}

svg[fill="none"][stroke="currentColor"] {
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

a svg,
button svg {
  transition: transform 180ms ease, color 180ms ease, filter 180ms ease;
}

a:hover > svg,
button:hover > svg {
  filter: drop-shadow(0 4px 8px rgba(230, 0, 18, 0.18));
}

/* Make feature/service icon circles look premium across pages. */
:is(.w-14.h-14, .w-12.h-12, .w-10.h-10, .w-8.h-8):has(> svg) {
  background: linear-gradient(135deg, #fff 0%, #fff5f5 45%, #ffe1e5 100%) !important;
  border: 1px solid rgba(230, 0, 18, 0.12);
  color: var(--gb-red) !important;
  box-shadow: 0 10px 24px rgba(230, 0, 18, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

:is(.w-14.h-14, .w-12.h-12, .w-10.h-10, .w-8.h-8):has(> svg) > svg {
  stroke-width: 2.1;
}

:is(a, button, div):hover > :is(.w-14.h-14, .w-12.h-12, .w-10.h-10, .w-8.h-8):has(> svg),
:is(.w-14.h-14, .w-12.h-12, .w-10.h-10, .w-8.h-8):has(> svg):hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(230, 0, 18, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Contact/top-bar icons: crisp badge treatment on every page. */
a[href^="tel:"] > svg,
a[href^="mailto:"] > svg {
  width: 1.1rem;
  height: 1.1rem;
  padding: 0.12rem;
  border-radius: 999px;
  background: rgba(230, 0, 18, 0.12);
  color: var(--gb-red) !important;
}

header a[href^="tel:"] > svg,
header a[href^="mailto:"] > svg,
.bg-slate-950 a[href^="tel:"] > svg,
.bg-slate-950 a[href^="mailto:"] > svg {
  background: rgba(255, 255, 255, 0.12);
  color: #f87171 !important;
}

/* Admin/action icons get the same sharper visual language. */
.Admin svg,
[class*="Admin"] svg,
a[title="Edit"] svg,
a[title="Delete"] svg,
button[data-open-modal] svg {
  stroke-width: 2.15;
}

a[title="Edit"],
a[title="Delete"],
button[data-open-modal] {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease !important;
}

a[title="Edit"]:hover,
a[title="Delete"]:hover,
button[data-open-modal]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(230, 0, 18, 0.16);
}

/* Social icons stay brand-like but feel sharper. */
a[aria-label] svg[fill="currentColor"] {
  filter: drop-shadow(0 5px 10px rgba(17, 24, 39, 0.10));
}

/* First banner content style matching reference */
#hero-section .gb-hero-copy--first {
  max-width: 660px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

#hero-section .gb-hero-copy--first > span:first-child {
  display: inline-flex !important;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(230, 0, 18, 0.24) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.74) !important;
  color: #e60012 !important;
  padding: 0.38rem 0.85rem !important;
  box-shadow: none !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

#hero-section .gb-hero-copy--first h2 {
  margin-top: 1rem !important;
  margin-bottom: 1.2rem !important;
  color: #050505 !important;
  font-size: clamp(2.6rem, 4.4vw, 4.8rem) !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

#hero-section .gb-hero-copy--first h2 .text-red-500 {
  color: #e60012 !important;
}

#hero-section .gb-hero-copy--first p {
  max-width: 545px !important;
  color: #4b5563 !important;
  font-size: clamp(0.95rem, 1vw, 1.08rem) !important;
  line-height: 1.75 !important;
  font-weight: 500 !important;
}

#hero-section .gb-hero-copy--first .gb-banner-actions {
  margin-top: 1.65rem !important;
  gap: 1rem !important;
}

#hero-section .gb-hero-copy--first .hidden.lg\:flex {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 680px);
  gap: 0 !important;
  margin-top: 2.2rem !important;
  padding: 1rem 1.1rem !important;
  border: 1px solid rgba(229, 231, 235, 0.78);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  backdrop-filter: blur(5px);
}

#hero-section .gb-hero-copy--first .hidden.lg\:flex > div {
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  min-height: 70px;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 1rem !important;
  color: #111827 !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  text-align: center;
}

#hero-section .gb-hero-copy--first .hidden.lg\:flex > div + div {
  border-left: 1px solid rgba(229, 231, 235, 0.95);
}

#hero-section .gb-hero-copy--first .hidden.lg\:flex span {
  width: 36px !important;
  height: 36px !important;
  border-color: rgba(230, 0, 18, 0.18) !important;
  background: #fff5f5 !important;
  color: #e60012 !important;
}

#hero-section .gb-hero-copy--first .hidden.lg\:flex svg {
  width: 20px !important;
  height: 20px !important;
}

@media (max-width: 1023px) {
  #hero-section .gb-hero-copy--first .hidden.lg\:flex {
    display: none !important;
  }
}

@media (max-width: 640px) {
  #hero-section .gb-hero-copy--first h2 {
    font-size: 2rem !important;
  }

  #hero-section .gb-hero-copy--first p {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
  }
}
/* Our Services image card redesign */
.gb-services-card-grid {
  align-items: stretch;
}

.gb-service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 16px;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gb-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 0, 18, 0.24);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
}

.gb-service-card__media {
  position: relative;
  display: flex;
  height: 145px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 92%, rgba(230, 0, 18, 0.14), transparent 34%),
    linear-gradient(135deg, #f8fafc, #ffffff 58%, #fff1f2);
}

.gb-service-card__media::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 12px;
  height: 16px;
  border-radius: 999px;
  background: rgba(230, 0, 18, 0.14);
  filter: blur(10px);
}

.gb-service-card__media img {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(15, 23, 42, 0.15));
  transition: transform 260ms ease;
}

.gb-service-card:hover .gb-service-card__media img {
  transform: scale(1.06) translateY(-3px);
}

.gb-service-card__body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.gb-service-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: -2.35rem;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(230, 0, 18, 0.16);
  border-radius: 12px;
  background: #ffffff;
  color: #e60012;
  box-shadow: 0 12px 24px rgba(230, 0, 18, 0.14);
}

.gb-service-card h3 {
  margin: 0 0 0.55rem;
  color: #111827;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.gb-service-card p {
  margin: 0 0 1rem;
  color: #6b7280;
  font-size: 0.86rem;
  line-height: 1.6;
}

.gb-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  color: #e60012;
  font-size: 0.83rem;
  font-weight: 800;
  transition: gap 180ms ease;
}

.gb-service-card:hover .gb-service-card__link {
  gap: 0.65rem;
}

@media (max-width: 640px) {
  .gb-service-card__media {
    height: 170px;
  }

  .gb-service-card__body {
    padding: 1.25rem;
  }
}
/* Final icon and banner cleanup */
svg {
  shape-rendering: geometricPrecision;
}

svg[fill="none"][stroke="currentColor"] {
  stroke-width: 2 !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a svg,
button svg {
  filter: none !important;
}

a:hover > svg,
button:hover > svg {
  filter: none !important;
}

/* Keep all service/feature icons in one clean style instead of mixed heavy badges. */
:is(.w-14.h-14, .w-12.h-12, .w-11.h-11, .w-10.h-10, .w-8.h-8):has(> svg) {
  background: #fff5f5 !important;
  border: 1px solid rgba(230, 0, 18, 0.16) !important;
  color: var(--gb-red) !important;
  box-shadow: none !important;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease !important;
}

:is(.w-14.h-14, .w-12.h-12, .w-11.h-11, .w-10.h-10, .w-8.h-8):has(> svg) > svg {
  width: 52% !important;
  height: 52% !important;
  stroke-width: 2 !important;
}

:is(a, button, div):hover > :is(.w-14.h-14, .w-12.h-12, .w-11.h-11, .w-10.h-10, .w-8.h-8):has(> svg),
:is(.w-14.h-14, .w-12.h-12, .w-11.h-11, .w-10.h-10, .w-8.h-8):has(> svg):hover {
  transform: translateY(-2px);
  background: var(--gb-red) !important;
  border-color: var(--gb-red) !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* Phone/mail icons should be simple line icons, not bulky circles. */
a[href^="tel:"] > svg,
a[href^="mailto:"] > svg {
  width: 1rem !important;
  height: 1rem !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: currentColor !important;
}

header a[href^="tel:"] > svg,
header a[href^="mailto:"] > svg,
.bg-slate-950 a[href^="tel:"] > svg,
.bg-slate-950 a[href^="mailto:"] > svg {
  color: #f87171 !important;
}

/* Floating contact: show only after the visitor scrolls down. */
.gb-floating-contact {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(24px, -50%) scale(0.98);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.gb-floating-contact.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0, -50%) scale(1);
}

@media (max-width: 768px) {
  .gb-floating-contact {
    transform: translateX(18px) scale(0.98);
  }

  .gb-floating-contact.is-visible {
    transform: translateX(0) scale(1);
  }
}

/* Banner spacing: keep content away from left/right edges on every page. */
.gb-page-banner > .relative,
#hero-section .absolute.inset-0 > .max-w-\[1600px\] {
  padding-left: clamp(1.5rem, 4vw, 4.5rem) !important;
  padding-right: clamp(1.5rem, 4vw, 4.5rem) !important;
}

@media (min-width: 1280px) {
  .gb-page-banner > .relative,
  #hero-section .absolute.inset-0 > .max-w-\[1600px\] {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

/* Keep scroll-only floating contact from being overridden by older entrance animation. */
.gb-floating-contact {
  animation: none !important;
}

/* Apply the premium hero icon row to banner 1, 2 and 3. */
#hero-section .gb-hero-copy .hidden.lg\:flex {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 680px);
  gap: 0 !important;
  margin-top: 2.2rem !important;
  padding: 1rem 1.1rem !important;
  border: 1px solid rgba(229, 231, 235, 0.78);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  backdrop-filter: blur(5px);
}

#hero-section .gb-hero-copy-right .hidden.lg\:flex {
  margin-left: auto !important;
}

#hero-section .gb-hero-copy .hidden.lg\:flex > div {
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  min-height: 70px;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 1rem !important;
  color: #111827 !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  text-align: center;
}

#hero-section .gb-hero-copy .hidden.lg\:flex > div + div {
  border-left: 1px solid rgba(229, 231, 235, 0.95);
}

#hero-section .gb-hero-copy .hidden.lg\:flex span {
  width: 36px !important;
  height: 36px !important;
  border-color: rgba(230, 0, 18, 0.18) !important;
  background: #fff5f5 !important;
  color: #e60012 !important;
}

#hero-section .gb-hero-copy .hidden.lg\:flex svg {
  width: 20px !important;
  height: 20px !important;
}

@media (max-width: 1023px) {
  #hero-section .gb-hero-copy .hidden.lg\:flex {
    display: none !important;
  }
}

/* Detail pages DB UI */
.gb-detail-hero,
.gb-blog-detail-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 85% 18%, rgba(237, 28, 36, 0.1), transparent 30%), linear-gradient(135deg, #ffffff 0%, #f8fafc 55%, #fff5f5 100%);
}

.gb-detail-hero::before,
.gb-blog-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 72%, transparent);
  pointer-events: none;
}

.gb-service-detail-hero,
.gb-blog-detail-hero > .max-w-7xl {
  position: relative;
  z-index: 1;
}

.gb-detail-image-card,
.gb-blog-hero-image,
.gb-article-card,
.gb-article-sidebar,
.gb-related-card,
.gb-blog-related-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.09);
}

.gb-detail-image-card,
.gb-blog-hero-image {
  border-radius: 28px;
  overflow: hidden;
}

.gb-detail-image-card img,
.gb-blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.gb-detail-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.gb-detail-stat i,
.gb-feature-card i,
.gb-meta-pill i {
  color: #ed1c24;
}

.gb-feature-card {
  height: 100%;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gb-feature-card:hover,
.gb-related-card:hover,
.gb-blog-related-card:hover {
  transform: translateY(-5px);
  border-color: rgba(237, 28, 36, 0.35);
  box-shadow: 0 22px 55px rgba(237, 28, 36, 0.12);
}

.gb-feature-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(237, 28, 36, 0.08);
  margin-bottom: 18px;
}

.gb-detail-cta {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #080c18 0%, #1c2433 54%, #ed1c24 160%);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.18);
}

.gb-detail-cta::after {
  content: "";
  position: absolute;
  inset: auto -10% -42% 44%;
  height: 220px;
  background: radial-gradient(circle, rgba(237, 28, 36, 0.32), transparent 65%);
  pointer-events: none;
}

.gb-related-card,
.gb-blog-related-card {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gb-related-card img,
.gb-blog-related-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.gb-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.95);
  color: #475569;
  font-weight: 700;
  font-size: 13px;
}

.gb-article-sidebar {
  border-radius: 24px;
  padding: 24px;
  position: sticky;
  top: 110px;
}

.gb-article-card {
  border-radius: 28px;
  padding: clamp(24px, 4vw, 46px);
}

.gb-article-body {
  color: #334155;
  font-size: 17px;
  line-height: 1.85;
}

.gb-article-body h2,
.gb-article-body h3,
.gb-article-body h4 {
  color: #0f172a;
  font-weight: 900;
  line-height: 1.25;
  margin-top: 1.8em;
  margin-bottom: 0.65em;
}

.gb-article-body h2 { font-size: clamp(26px, 3vw, 36px); }
.gb-article-body h3 { font-size: clamp(22px, 2.4vw, 28px); }
.gb-article-body p { margin-bottom: 1.1em; }
.gb-article-body ul,
.gb-article-body ol { margin: 1.1em 0 1.3em 1.3em; }
.gb-article-body li { margin-bottom: 0.55em; }
.gb-article-body a { color: #ed1c24; font-weight: 800; }

.gb-blog-related-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ed1c24;
  font-weight: 900;
}

@media (max-width: 768px) {
  .gb-detail-image-card,
  .gb-blog-hero-image,
  .gb-article-card,
  .gb-detail-cta {
    border-radius: 22px;
  }

  .gb-related-card img,
  .gb-blog-related-card img {
    height: 190px;
  }

  .gb-article-sidebar {
    position: static;
  }
}
/* Detail page finishing polish */
.gb-detail-hero > div,
.gb-blog-detail-hero > div {
  position: relative;
  z-index: 1;
}

.gb-detail-image-card {
  aspect-ratio: 16 / 11;
}

.gb-blog-hero-image {
  aspect-ratio: 16 / 10;
}

.gb-feature-card span:first-child {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(237, 28, 36, 0.08);
  color: #ed1c24;
  margin-bottom: 18px;
}

.gb-feature-card h3 {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.gb-detail-stat strong {
  color: #0f172a;
  font-size: 21px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.gb-detail-stat span {
  color: #64748b;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.gb-detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 46px);
}

.gb-detail-cta > * {
  position: relative;
  z-index: 1;
}

.gb-detail-cta h2,
.gb-detail-cta p {
  color: #fff !important;
}

.gb-detail-cta span {
  color: #fecaca !important;
}

.gb-detail-cta a {
  flex-shrink: 0;
}

.gb-related-card > div,
.gb-blog-related-card > div {
  padding: 22px;
}

.gb-related-card h3,
.gb-blog-related-card h3 {
  color: #0f172a;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 8px;
}

.gb-related-card p,
.gb-blog-related-card p,
.gb-article-sidebar p {
  color: #64748b;
  line-height: 1.7;
}

.gb-blog-related-card span {
  display: inline-flex;
  color: #ed1c24;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.gb-article-sidebar h2 {
  color: #0f172a;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 950;
  margin: 8px 0 10px;
}

.gb-article-sidebar a {
  display: inline-flex;
  margin-top: 18px;
  color: #ed1c24;
  font-weight: 900;
}

@media (max-width: 768px) {
  .gb-detail-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .gb-detail-stat {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
/* Top navigation text size increase */
header > .hidden.bg-slate-950,
header > .hidden.bg-slate-950 a,
header > .hidden.bg-slate-950 span {
  font-size: 0.98rem !important;
  line-height: 1.45 !important;
}

header nav .lg\:flex > a,
header nav .lg\:flex > .group > a {
  font-size: 1.08rem !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
}

header nav a[href="contact.php"][class*="bg-red-600"] {
  font-size: 1.04rem !important;
}

#mobile-menu a,
#mobile-menu button {
  font-size: 1.05rem !important;
}

/* Global mobile responsive safety */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
}

.gb-banner-actions a,
a[class*="rounded-full"] {
  min-width: 0;
  white-space: normal;
  text-align: center;
}

#hero-section .gb-banner-actions a svg,
.gb-page-banner .gb-banner-actions a svg {
  flex: 0 0 auto;
}

#hero-section .gb-hero-copy h2,
.gb-page-banner h1,
section h2,
section h3 {
  overflow-wrap: anywhere;
}

@media (max-width: 1023px) {
  #hero-section .max-w-\[1600px\] {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  #hero-section .gb-hero-copy,
  #hero-section .gb-hero-copy-right {
    max-width: min(92vw, 620px) !important;
    text-align: left !important;
  }

  #hero-section .gb-hero-copy-right p,
  #hero-section .gb-hero-copy-right .gb-banner-actions {
    margin-left: 0 !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 640px) {
  #hero-section {
    min-height: 500px !important;
  }

  #hero-section .relative.w-full.h-full.shrink-0 > img {
    object-position: center !important;
  }

  #hero-section .gb-hero-copy,
  #hero-section .gb-hero-copy-right,
  #hero-section .gb-hero-copy--first {
    max-width: 78vw !important;
    padding-top: 8px !important;
  }

  #hero-section .gb-hero-copy span:first-child {
    font-size: 10px !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
  }

  #hero-section .gb-hero-copy h2 {
    font-size: clamp(21px, 7vw, 30px) !important;
    line-height: 1.12 !important;
    margin-bottom: 10px !important;
  }

  #hero-section .gb-hero-copy p {
    font-size: 12px !important;
    line-height: 1.55 !important;
    max-width: 68vw !important;
    margin-bottom: 14px !important;
  }

  #hero-section .gb-banner-actions {
    gap: 8px !important;
  }

  #hero-section .gb-banner-actions a {
    min-height: 36px;
    padding: 8px 11px !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
  }

  #hero-section .gb-banner-actions svg {
    width: 14px !important;
    height: 14px !important;
  }

  .gb-page-banner {
    min-height: 360px;
    height: auto !important;
  }

  .gb-page-banner > div {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .gb-page-banner h1 {
    font-size: clamp(28px, 9vw, 42px) !important;
    line-height: 1.12 !important;
  }

  section[class*="py-16"],
  section[class*="py-14"] {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .max-w-\[1600px\],
  .max-w-\[1400px\],
  .max-w-\[1300px\],
  .max-w-\[1180px\] {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .gb-services-card-grid,
  .grid {
    min-width: 0;
  }
}
/* Banner arrow and icon sizing */
#hero-prev,
#hero-next {
  opacity: 1 !important;
  transition: none !important;
}

#hero-prev:hover,
#hero-next:hover {
  background: rgba(255, 255, 255, 0.9) !important;
}

#hero-section .gb-banner-actions a > svg,
.gb-page-banner .gb-banner-actions a > svg {
  width: 21px !important;
  height: 21px !important;
  stroke-width: 2.5;
}

#hero-section .gb-hero-copy .hidden.lg\:flex svg,
#hero-section .gb-hero-copy--first .hidden.lg\:flex svg {
  width: 19px !important;
  height: 19px !important;
}

@media (max-width: 640px) {
  #hero-prev,
  #hero-next {
    display: none !important;
  }

  #hero-section .gb-banner-actions a > svg,
  .gb-page-banner .gb-banner-actions a > svg {
    width: 17px !important;
    height: 17px !important;
  }
}
/* Our Services card center alignment and button refresh */
.gb-service-card__body {
  align-items: center !important;
  text-align: center !important;
}

.gb-service-card__icon {
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 999px !important;
  background: #fff5f5 !important;
  box-shadow: none !important;
}

.gb-service-card h3,
.gb-service-card p {
  text-align: center !important;
}

.gb-service-card__link {
  justify-content: center !important;
  width: 100%;
  max-width: 145px;
  min-height: 38px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(230, 0, 18, 0.18);
  border-radius: 999px;
  background: #fff5f5;
  color: #e60012 !important;
  gap: 0.45rem !important;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease !important;
}

.gb-service-card__link svg {
  width: 15px !important;
  height: 15px !important;
}

.gb-service-card:hover .gb-service-card__link {
  gap: 0.45rem !important;
  transform: translateY(-2px);
  border-color: #e60012;
  background: #e60012;
  color: #ffffff !important;
}

/* Footer content and icon polish */
footer h4 {
  position: relative;
  padding-bottom: 0.65rem;
}

footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: #e60012;
}

footer a {
  transition: color 180ms ease, transform 180ms ease, background-color 180ms ease, border-color 180ms ease !important;
}

footer a:hover {
  transform: translateX(2px);
}

footer a[aria-label] {
  border: 1px solid rgba(230, 0, 18, 0.14) !important;
  background: #fff5f5 !important;
  color: #e60012 !important;
  box-shadow: none !important;
}

footer a[aria-label]:hover {
  background: #e60012 !important;
  color: #ffffff !important;
  border-color: #e60012 !important;
  transform: translateY(-2px);
}

footer a[aria-label] svg {
  width: 1rem !important;
  height: 1rem !important;
}

footer a[href^="tel:"],
footer a[href^="mailto:"] {
  font-weight: 700;
}

footer a[aria-label="Admin Login"] {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

/* Mobile banner visibility and footer bottom cleanup */
html,
body {
  min-height: 100%;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body > footer:last-of-type,
footer:last-of-type {
  margin-bottom: 0 !important;
}

body > script:last-child {
  display: none;
}

@media (max-width: 640px) {
  #hero-section {
    min-height: 240px !important;
    height: 240px !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
  }

  #hero-section #hero-track,
  #hero-section .relative.w-full.h-full.shrink-0 {
    height: 100% !important;
  }

  #hero-section .relative.w-full.h-full.shrink-0 > img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  #hero-section .relative.w-full.h-full.shrink-0:nth-child(2) > img {
    object-position: right center !important;
  }

  #hero-section .absolute.inset-0 > .max-w-\[1600px\] {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  #hero-section .gb-hero-copy {
    max-width: 100% !important;
  }

  footer {
    padding-bottom: 0 !important;
  }
}

/* Reduce mobile banner height */
@media (max-width: 640px) {
  #hero-section {
    min-height: 240px !important;
    height: 240px !important;
  }
}

/* 4K and XXXL responsive scaling */
@media (min-width: 1920px) {
  .max-w-\[1600px\] {
    max-width: 1800px !important;
  }

  .max-w-7xl {
    max-width: 1500px !important;
  }

  #hero-section {
    min-height: 680px !important;
  }

  #hero-section .gb-hero-copy {
    max-width: 860px !important;
  }

  #hero-section .gb-hero-copy h2 {
    font-size: 4.25rem !important;
    line-height: 1.05 !important;
  }

  #hero-section .gb-hero-copy p,
  .gb-page-banner p {
    font-size: 1.125rem !important;
    line-height: 1.75 !important;
  }

  .gb-page-banner {
    min-height: 480px !important;
  }

  .gb-page-banner h1 {
    font-size: 3.75rem !important;
    line-height: 1.08 !important;
  }

  section[class*="py-16"] {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }

  .gb-services-card-grid {
    gap: 1.5rem !important;
  }
}

@media (min-width: 2560px) {
  .max-w-\[1600px\] {
    max-width: 2160px !important;
  }

  .max-w-7xl {
    max-width: 1720px !important;
  }

  .max-w-\[1600px\].px-6,
  .max-w-\[1600px\] > .px-6,
  #hero-section .absolute.inset-0 > .max-w-\[1600px\],
  .gb-page-banner > .relative {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  #hero-section {
    min-height: 760px !important;
  }

  #hero-section .gb-hero-copy {
    max-width: 980px !important;
  }

  #hero-section .gb-hero-copy h2 {
    font-size: 4.875rem !important;
  }

  #hero-section .gb-hero-copy p {
    font-size: 1.25rem !important;
    max-width: 820px !important;
  }

  .gb-page-banner {
    min-height: 560px !important;
  }

  .gb-page-banner h1 {
    font-size: 4.5rem !important;
  }

  .gb-page-banner p {
    max-width: 820px !important;
  }

  .gb-service-card,
  section form,
  footer {
    font-size: 1.0625rem;
  }

  footer .max-w-\[1600px\] {
    max-width: 2160px !important;
  }

  footer h4::after {
    left: 50% !important;
    transform: translateX(-50%);
  }
}

@media (min-width: 3440px) {
  .max-w-\[1600px\] {
    max-width: 2560px !important;
  }

  .max-w-7xl {
    max-width: 1900px !important;
  }

  .max-w-\[1600px\].px-6,
  #hero-section .absolute.inset-0 > .max-w-\[1600px\],
  .gb-page-banner > .relative {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  #hero-section {
    min-height: 860px !important;
  }

  #hero-section .gb-hero-copy h2 {
    font-size: 5.5rem !important;
  }

  #hero-section .gb-hero-copy p {
    font-size: 1.375rem !important;
  }

  .gb-page-banner {
    min-height: 640px !important;
  }

  .gb-page-banner h1 {
    font-size: 5rem !important;
  }

  section[class*="py-16"] {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
}
