.gaf {
  --gaf-bg: #07090c;
  --gaf-surface: #0f1318;
  --gaf-gold: #c9a84c;
  --gaf-gold2: rgba(201, 168, 76, 0.18);
  --gaf-text: rgba(230, 225, 210, 0.85);
  --gaf-muted: rgba(180, 175, 160, 0.45);
  --gaf-border: rgba(255, 255, 255, 0.07);
  --gaf-green: #159a54;
}

.gaf {
  position: relative;
  background: var(--gaf-bg);
  overflow: hidden;
  font-family: "Barlow", sans-serif;
}

.gaf__bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(201, 168, 76, 0.015) 60px,
    rgba(201, 168, 76, 0.015) 61px
  );
  pointer-events: none;
}

.gaf__topline {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gaf-gold) 30%, var(--gaf-gold) 70%, transparent);
  opacity: 0.5;
}

.gaf__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.gaf__tagline-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gaf__tagline-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.25));
}

.gaf__tagline-line:last-child {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.25), transparent);
}

.gaf__tagline {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gaf-gold);
  text-transform: uppercase;
  white-space: nowrap;
}

.gaf__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.gaf__logo-link {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
}

.gaf__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.gaf__logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gaf__logo-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1;
}

.gaf__logo-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gaf-gold);
  text-transform: uppercase;
}

.gaf__desc {
  font-size: 13px;
  color: var(--gaf-muted);
  line-height: 1.65;
  margin: 0 0 20px;
}

.gaf__contact,
.gaf__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gaf__contact {
  margin-bottom: 20px;
}

.gaf__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.gaf__cta svg { width: 14px; height: 14px; flex-shrink: 0; }
.gaf__cta:hover { transform: translateY(-1px); filter: brightness(1.08); text-decoration: none; }

.gaf__cta--wa {
  background: linear-gradient(135deg, #2fbf6d, #159a54);
  color: #fff;
}

.gaf__cta--call {
  background: transparent;
  color: var(--gaf-text);
  border: 1px solid var(--gaf-border);
}

.gaf__cta--call:hover { border-color: rgba(201, 168, 76, 0.3); color: #fff; }

.gaf__social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--gaf-border);
  border-radius: 3px;
  color: var(--gaf-muted);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gaf__social-link svg { width: 15px; height: 15px; flex-shrink: 0; }
.gaf__social-link:hover { border-color: var(--gaf-gold); color: var(--gaf-gold); transform: translateY(-1px); text-decoration: none; }

.gaf__col-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gaf-gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.gaf__menu,
.gaf__menu ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.gaf__menu a,
.gaf__menu li a {
  display: block !important;
  padding: 7px 0 !important;
  color: var(--gaf-text) !important;
  text-decoration: none !important;
  font-family: "Barlow", sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  border-bottom: 1px solid transparent !important;
  transition: color 0.2s ease, padding-left 0.2s ease !important;
}

.gaf__menu a:hover,
.gaf__menu li a:hover {
  color: var(--gaf-gold) !important;
  padding-left: 6px !important;
  text-decoration: none !important;
}

.gaf__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0 20px;
  border-top: 1px solid var(--gaf-border);
}

.gaf__copy,
.gaf__bottom-links a {
  font-size: 12px;
  color: var(--gaf-muted);
}

.gaf__bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gaf__bottom-links a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.gaf__bottom-links a:hover { color: var(--gaf-gold); }

.gaf__bottom-dot {
  font-size: 7px;
  color: rgba(201, 168, 76, 0.35);
}

.ga-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: linear-gradient(180deg, rgba(11, 15, 12, 0.94), rgba(7, 10, 8, 0.99));
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  display: none;
  padding: 10px 6px 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ga-item {
  flex: 1 1 20%;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.ga-item--active,
.ga-item:hover { color: #c9a84c; }

.ga-svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ga-svg--main {
  fill: #fff;
  stroke: none;
  width: 22px;
  height: 22px;
}

.ga-txt {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ga-main {
  transform: translateY(-14px);
  background: linear-gradient(180deg, #2fbf6d, #159a54);
  border-radius: 16px;
  padding: 10px 0;
  margin: 0 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #fff !important;
  min-width: 56px;
}

.ga-main::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
}

.ga-badge {
  position: absolute;
  top: -2px;
  right: 10%;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: #b21e1e;
  border: 1.5px solid rgba(7, 10, 8, 0.8);
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 1;
}

.ga-floatcall {
  position: fixed;
  right: 14px;
  bottom: 86px;
  z-index: 99999;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 19, 24, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.22);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ga-floatcall:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: scale(1.08);
}

.ga-floatcall svg { width: 20px; height: 20px; }

@keyframes gaPulse {
  0%   { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(47, 191, 109, 0.5); }
  25%  { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 12px rgba(47, 191, 109, 0); }
  100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(47, 191, 109, 0); }
}

.ga-pulse { animation: gaPulse 7s ease-out infinite; }

@media (max-width: 768px) {
  .gaf { display: none !important; }
  .ga-sticky { display: flex; justify-content: space-around; }
  .ga-floatcall { display: flex; }
  body { padding-bottom: 76px; }
}

@media (max-width: 980px) {
  .gaf__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gaf__col--brand { grid-column: 1 / -1; }
  .gaf__inner { padding: 40px 20px 0; }
}

@media (min-width: 769px) {
  body { padding-bottom: 0; }
}

body.ga-light .gaf {
  --gaf-bg: #efe7d8;
  --gaf-surface: #fffdf9;
  --gaf-gold: #b88a1b;
  --gaf-gold2: rgba(184, 138, 27, 0.18);
  --gaf-text: rgba(31, 43, 58, 0.9);
  --gaf-muted: rgba(92, 102, 115, 0.82);
  --gaf-border: rgba(31, 43, 58, 0.12);
}

body.ga-light .gaf {
  color: var(--gaf-text);
  box-shadow: inset 0 1px 0 rgba(31, 43, 58, 0.06);
}

body.ga-light .gaf__bg {
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(184, 138, 27, 0.02) 60px,
    rgba(184, 138, 27, 0.02) 61px
  );
}

body.ga-light .gaf__logo-name,
body.ga-light .gaf__menu a,
body.ga-light .gaf__menu li a,
body.ga-light .gaf__copy,
body.ga-light .gaf__bottom-links a {
  color: var(--gaf-text) !important;
}

body.ga-light .gaf__menu a:hover,
body.ga-light .gaf__menu li a:hover,
body.ga-light .gaf__bottom-links a:hover,
body.ga-light .gaf__social-link:hover {
  color: var(--gaf-gold) !important;
}

body.ga-light .gaf__desc,
body.ga-light .gaf__social-link {
  color: var(--gaf-muted) !important;
}

body.ga-light .gaf__cta--call {
  background: rgba(255, 255, 255, 0.65);
  color: var(--gaf-text);
}

body.ga-light .gaf__cta--call:hover {
  color: var(--gaf-text);
  border-color: rgba(184, 138, 27, 0.32);
}

body.ga-light .ga-sticky {
  background: linear-gradient(180deg, rgba(246, 241, 232, 0.96), rgba(239, 231, 216, 0.99));
  border-top-color: rgba(31, 43, 58, 0.1);
}

body.ga-light .ga-item {
  color: rgba(31, 43, 58, 0.72);
}

body.ga-light .ga-item--active,
body.ga-light .ga-item:hover {
  color: #b88a1b;
}

body.ga-light .ga-main {
  box-shadow: 0 8px 24px rgba(31, 43, 58, 0.12);
}

body.ga-light .ga-badge {
  border-color: rgba(246, 241, 232, 0.92);
}

body.ga-light .ga-floatcall {
  background: rgba(255, 253, 249, 0.95);
  border-color: rgba(184, 138, 27, 0.2);
  box-shadow: 0 8px 24px rgba(31, 43, 58, 0.12);
}

body.ga-light .gaf {
  position: relative;
}

body.ga-light .gaf::before {
  content: "";
  position: absolute;
  top: -54px;
  left: 0;
  right: 0;
  height: 54px;
  background: linear-gradient(to bottom, rgba(239, 231, 216, 0), rgba(239, 231, 216, 0.9) 68%, rgba(239, 231, 216, 1));
  pointer-events: none;
}

body.ga-light .gaf__inner {
  padding-top: 40px;
}

body.ga-light .gaf__grid {
  gap: 40px;
}

body.ga-light .gaf__desc {
  max-width: 360px;
}
