@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap");

/* Site chrome — zip Navbar (topbar + sticky nav + mega + mobile). Prefix: gg- */

:root {
  --gg-navy: #274760;
  --gg-blue: #307bc4;
  --gg-grad: linear-gradient(134deg, #307bc4 0%, #274760 100%);
  --gg-ice: #d2eaef;
  --gg-text: rgba(39, 71, 96, 0.8);
  --gg-faint: rgba(39, 71, 96, 0.42);
  --gg-border: rgba(39, 71, 96, 0.09);
  --gg-shadow: rgba(48, 123, 196, 0.14);
  --gg-topbar-h: 40px;
  --gg-nav-h: 60px;
  --gg-stack-h: 60px;
}

@media (min-width: 1024px) {
  :root {
    --gg-nav-h: 72px;
    --gg-stack-h: 112px;
  }
}

.gg-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 1024px) {
  .gg-inner {
    padding: 0 2.5rem;
  }
}

/* ── Topbar (desktop only, in-flow) ── */
.gg-topbar {
  display: none;
  background: linear-gradient(90deg, #1a3550 0%, #274760 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

@media (min-width: 1024px) {
  .gg-topbar {
    display: block;
  }
}

.gg-topbar-inner {
  height: var(--gg-topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gg-topbar-left,
.gg-topbar-right {
  display: flex;
  align-items: center;
}

.gg-topbar-left {
  gap: 20px;
}

.gg-topbar-right {
  gap: 14px;
}

.gg-topbar-sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-block;
  flex-shrink: 0;
}

.gg-topbar-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 160ms ease;
}

.gg-topbar-link i {
  font-size: 10px;
}

.gg-topbar-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.gg-socials {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gg-social-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
  flex-shrink: 0;
  font-size: 11px;
}

.gg-social-icon:hover {
  color: #fff;
  background: #307bc4;
  border-color: #307bc4;
}

.gg-lang {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2px;
  gap: 2px;
}

.gg-lang a {
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  padding: 2px 9px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 180ms ease;
  background: transparent;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
  line-height: 1.4;
}

.gg-lang a.is-active {
  background: #307bc4;
  color: #fff;
  font-weight: 600;
}

.gg-lang--light {
  background: rgba(39, 71, 96, 0.06);
}

.gg-lang--light a {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  color: rgba(39, 71, 96, 0.42);
}

.gg-lang--light a.is-active {
  background: #274760;
  color: #fff;
}

/* ── Sticky nav + mega wrap ── */
.gg-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
}

.gg-nav {
  background-color: #fff;
  box-shadow: 0 1px 0 rgba(15, 39, 68, 0.08);
  transition: box-shadow 350ms ease, background-color 350ms ease;
}

.gg-nav.is-scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(15, 39, 68, 0.1), 0 1px 0 rgba(15, 39, 68, 0.05);
}

.gg-nav-inner {
  height: var(--gg-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gg-nav-logo {
  text-decoration: none;
  flex-shrink: 0;
}

.gg-nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

@media (min-width: 1024px) {
  .gg-nav-logo img {
    height: 54px;
  }
}

.gg-nav-links {
  display: none;
  align-items: center;
  height: 100%;
}

.gg-nav-cta {
  display: none;
  align-items: center;
  gap: 12px;
}

.gg-nav-mobile-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 1024px) {
  .gg-nav-links,
  .gg-nav-cta {
    display: flex;
  }
  .gg-nav-mobile-tools {
    display: none;
  }
}

.gg-nav-link {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1b3a6b;
  letter-spacing: 0.01em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 180ms ease;
  text-decoration: none;
  line-height: 1.4;
}

.gg-nav-link i {
  font-size: 12px;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: 1px;
}

.gg-nav-link.is-open i {
  transform: rotate(180deg);
}

.gg-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, #307bc4, #274760);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.gg-nav-link:hover {
  color: #307bc4;
}

.gg-nav-link:hover::after,
.gg-nav-link.is-current::after,
.gg-nav-link.is-open::after {
  transform: scaleX(1);
}

.gg-nav-link.is-current,
.gg-nav-link.is-open {
  color: #307bc4;
}

.gg-btn-ghost {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #274760;
  background: transparent;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(39, 71, 96, 0.09);
  transition: border-color 200ms ease, color 200ms ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.gg-btn-ghost:hover {
  border-color: #307bc4;
  color: #307bc4;
}

.gg-btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: var(--gg-grad);
  padding: 8px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(48, 123, 196, 0.14);
  transition: transform 200ms ease, box-shadow 200ms ease;
  text-decoration: none;
  white-space: nowrap;
}

.gg-btn-primary i {
  font-size: 12px;
}

.gg-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(48, 123, 196, 0.28);
  color: #fff;
}

.gg-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid rgba(39, 71, 96, 0.13);
  background: rgba(39, 71, 96, 0.04);
  cursor: pointer;
  color: #274760;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  flex-shrink: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.gg-burger i {
  font-size: 17px;
  line-height: 1;
}

.gg-burger:hover {
  background: rgba(39, 71, 96, 0.08);
  border-color: rgba(39, 71, 96, 0.22);
}

.gg-burger.is-open {
  background: #274760;
  border-color: #274760;
  color: #fff;
}

.gg-burger:focus {
  outline: none;
}

.gg-burger:focus-visible {
  outline: 2px solid #307bc4;
  outline-offset: 3px;
}

/* ── Mega menu ── */
.gg-mega {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 24px 64px var(--gg-shadow), 0 1px 0 var(--gg-border);
  overflow: hidden;
  clip-path: inset(0% 0% 100% 0%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 40;
}

.gg-mega.is-open {
  visibility: visible;
  pointer-events: auto;
}

.gg-mega-bar {
  height: 3px;
  background: var(--gg-grad);
}

.gg-mega-grid {
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  min-height: 360px;
}

@media (max-width: 1180px) {
  .gg-mega-grid {
    grid-template-columns: 210px 1fr 230px;
  }
}

.gg-mega-cats {
  background: rgba(39, 71, 96, 0.03);
  border-right: 1px solid var(--gg-border);
  padding: 32px 0;
  position: relative;
}

.gg-mega-kicker {
  font-family: "DM Mono", monospace;
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  color: var(--gg-blue);
  margin-bottom: 18px;
  padding-left: 24px;
  text-transform: uppercase;
  opacity: 0.7;
}

.gg-mega-indicator {
  position: absolute;
  left: 0;
  width: 3px;
  background: var(--gg-grad);
  border-radius: 0 3px 3px 0;
  top: 0;
  height: 0;
}

.gg-mega-cats ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gg-mega-cat {
  width: 100%;
  text-align: left;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 0.825rem;
  font-weight: 400;
  color: var(--gg-faint);
  background: transparent;
  transition: all 180ms ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gg-mega-cat.is-active {
  font-weight: 600;
  color: var(--gg-navy);
  background: #fff;
}

.gg-mega-cat-count {
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  color: rgba(39, 71, 96, 0.22);
  font-weight: 500;
  letter-spacing: 0.04em;
  min-width: 20px;
  text-align: right;
}

.gg-mega-cat.is-active .gg-mega-cat-count {
  color: var(--gg-blue);
}

.gg-mega-randevu-wrap {
  margin: 20px 24px 0;
  padding-top: 20px;
  border-top: 1px solid var(--gg-border);
}

.gg-btn-mega {
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: var(--gg-grad);
  box-shadow: 0 4px 16px rgba(48, 123, 196, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 180ms ease, transform 180ms ease;
  text-decoration: none;
}

.gg-btn-mega:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #fff;
}

.gg-mega-panels {
  position: relative;
  padding: 36px 40px;
}

.gg-mega-panel {
  display: none;
}

.gg-mega-panel.is-active {
  display: block;
}

.gg-mega-panel-head {
  margin-bottom: 28px;
}

.gg-mega-panel-head .gg-mega-kicker {
  padding-left: 0;
  margin-bottom: 8px;
}

.gg-mega-panel-head h3 {
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gg-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 6px;
}

.gg-mega-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.gg-mega-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.8125rem;
  color: #36424f;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 6px;
  width: 100%;
  text-align: left;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.gg-mega-item:hover {
  background: rgba(48, 123, 196, 0.07);
  color: #307bc4;
  transform: translateX(3px);
}

.gg-mega-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(39, 71, 96, 0.22);
  flex-shrink: 0;
  transition: background 160ms ease, transform 160ms ease;
}

.gg-mega-item:hover .dot {
  background: #307bc4;
  transform: scale(1.5);
}

.gg-mega-photos {
  position: relative;
  overflow: hidden;
  background: var(--gg-navy);
}

.gg-mega-photo {
  display: none;
  position: absolute;
  inset: 0;
}

.gg-mega-photo.is-active {
  display: block;
}

.gg-mega-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
}

.gg-mega-photo-veil {
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 65, 0.3);
}

.gg-mega-photo-copy {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, transparent 0%, rgba(15, 35, 60, 0.88) 52%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.gg-mega-photo-copy .gg-mega-kicker {
  padding-left: 0;
  color: var(--gg-ice);
  margin-bottom: 10px;
  opacity: 0.8;
}

.gg-mega-photo-copy p {
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 18px;
  max-width: 26ch;
}

.gg-btn-ice {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gg-navy);
  background: var(--gg-ice);
  padding: 9px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: opacity 180ms ease;
  text-decoration: none;
}

.gg-btn-ice:hover {
  opacity: 0.85;
  color: var(--gg-navy);
}

@media (max-width: 1023px) {
  .gg-mega {
    display: none !important;
  }
}

/* ── Mobile full-screen panel ── */
@keyframes gg-panel-slide-in {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.gg-mobile {
  display: none;
}

@media (max-width: 1023px) {
  .gg-mobile.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: #07111e;
    animation: gg-panel-slide-in 320ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
}

.gg-mobile-head {
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: 24px;
  padding-right: 24px;
  flex-shrink: 0;
}

.gg-mobile-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.gg-mobile-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.gg-mobile-close i {
  font-size: 16px;
}

.gg-mobile-rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-top: 4px;
}

.gg-mobile-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  -webkit-overflow-scrolling: touch;
}

.gg-mobile-link,
.gg-mobile-treat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 24px;
  font-family: "Figtree", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  text-decoration: none;
  text-align: left;
}

.gg-mobile-link i,
.gg-mobile-treat i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.22);
  transition: transform 260ms ease, color 180ms ease;
}

.gg-mobile-treat {
  transition: color 180ms ease, background 180ms ease;
}

.gg-mobile-treat.is-open {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.06);
}

.gg-mobile-treat.is-open i {
  color: #60a5fa;
  transform: rotate(180deg);
}

.gg-mobile-treat-panel {
  display: none;
  margin: 2px 16px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.gg-mobile-treat-panel.is-open {
  display: block;
}

.gg-mobile-cat {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gg-mobile-cat:last-child {
  border-bottom: none;
}

.gg-mobile-cat-label {
  font-family: "DM Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: #60a5fa;
  opacity: 0.7;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.gg-mobile-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gg-mobile-chip {
  padding: 5px 11px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease;
}

.gg-mobile-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.gg-mobile-logo {
  margin: 16px 16px 0;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gg-mobile-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.gg-mobile-foot {
  padding: 16px 24px;
  padding-bottom: max(env(safe-area-inset-bottom, 0px), 16px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.15);
}

.gg-mobile-ctas {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.gg-mobile-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 13px;
  border-radius: 12px;
  text-decoration: none;
}

.gg-mobile-appt {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: var(--gg-grad);
  padding: 13px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(48, 123, 196, 0.35);
}

.gg-mobile-foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gg-mobile-foot .gg-lang a {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  padding: 4px 14px;
}

.gg-mobile-socials {
  display: flex;
  gap: 6px;
}

.gg-mobile-socials a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
}

body.gg-nav-open {
  overflow: hidden;
}

body.gg-nav-open .geo-sticky-bar,
body.gg-nav-open .whatsapp-contact-btn,
body.gg-nav-open .cs_scrollup {
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Overlay-header kompensasyonu: yeni chrome akışta */
body.gg-has-header .creative-fullpage--slider,
body.gg-has-header .creative-fullpage--slider .slider-inner,
body.gg-has-header .creative-fullpage--slider .swiper-slide .slider-inner img {
  margin-top: 0 !important;
  height: calc(100vh - var(--gg-stack-h)) !important;
}

body.gg-has-header .tx-hero {
  --tx-header-offset: 0px;
}

body.gg-has-header .hk-hero {
  --hk-header-offset: 0px;
}

body.gg-has-header .cs_banner.cs_style_3,
body.gg-has-header .cs_banner.cs_style_5 {
  padding-top: 135px;
}

@media (max-width: 1199px) {
  body.gg-has-header .cs_banner.cs_style_3,
  body.gg-has-header .cs_banner.cs_style_5 {
    padding-top: 90px;
  }
}

@media (max-width: 991px) {
  body.gg-has-header .cs_banner.cs_style_3,
  body.gg-has-header .cs_banner.cs_style_5 {
    padding-top: 80px;
  }
}

body.gg-has-header .cs_height_140 {
  height: 40px;
}

body.tf-page .gg-nav-wrap {
  z-index: 1200;
}

body.tf-page.gg-has-header .tf-intro {
  padding-top: clamp(2.25rem, 5vw, 3.5rem);
}

@media (min-width: 1100px) {
  body.gg-has-header .mb-toc {
    top: 5.5rem;
    max-height: calc(100vh - 6.5rem);
  }
}

body.gg-has-header .tx-draft-banner {
  top: calc(var(--gg-stack-h) + 8px);
}

@media (prefers-reduced-motion: reduce) {
  .gg-nav,
  .gg-nav-link,
  .gg-nav-link::after,
  .gg-nav-link i,
  .gg-btn-primary,
  .gg-mega-item,
  .gg-mobile {
    transition: none !important;
    animation: none !important;
  }
}
