﻿#fluid {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 2147483000;
  mix-blend-mode: normal;
  opacity: 0.82;
  filter: saturate(1.45) contrast(1.08);
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  #fluid {
    display: none;
  }
}

.gm-floating-contact {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 2147483001;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(260px, calc(100vw - 44px));
  font-family: Arial, sans-serif;
}

.gm-floating-contact__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 11px 14px 11px 11px;
  border: 1px solid rgba(255, 240, 0, 0.42);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.96), rgba(22, 22, 22, 0.94));
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(14px);
  transform: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gm-floating-contact__item:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  z-index: -1;
}

.gm-floating-contact__item--call:before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 240, 0, 0.95) 0, transparent 36%),
    radial-gradient(circle at 82% 84%, rgba(255, 255, 255, 0.55) 0, transparent 44%);
}

.gm-floating-contact__item--whatsapp:before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 240, 0, 0.88) 0, transparent 34%),
    radial-gradient(circle at 84% 86%, rgba(255, 255, 255, 0.48) 0, transparent 44%);
}

.gm-floating-contact__item:hover,
.gm-floating-contact__item:focus {
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(255, 240, 0, 0.78);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
}

.gm-floating-contact__icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff000;
  color: #000;
  box-shadow: 0 10px 24px rgba(255, 240, 0, 0.24);
  font-size: 20px;
}

.gm-floating-contact__item--whatsapp .gm-floating-contact__icon {
  background: #fff;
  color: #000;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.18);
}

.gm-floating-contact__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.16;
}

.gm-floating-contact__text strong {
  font-size: 14px;
  letter-spacing: 0.2px;
}

.gm-floating-contact__text small {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.74);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .gm-floating-contact {
    left: auto;
    right: 10px;
    bottom: 12px;
    width: auto;
    max-width: calc(100vw - 20px);
    align-items: flex-end;
    flex-direction: column;
    gap: 8px;
  }

  .gm-floating-contact__item {
    flex: none;
    justify-content: flex-start;
    width: 48px;
    max-width: calc(100vw - 20px);
    min-height: 48px;
    padding: 4px;
    border-radius: 14px;
    gap: 9px;
    overflow: hidden;
  }

  .gm-floating-contact__icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 18px;
  }

  .gm-floating-contact__text strong {
    font-size: 12px;
  }

  .gm-floating-contact__text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 220ms ease, opacity 160ms ease;
  }

  .gm-floating-contact__text small {
    display: none;
  }

  .gm-floating-contact__item:hover,
  .gm-floating-contact__item:focus,
  .gm-floating-contact__item:focus-visible {
    width: 158px;
    transform: translateY(-2px);
  }

  .gm-floating-contact__item:hover .gm-floating-contact__text,
  .gm-floating-contact__item:focus .gm-floating-contact__text,
  .gm-floating-contact__item:focus-visible .gm-floating-contact__text {
    max-width: 96px;
    opacity: 1;
  }
}

.gm-demo-designs {
  position: relative;
  padding: 68px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 240, 0, 0.18), transparent 30%),
    linear-gradient(135deg, #000 0%, #111 58%, #242200 100%);
  color: #fff;
}

.gm-demo-designs .container {
  position: relative;
  z-index: 1;
  width: min(1170px, calc(100% - 32px));
  max-width: 1170px;
  margin: 0 auto;
  box-sizing: border-box;
}

.gm-demo-designs h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.gm-demo-designs .subTitle {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

.gm-demo-designs .subTitle:before,
.gm-demo-designs .subTitle:after {
  content: "";
  position: relative;
  top: -4px;
  display: inline-block;
  width: 75px;
  height: 1px;
  background: #fff000;
}

.gm-demo-designs .subTitle:before {
  margin-right: 20px;
}

.gm-demo-designs .subTitle:after {
  margin-left: 20px;
}

.gm-demo-designs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.gm-demo-designs__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1fr);
  min-height: 245px;
  overflow: hidden;
  border: 1px solid rgba(255, 240, 0, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.30);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.gm-demo-designs__card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 240, 0, 0.78);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.42);
}

.gm-demo-designs__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px;
  background:
    radial-gradient(circle at 26% 22%, rgba(255, 240, 0, 0.72), transparent 32%),
    linear-gradient(135deg, #fff000 0%, #fff 100%);
  color: #000;
}

.gm-demo-designs__visual:after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  pointer-events: none;
}

.gm-demo-designs__visual span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #000;
  color: #fff000;
  font-size: 12px;
  font-weight: 900;
}

.gm-demo-designs__visual strong {
  position: relative;
  z-index: 1;
  font-size: 24px;
  line-height: 1.18;
}

.gm-demo-designs__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
}

.gm-demo-designs__content h3 {
  margin: 0;
  color: #fff;
  font-size: 23px;
  line-height: 1.25;
}

.gm-demo-designs__content p {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.gm-demo-designs__content a {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: #fff000;
  color: #000;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease;
}

.gm-demo-designs__content a:hover,
.gm-demo-designs__content a:focus {
  background: #fff;
  color: #000;
  text-decoration: none;
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .gm-demo-designs__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gm-demo-designs {
    padding: 46px 0;
  }

  .gm-demo-designs .container {
    width: min(100% - 24px, 1170px);
  }

  .gm-demo-designs h2 {
    font-size: 24px;
  }

  .gm-demo-designs .subTitle:before,
  .gm-demo-designs .subTitle:after {
    width: 42px;
  }

  .gm-demo-designs__card {
    grid-template-columns: 1fr;
  }

  .gm-demo-designs__visual {
    min-height: 170px;
  }

  .gm-demo-designs__content {
    padding: 22px;
  }
}

@media (max-width: 360px) {
  .gm-floating-contact {
    right: 10px;
    gap: 6px;
  }

  .gm-floating-contact__item {
    width: 44px;
    min-height: 44px;
    padding: 4px;
  }

  .gm-floating-contact__icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .gm-floating-contact__text strong {
    font-size: 11px;
  }

  .gm-floating-contact__item:hover,
  .gm-floating-contact__item:focus,
  .gm-floating-contact__item:focus-visible {
    width: 148px;
  }
}

.gm-district-links {
  position: relative;
  padding: 58px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #000 0%, #111 58%, #242200 100%);
  color: #fff;
}

.gm-district-links .container,
.gm-seo-hero .container,
.gm-seo-page .container,
.gm-seo-cta .container {
  position: relative;
  z-index: 1;
  width: min(1170px, calc(100% - 32px));
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.gm-district-links:before,
.gm-district-links:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.22;
}

.gm-district-links:before {
  top: -120px;
  left: 8%;
  background: #fff000;
  animation: gmSeoFloat 8s ease-in-out infinite;
}

.gm-district-links:after {
  right: 6%;
  bottom: -140px;
  background: #fff;
  animation: gmSeoFloat 10s ease-in-out infinite reverse;
}

.gm-district-links__head {
  max-width: 760px;
  margin-bottom: 28px;
}

.gm-district-links__head span,
.gm-seo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #fff000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gm-district-links__head h2,
.gm-seo-hero h1,
.gm-seo-card h2,
.gm-seo-cta h2 {
  margin: 0;
  color: #fff;
  line-height: 1.18;
}

.gm-district-links__head h2 {
  font-size: 30px;
}

.gm-district-links__head p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.gm-district-links__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gm-district-links__grid a {
  position: relative;
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.gm-district-links__grid a:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 240, 0, 0.18), rgba(255, 255, 255, 0.10));
  opacity: 0;
  transition: opacity 220ms ease;
}

.gm-district-links__grid a:hover,
.gm-district-links__grid a:focus {
  color: #fff;
  border-color: rgba(255, 240, 0, 0.68);
  background: rgba(255, 255, 255, 0.09);
  text-decoration: none;
  animation: gmDistrictHoverDance 520ms ease-in-out infinite;
}

.gm-district-links__grid a:hover:before,
.gm-district-links__grid a:focus:before {
  opacity: 1;
}

.gm-seo-hero {
  position: relative;
  padding: 92px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 240, 0, 0.24), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #000 0%, #111 58%, #242200 100%);
  color: #fff;
}

.gm-seo-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.gm-seo-hero h1 {
  max-width: 860px;
  font-size: 44px;
}

.gm-seo-hero p {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.8;
}

.gm-seo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gm-seo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.gm-seo-btn:hover,
.gm-seo-btn:focus {
  text-decoration: none;
  transform: translateY(-2px);
}

.gm-seo-btn--primary {
  background: #fff000;
  color: #000;
  box-shadow: 0 14px 32px rgba(255, 240, 0, 0.26);
}

.gm-seo-btn--primary:hover,
.gm-seo-btn--primary:focus {
  color: #000;
}

.gm-seo-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.gm-seo-btn--ghost:hover,
.gm-seo-btn--ghost:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.gm-seo-hero__panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 240, 0, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.gm-seo-hero__panel strong {
  color: #fff;
  font-size: 18px;
}

.gm-seo-hero__panel span {
  padding: 11px 12px;
  border-radius: 8px;
  background: rgba(255, 240, 0, 0.10);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.gm-seo-page {
  padding: 62px 0;
  background: #f6f6f0;
}

.gm-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gm-seo-card {
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.gm-seo-card--wide {
  grid-column: 1 / -1;
}

.gm-seo-card h2 {
  color: #000;
  font-size: 23px;
}

.gm-seo-card p,
.gm-seo-card li {
  color: #333;
  font-size: 15px;
  line-height: 1.75;
}

.gm-seo-card p {
  margin: 14px 0 0;
}

.gm-seo-card ul,
.gm-seo-steps {
  margin: 16px 0 0;
  padding-left: 20px;
}

.gm-seo-card li {
  margin-bottom: 8px;
}

.gm-seo-steps li::marker {
  color: #fff000;
  font-weight: 800;
}

.gm-seo-cta {
  padding: 54px 0;
  background: linear-gradient(135deg, #000, #151515 58%, #252300);
  color: #fff;
  text-align: center;
}

.gm-seo-cta h2 {
  font-size: 30px;
}

.gm-seo-cta p {
  max-width: 740px;
  margin: 14px auto 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

#up-footer {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 240, 0, 0.22), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(255, 255, 255, 0.10), transparent 30%),
    linear-gradient(135deg, #000 0%, #141414 58%, #252300 100%) !important;
}

#up-footer .title {
  color: #fff !important;
}

#up-footer .box {
  border: 1px solid rgba(255, 240, 0, 0.34) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.20);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

#up-footer .box:hover,
#up-footer .box:focus {
  border-color: rgba(255, 240, 0, 0.78) !important;
  background: rgba(255, 255, 255, 0.11) !important;
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-4px);
}

@keyframes gmSeoFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, 24px, 0) scale(1.08);
  }
}

@keyframes gmDistrictHoverDance {
  0% {
    transform: translate3d(0, -2px, 0) rotate(0deg);
  }

  25% {
    transform: translate3d(4px, -6px, 0) rotate(0.7deg);
  }

  50% {
    transform: translate3d(-3px, -4px, 0) rotate(-0.7deg);
  }

  75% {
    transform: translate3d(3px, -7px, 0) rotate(0.45deg);
  }

  100% {
    transform: translate3d(0, -4px, 0) rotate(0deg);
  }
}

@media (max-width: 991px) {
  .gm-district-links__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gm-seo-hero .container {
    grid-template-columns: 1fr;
  }

  .gm-seo-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .gm-district-links,
  .gm-seo-page,
  .gm-seo-cta {
    padding: 42px 0;
  }

  .gm-district-links .container,
  .gm-seo-hero .container,
  .gm-seo-page .container,
  .gm-seo-cta .container {
    width: min(100% - 24px, 1170px);
  }

  .gm-district-links__head h2,
  .gm-seo-cta h2 {
    font-size: 24px;
  }

  .gm-district-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .gm-district-links__grid a {
    padding: 10px;
    font-size: 12px;
  }

  .gm-seo-hero {
    padding: 70px 0 46px;
  }

  .gm-seo-hero h1 {
    font-size: 30px;
  }

  .gm-seo-hero p {
    font-size: 14px;
  }

  .gm-seo-hero__actions {
    flex-direction: column;
  }

  .gm-seo-btn {
    width: 100%;
  }

  .gm-seo-grid {
    grid-template-columns: 1fr;
  }

  .gm-seo-card {
    padding: 20px;
  }
}

@media (max-width: 380px) {
  .gm-district-links__grid {
    grid-template-columns: 1fr;
  }
}

.gm-service-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 76px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 240, 0, 0.24), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, #000 0%, #111 58%, #242200 100%);
  color: #fff;
}

.gm-service-hero .container,
.gm-service-intro .container,
.gm-service-cards .container,
.gm-service-process .container,
.gm-service-feature .container,
.gm-service-final-cta .container {
  width: min(1170px, calc(100% - 32px));
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.gm-service-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 44px;
  align-items: center;
}

.gm-service-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: #fff000;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gm-service-hero h1 {
  max-width: 880px;
  margin: 0;
  color: #fff;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: 0;
}

.gm-service-hero p {
  max-width: 790px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

.gm-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.gm-service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.gm-service-btn:hover,
.gm-service-btn:focus {
  text-decoration: none;
  transform: translateY(-3px);
}

.gm-service-btn--primary {
  background: #fff000;
  color: #000;
  box-shadow: 0 16px 34px rgba(255, 240, 0, 0.24);
}

.gm-service-btn--primary:hover,
.gm-service-btn--primary:focus {
  background: #fff;
  color: #000;
}

.gm-service-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.gm-service-btn--ghost:hover,
.gm-service-btn--ghost:focus {
  border-color: #fff000;
  color: #fff000;
}

.gm-service-hero__visual {
  position: relative;
  min-height: 330px;
}

.gm-service-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.gm-service-orbit--one {
  width: 220px;
  height: 220px;
  right: 28px;
  top: 12px;
  border: 1px solid rgba(255, 240, 0, 0.38);
  animation: gmServiceSpin 11s linear infinite;
}

.gm-service-orbit--two {
  width: 150px;
  height: 150px;
  right: 86px;
  bottom: 18px;
  background: rgba(255, 240, 0, 0.12);
  filter: blur(2px);
  animation: gmServiceFloat 5s ease-in-out infinite;
}

.gm-service-preview {
  position: absolute;
  right: 0;
  top: 54px;
  width: min(320px, 100%);
  padding: 26px;
  border: 1px solid rgba(255, 240, 0, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.76);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  animation: gmServiceCardIn 700ms ease both;
}

.gm-service-preview > span {
  display: block;
  width: 54px;
  height: 8px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: #fff000;
}

.gm-service-preview strong,
.gm-service-preview small {
  display: block;
}

.gm-service-preview strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
}

.gm-service-preview small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.gm-service-preview__bars {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.gm-service-preview__bars i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.gm-service-preview__bars i:nth-child(1) {
  width: 88%;
}

.gm-service-preview__bars i:nth-child(2) {
  width: 68%;
  background: rgba(255, 240, 0, 0.52);
}

.gm-service-preview__bars i:nth-child(3) {
  width: 78%;
}

.gm-service-intro,
.gm-service-process {
  padding: 66px 0;
  background: #fff;
}

.gm-service-intro .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.gm-service-intro__text span,
.gm-service-section-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: inset 0 -8px 0 rgba(255, 240, 0, 0.62);
}

.gm-service-intro h2,
.gm-service-section-head h2,
.gm-service-feature h2,
.gm-service-final-cta h2 {
  margin: 0;
  color: #000;
  font-size: 34px;
  line-height: 1.22;
}

.gm-service-intro p,
.gm-service-feature p,
.gm-service-final-cta p {
  margin: 0;
  color: #333;
  font-size: 17px;
  line-height: 1.85;
}

.gm-service-cards {
  padding: 66px 0;
  background: #f6f6f0;
}

.gm-service-cards .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gm-service-card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.gm-service-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 240, 0, 0.30), transparent 42%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.gm-service-card:hover,
.gm-service-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 240, 0, 0.9);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
}

.gm-service-card:hover:before,
.gm-service-card:focus-within:before {
  opacity: 1;
}

.gm-service-card i {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #fff000;
  color: #000;
  font-size: 20px;
}

.gm-service-card h3,
.gm-service-step h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #000;
  font-size: 21px;
  line-height: 1.25;
}

.gm-service-card p,
.gm-service-step p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #3a3a3a;
  font-size: 15px;
  line-height: 1.75;
}

.gm-service-section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.gm-service-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gm-service-step {
  padding: 24px;
  border-left: 4px solid #fff000;
  border-radius: 8px;
  background: #f8f8f8;
  transition: transform 220ms ease, background 220ms ease;
}

.gm-service-step:hover {
  background: #fffbe0;
  transform: translateY(-5px);
}

.gm-service-step strong {
  display: inline-flex;
  margin-bottom: 14px;
  color: #000;
  font-size: 26px;
  font-weight: 900;
}

.gm-service-feature {
  padding: 72px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 240, 0, 0.22), transparent 30%),
    linear-gradient(135deg, #000, #121212 58%, #252300);
  color: #fff;
}

.gm-service-feature .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 34px;
  align-items: start;
}

.gm-service-feature h2 {
  color: #fff;
}

.gm-service-feature p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
}

.gm-service-feature ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gm-service-feature li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(255, 240, 0, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.55;
}

.gm-service-feature li i {
  margin-top: 3px;
  color: #fff000;
}

.gm-service-final-cta {
  padding: 62px 0;
  background: #fff000;
  text-align: center;
}

.gm-service-final-cta h2 {
  max-width: 860px;
  margin: 0 auto;
}

.gm-service-final-cta p {
  max-width: 720px;
  margin: 14px auto 24px;
}

.gm-service-final-cta .gm-service-btn--primary {
  background: #000;
  color: #fff000;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.gm-service-final-cta .gm-service-btn--primary:hover,
.gm-service-final-cta .gm-service-btn--primary:focus {
  background: #fff;
  color: #000;
}

@keyframes gmServiceSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes gmServiceFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-14px, 20px, 0);
  }
}

@keyframes gmServiceCardIn {
  from {
    opacity: 0;
    transform: translate3d(18px, 18px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 991px) {
  .gm-service-hero .container,
  .gm-service-intro .container,
  .gm-service-feature .container {
    grid-template-columns: 1fr;
  }

  .gm-service-cards .container,
  .gm-service-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gm-service-hero h1 {
    font-size: 38px;
  }

  .gm-service-hero__visual {
    min-height: 260px;
  }

  .gm-service-preview {
    left: 0;
    right: auto;
  }
}

@media (max-width: 640px) {
  .gm-service-hero,
  .gm-service-intro,
  .gm-service-cards,
  .gm-service-process,
  .gm-service-feature,
  .gm-service-final-cta {
    padding: 46px 0;
  }

  .gm-service-hero .container,
  .gm-service-intro .container,
  .gm-service-cards .container,
  .gm-service-process .container,
  .gm-service-feature .container,
  .gm-service-final-cta .container {
    width: min(100% - 24px, 1170px);
  }

  .gm-service-hero h1 {
    font-size: 30px;
  }

  .gm-service-hero p,
  .gm-service-intro p,
  .gm-service-feature p,
  .gm-service-final-cta p {
    font-size: 15px;
  }

  .gm-service-intro h2,
  .gm-service-section-head h2,
  .gm-service-feature h2,
  .gm-service-final-cta h2 {
    font-size: 25px;
  }

  .gm-service-actions {
    flex-direction: column;
  }

  .gm-service-btn {
    width: 100%;
  }

  .gm-service-cards .container,
  .gm-service-timeline {
    grid-template-columns: 1fr;
  }

  .gm-service-card {
    min-height: auto;
  }

  .gm-service-hero__visual {
    min-height: 230px;
  }

  .gm-service-preview {
    width: 100%;
    top: 20px;
  }
}

section#hizmetler .container .row .col-3:hover .min-border {
  background: #000;
}

section#hizmetler .container .row .col-3:hover .min-border .hizmetAd:after,
section#hizmetler .container .row .col-3:hover .min-border .hizmetText {
  color: #fff000;
}

section#hizmetler .container .row .col-3 .min-border .image picture,
section#hizmetler .container .row .col-3 .min-border .image img {
  display: block;
}

section#hizmetler .container .row .col-3 .min-border .image .img {
  width: 80px;
  height: 81px;
  object-fit: cover;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 640px) {
  section#hizmetler .container {
    width: min(100% - 24px, 1170px);
  }

  section#hizmetler .container .row .col-3 {
    width: 238px;
    height: 238px;
    padding: 16px;
    border-width: 8px;
  }

  section#hizmetler .container .row .col-3 .min-border .image {
    min-height: 86px;
    align-items: center;
  }

  section#hizmetler .container .row .col-3 .min-border .image .img,
  section#hizmetler .container .row .col-3 .min-border .image img.owl-lazy {
    display: block !important;
    width: 82px !important;
    height: 82px !important;
    object-fit: cover;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

.gm-footer-trust p {
  margin-bottom: 16px;
}

footer#footer .container .row .gm-footer-trust {
  flex: 0 0 30%;
  max-width: 30%;
}

.gm-footer-trust__items {
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
}

.gm-footer-trust__items span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #242424;
  font-size: 14px;
  line-height: 1.45;
}

.gm-footer-trust__items i {
  color: #000;
}

.gm-footer-trust__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #000;
  border-radius: 8px;
  background: #fff000;
  color: #000;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.gm-footer-trust__cta:hover,
.gm-footer-trust__cta:focus {
  background: #000;
  color: #fff000;
  text-decoration: none;
  transform: translateY(-2px);
}

@media screen and (max-width: 769px) {
  footer#footer .container .row .footer-about,
  footer#footer .container .row .quick-menu,
  footer#footer .container .row .gm-footer-trust {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 600px) {
  footer#footer .container .row .footer-about,
  footer#footer .container .row .quick-menu,
  footer#footer .container .row .gm-footer-trust {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
}

.gm-legal-hero {
  padding: 86px 0 62px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 240, 0, 0.24), transparent 30%),
    linear-gradient(135deg, #000 0%, #111 58%, #242200 100%);
  color: #fff;
}

.gm-legal-hero .container,
.gm-legal-page .container {
  width: min(980px, calc(100% - 32px));
  max-width: 980px;
  margin: 0 auto;
  box-sizing: border-box;
}

.gm-legal-hero span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #fff000;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gm-legal-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.16;
}

.gm-legal-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.gm-legal-page {
  padding: 58px 0;
  background: #f6f6f0;
}

.gm-legal-page article {
  padding: 34px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.gm-legal-page h2 {
  margin: 28px 0 10px;
  color: #000;
  font-size: 24px;
  line-height: 1.25;
}

.gm-legal-page h2:first-child {
  margin-top: 0;
}

.gm-legal-page p {
  margin: 0 0 14px;
  color: #333;
  font-size: 16px;
  line-height: 1.85;
}

.gm-legal-page a {
  color: #000;
  font-weight: 800;
  text-decoration-color: #fff000;
  text-decoration-thickness: 3px;
}

.gm-faq-page h2 {
  padding-left: 16px;
  border-left: 4px solid #fff000;
}

@media (max-width: 640px) {
  .gm-legal-hero {
    padding: 56px 0 42px;
  }

  .gm-legal-hero .container,
  .gm-legal-page .container {
    width: min(100% - 24px, 980px);
  }

  .gm-legal-hero h1 {
    font-size: 30px;
  }

  .gm-legal-hero p,
  .gm-legal-page p {
    font-size: 15px;
  }

  .gm-legal-page {
    padding: 40px 0;
  }

  .gm-legal-page article {
    padding: 22px;
  }

  .gm-legal-page h2 {
    font-size: 21px;
  }
}

.gm-contact-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 68px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 240, 0, 0.24), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, #000 0%, #111 58%, #242200 100%);
  color: #fff;
}

.gm-contact-hero .container,
.gm-contact-page .container {
  width: min(1170px, calc(100% - 32px));
  max-width: 1170px;
  margin: 0 auto;
  box-sizing: border-box;
}

.gm-contact-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 36px;
  align-items: center;
}

.gm-contact-hero__content span,
.gm-contact-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: #fff000;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gm-contact-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: 44px;
  line-height: 1.14;
}

.gm-contact-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.8;
}

.gm-contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gm-contact-hero__actions a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 240, 0, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease;
}

.gm-contact-hero__actions a:hover,
.gm-contact-hero__actions a:focus {
  border-color: #fff000;
  color: #fff000;
  text-decoration: none;
  transform: translateY(-3px);
}

.gm-contact-hero__card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 240, 0, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.gm-contact-hero__card:before {
  content: "";
  position: absolute;
  right: -60px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 240, 0, 0.22);
}

.gm-contact-hero__card strong,
.gm-contact-hero__card span,
.gm-contact-hero__card small {
  position: relative;
  z-index: 1;
  display: block;
}

.gm-contact-hero__card strong {
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}

.gm-contact-hero__card span {
  margin-top: 10px;
  color: #fff000;
  font-size: 15px;
  font-weight: 800;
}

.gm-contact-hero__card small {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.gm-contact-page {
  padding: 64px 0;
  background: #f6f6f0;
}

.gm-contact-info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.gm-contact-info article {
  display: flex;
  gap: 14px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

.gm-contact-info article > i {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff000;
  color: #000;
  font-size: 18px;
}

.gm-contact-info h2 {
  margin: 0;
  color: #000;
  font-size: 18px;
}

.gm-contact-info p {
  margin: 8px 0 0;
  color: #333;
  font-size: 14px;
  line-height: 1.65;
}

.gm-contact-info a {
  color: #000;
  font-weight: 800;
  text-decoration-color: #fff000;
  text-decoration-thickness: 3px;
}

.gm-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.gm-contact-form-card,
.gm-contact-side__box,
.gm-contact-map {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.gm-contact-form-card {
  padding: 30px;
}

.gm-contact-form-card h2,
.gm-contact-side__box h2 {
  margin: 0;
  color: #000;
  font-size: 28px;
  line-height: 1.2;
}

.gm-contact-form-card > p {
  margin: 12px 0 24px;
  color: #444;
  font-size: 15px;
  line-height: 1.75;
}

.gm-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gm-contact-form .form-group {
  margin-bottom: 14px;
}

.gm-contact-form label {
  display: block;
  margin-bottom: 7px;
  color: #000;
  font-size: 13px;
  font-weight: 900;
}

.gm-contact-form input,
.gm-contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  background: #fafafa;
  color: #000;
  font-size: 15px;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.gm-contact-form input {
  height: 48px;
  padding: 0 14px;
}

.gm-contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.gm-contact-form input:focus,
.gm-contact-form textarea:focus {
  border-color: #fff000;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 240, 0, 0.18);
}

.gm-contact-recaptcha {
  overflow-x: auto;
}

.gm-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid #000;
  border-radius: 8px;
  background: #fff000;
  color: #000;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.gm-contact-submit:hover,
.gm-contact-submit:focus {
  background: #000;
  color: #fff000;
  transform: translateY(-2px);
}

.gm-contact-side {
  display: grid;
  gap: 18px;
}

.gm-contact-side__box {
  padding: 26px;
}

.gm-contact-side__box ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.gm-contact-side__box li {
  display: flex;
  gap: 10px;
  color: #333;
  font-size: 15px;
  line-height: 1.55;
}

.gm-contact-side__box li i {
  margin-top: 3px;
  color: #000;
}

.gm-contact-map {
  overflow: hidden;
}

.gm-contact-map iframe {
  display: block;
  width: 100%;
  min-height: 330px;
  border: 0;
}

@media (max-width: 991px) {
  .gm-contact-hero .container,
  .gm-contact-layout {
    grid-template-columns: 1fr;
  }

  .gm-contact-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gm-contact-hero,
  .gm-contact-page {
    padding: 46px 0;
  }

  .gm-contact-hero .container,
  .gm-contact-page .container {
    width: min(100% - 24px, 1170px);
  }

  .gm-contact-hero h1 {
    font-size: 30px;
  }

  .gm-contact-hero p {
    font-size: 15px;
  }

  .gm-contact-hero__actions,
  .gm-contact-form__grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .gm-contact-hero__actions a,
  .gm-contact-submit {
    width: 100%;
    box-sizing: border-box;
  }

  .gm-contact-info {
    grid-template-columns: 1fr;
  }

  .gm-contact-form-card,
  .gm-contact-side__box {
    padding: 22px;
  }

  .gm-contact-form-card h2,
  .gm-contact-side__box h2 {
    font-size: 24px;
  }
}
