/* ============================================================
   GG GO — GLOBAL STYLESHEET
   Zifiri Siyah · Elektrik Mavisi · Yarış Kırmızısı
   ============================================================ */

/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,400&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --black:      #000000;
  --dark:       #080808;
  --dark2:      #0d0d0d;
  --red:        #FF1A1A;
  --red-dim:    rgba(255,26,26,0.15);
  --blue:       #00A8FF;
  --blue-dim:   rgba(0,168,255,0.15);
  --white:      #ffffff;
  --grey:       #666;
  --grey-light: #aaa;
  --font-syn:   'Syncopate', sans-serif;
  --font-mon:   'Montserrat', sans-serif;
  --font-raj:   'Rajdhani', sans-serif;
  --nav-h:      72px;
  --total-header-h: var(--nav-h);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mon);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ===== SELECTION ===== */
::selection { background: var(--red); color: #fff; }

/* ===== UTILITIES ===== */
.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border-width:0; }
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.text-grey { color: var(--grey-light); }


/* ===== HEADER / NAVBAR ===== */
#main-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, transparent 100%);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}
#main-header.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo-gg { color: var(--white); }
.logo-go { color: var(--red); position: relative; }
.logo-go::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--red); box-shadow: 0 0 8px var(--red); border-radius: 1px; }
/* Image logo */
.logo-img { height: 44px; width: auto; object-fit: contain; display: block; filter: drop-shadow(0 0 8px rgba(255,26,26,0.3)); transition: filter 0.3s; }
.logo:hover .logo-img { filter: drop-shadow(0 0 14px rgba(255,26,26,0.55)); }
.footer-logo-img { height: 40px; width: auto; object-fit: contain; display: block; margin-bottom: 16px; filter: drop-shadow(0 0 8px rgba(255,26,26,0.3)); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-raj);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  position: relative;
  transition: color var(--transition);
  text-transform: uppercase;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  z-index: 10;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--total-header-h);
  left: 0; right: 0;
  background: rgba(0,0,0,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 24px 32px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 16px; padding: 8px 0; }
.mobile-nav {
  overflow-y: auto;
  max-height: calc(100dvh - var(--total-header-h));
  -webkit-overflow-scrolling: touch;
}

/* ===== HERO SHARED ===== */
.hero-spacer {
  height: var(--total-header-h);
  display: block;
}

/* ===== SECTION COMMON ===== */
.section-tag {
  font-family: var(--font-syn);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
}

.section-h2 {
  font-family: var(--font-syn);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.section-lead {
  font-family: var(--font-raj);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.8;
  color: var(--grey-light);
}

/* ===== BUTTON STYLES ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-syn);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--red);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(255,26,26,0.5), 0 8px 24px rgba(255,26,26,0.3);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-syn);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 20px rgba(0,168,255,0.2);
}

/* ===== GLASSMORPHISM CARD ===== */
.glass-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  transition: all var(--transition);
}
.glass-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,26,26,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(255,26,26,0.08);
  transform: translateY(-6px);
}

/* ===== DIVIDER NEON ===== */
.neon-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--blue));
  box-shadow: 0 0 12px var(--red);
  border-radius: 1px;
  margin: 24px 0;
}

/* ===== ANIMATED BACKGROUND GRID ===== */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
.noise-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ===== GLOW UTILITIES ===== */
.glow-red {
  box-shadow: 0 0 40px rgba(255,26,26,0.25), 0 0 80px rgba(255,26,26,0.1);
}
.glow-blue {
  box-shadow: 0 0 40px rgba(0,168,255,0.25), 0 0 80px rgba(0,168,255,0.1);
}
.text-glow-red { text-shadow: 0 0 20px rgba(255,26,26,0.7), 0 0 40px rgba(255,26,26,0.4); }
.text-glow-blue { text-shadow: 0 0 20px rgba(0,168,255,0.7), 0 0 40px rgba(0,168,255,0.4); }

/* ===== FOOTER ===== */
#main-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-logo-wrap { margin-bottom: 20px; }
.footer-logo {
  font-family: var(--font-syn);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo .f-gg { color: #fff; }
.footer-logo .f-go { color: var(--red); position: relative; }
.footer-tagline {
  font-family: var(--font-raj);
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey);
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-light);
  transition: all var(--transition);
}
.footer-social-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 16px rgba(0,168,255,0.3);
  transform: translateY(-3px);
}
.footer-social-link svg { width: 16px; height: 16px; }

.footer-col-title {
  font-family: var(--font-syn);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-family: var(--font-raj);
  font-size: 15px;
  color: var(--grey);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-link::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width var(--transition);
}
.footer-link:hover { color: var(--white); }
.footer-link:hover::before { width: 12px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-contact-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,26,26,0.08);
  border: 1px solid rgba(255,26,26,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon svg { width: 14px; height: 14px; color: var(--red); }
.footer-contact-label {
  font-family: var(--font-syn);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--grey);
  display: block;
  margin-bottom: 4px;
}
.footer-contact-val {
  font-family: var(--font-raj);
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-light);
}
.footer-contact-val:hover { color: var(--blue); }

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 48px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy {
  font-family: var(--font-raj);
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}
.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-syn);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.2);
}

/* ===== SCROLL REVEAL CLASSES ===== */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal.visible { opacity: 1; transform: translateY(0); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left { opacity: 0; transform: translateX(-60px); }
.reveal-left.visible { opacity: 1; transform: translateX(0); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(60px); }
.reveal-right.visible { opacity: 1; transform: translateX(0); transition: opacity 0.8s ease, transform 0.8s ease; }

/* ===== FLOATING PARTICLES BG ===== */
.particles-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0;
  animation: float-particle 8s infinite linear;
}
@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100%) scale(0); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-100%) scale(1.5); }
}

/* ===== PAGE TRANSITION ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.page-loader.done { opacity: 0; }
.loader-logo {
  font-family: var(--font-syn);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  animation: loader-pulse 0.8s ease-in-out;
}
.loader-logo .ll-gg { color: #fff; }
.loader-logo .ll-go { color: var(--red); text-shadow: 0 0 20px var(--red); }
@keyframes loader-pulse {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

/* ===== CURSOR GLOW (desktop) ===== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,26,26,0.04) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: left 0.15s ease, top 0.15s ease;
}

/* ===== ANIMATED COUNTER ===== */
.counter-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.counter-num {
  font-family: var(--font-syn);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter-unit {
  font-family: var(--font-syn);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--red);
}
.counter-label {
  font-family: var(--font-raj);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--grey);
  text-align: center;
  margin-top: 4px;
}

/* ===== HOTSPOT (GG GO Serisi) ===== */
.hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 20;
}
.hotspot-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid #fff;
  box-shadow: 0 0 16px var(--blue);
  position: absolute;
  top: 4px; left: 4px;
  animation: hotspot-pulse 2s infinite;
}
@keyframes hotspot-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,168,255,0.6); }
  50% { box-shadow: 0 0 0 12px rgba(0,168,255,0); }
}
.hotspot-tooltip {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.95);
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 10px 14px;
  width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 0 20px rgba(0,168,255,0.2);
}
.hotspot:hover .hotspot-tooltip { opacity: 1; pointer-events: auto; }
.hotspot-tooltip-title {
  font-family: var(--font-syn);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 4px;
}
.hotspot-tooltip-text {
  font-family: var(--font-raj);
  font-size: 12px;
  color: var(--grey-light);
  line-height: 1.5;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }
  .container { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  #main-header { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .footer-grid > *:first-child { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px 20px 0; }
}


/* ===== GLOBAL FORM STYLES ===== */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-family: var(--font-syn);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--grey);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-raj);
  font-size: 15px;
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--blue);
  background: rgba(0,168,255,0.04);
  box-shadow: 0 0 0 3px rgba(0,168,255,0.1);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255,255,255,0.2);
}
.form-textarea {
  height: 100px;
  resize: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-select option { background: #111; color: #fff; }
