:root {
  --hb-bg: #0a0a0b;
  --hb-surface: #16161a;
  --hb-surface-2: #1e1e24;
  --hb-yellow: #f5c518;
  --hb-yellow-dim: #c9a012;
  --hb-text: #f4f4f5;
  --hb-muted: #a1a1aa;
  --hb-whatsapp: #25d366;
  --hb-instagram-start: #833ab4;
  --hb-instagram-end: #fd1d1d;
  --hb-radius: 16px;
  --hb-radius-sm: 12px;
  --hb-font: "Montserrat", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--hb-font);
  background: var(--hb-bg);
  color: var(--hb-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.hb-navbar {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.12);
  padding: 0.65rem 0;
  transition: background 0.25s ease;
}

.hb-navbar .navbar-brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hb-yellow) !important;
  font-size: 1.25rem;
}

.hb-navbar .nav-link {
  color: var(--hb-text) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.hb-navbar .nav-link:hover,
.hb-navbar .nav-link:focus {
  color: var(--hb-yellow) !important;
  background: rgba(245, 197, 24, 0.08);
}

.hb-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 575.98px) {
  .hb-logo-img {
    height: 34px;
  }
}

.hb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem 4rem;
  background:
    radial-gradient(ellipse 120% 80% at 50% 100%, rgba(245, 197, 24, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 80% 25%, rgba(255, 255, 255, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, #0d0d10 0%, #050506 100%);
}

.hb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hb-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hb-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hb-yellow);
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hb-hero h1 {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
  font-size: clamp(2.25rem, 8vw, 4.25rem);
  margin-bottom: 1.25rem;
}

.hb-hero .hb-lead {
  color: var(--hb-muted);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.hb-btn-yellow {
  --bs-btn-bg: var(--hb-yellow);
  --bs-btn-border-color: var(--hb-yellow);
  --bs-btn-color: #111;
  --bs-btn-hover-bg: #ffd54a;
  --bs-btn-hover-border-color: #ffd54a;
  --bs-btn-hover-color: #111;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hb-btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35);
}

.hb-btn-ghost {
  color: var(--hb-text) !important;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  font-weight: 600;
  padding: 0.7rem 1.45rem;
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.hb-btn-ghost:hover {
  border-color: var(--hb-yellow);
  color: var(--hb-yellow) !important;
  background: rgba(245, 197, 24, 0.08);
  transform: translateY(-2px);
}

.hb-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hb-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--hb-muted);
}

.hb-trust-item i {
  color: var(--hb-yellow);
  font-size: 1.1rem;
}

section {
  padding: 4.5rem 0;
}

.hb-section-dark {
  background: var(--hb-bg);
}

.hb-section-surface {
  background: linear-gradient(180deg, var(--hb-surface) 0%, var(--hb-bg) 100%);
}

.hb-section-title {
  text-align: center;
  margin-bottom: 0.75rem;
}

.hb-section-title h2 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.15;
}

.hb-section-title .text-yellow {
  color: var(--hb-yellow);
}

.hb-section-title p {
  color: var(--hb-muted);
  max-width: 480px;
  margin: 0.75rem auto 0;
  font-size: 0.95rem;
}

.hb-badge-section {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hb-badge-section.outline {
  color: var(--hb-yellow);
  border: 1px solid var(--hb-yellow);
  background: transparent;
}

.hb-badge-section.solid {
  background: var(--hb-yellow);
  color: #111;
}

.hb-match-card {
  background: var(--hb-surface-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--hb-radius);
  padding: 1.25rem;
  height: 100%;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.hb-match-card:hover {
  border-color: rgba(245, 197, 24, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.hb-match-card .hb-card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--hb-yellow);
  color: #111;
}

.hb-team {
  text-align: center;
}

.hb-team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2a2a32, #1a1a1e);
  border: 2px solid rgba(245, 197, 24, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--hb-yellow);
  margin: 0 auto 0.5rem;
  overflow: hidden;
}

.hb-team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hb-vs {
  text-align: center;
  align-self: center;
}

.hb-vs span {
  display: block;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--hb-yellow);
  line-height: 1;
}

.hb-vs small {
  color: var(--hb-muted);
  font-size: 0.8rem;
}

.hb-match-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 1.25rem 0;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.hb-match-meta i {
  color: var(--hb-yellow);
  margin-right: 0.35rem;
}

.hb-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hb-price-row .price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--hb-yellow);
}

.hb-btn-ticket {
  background: var(--hb-yellow);
  color: #111 !important;
  font-weight: 800;
  border: none;
  padding: 0.65rem 1.25rem;
  border-radius: var(--hb-radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s, filter 0.2s;
}

.hb-btn-ticket:hover {
  color: #111 !important;
  filter: brightness(1.08);
  transform: scale(1.02);
}

.hb-strip {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--hb-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hb-btn-wa-outline {
  border: 2px solid var(--hb-yellow);
  color: var(--hb-yellow) !important;
  background: transparent;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s;
}

.hb-btn-wa-outline:hover {
  background: rgba(245, 197, 24, 0.15);
  color: #fff !important;
}

.hb-step-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.hb-step-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: var(--hb-yellow);
  border-radius: var(--hb-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #111;
}

.hb-step-icon .hb-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--hb-bg);
  border: 2px solid var(--hb-yellow);
  color: var(--hb-yellow);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hb-step-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.hb-step-card p {
  color: var(--hb-muted);
  font-size: 0.875rem;
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.hb-testimonial {
  background: var(--hb-surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--hb-radius);
  padding: 1.5rem;
  height: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.hb-testimonial:hover,
.hb-testimonial.featured {
  border-color: rgba(245, 197, 24, 0.55);
  box-shadow: 0 0 0 1px rgba(245, 197, 24, 0.2);
}

.hb-testimonial .stars {
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.hb-testimonial .stars .hb-star-on {
  color: var(--hb-yellow);
}

.hb-testimonial .stars .hb-star-off {
  color: var(--hb-yellow);
  opacity: 0.28;
}

.hb-testimonial blockquote {
  font-size: 0.9rem;
  color: var(--hb-text);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.hb-testimonial hr {
  border-color: rgba(255, 255, 255, 0.08);
  opacity: 1;
  margin: 1rem 0;
}

.hb-testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hb-testimonial-footer .name {
  font-weight: 800;
  font-size: 0.95rem;
}

.hb-testimonial-footer .match {
  font-size: 0.8rem;
  color: var(--hb-yellow);
}

.hb-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hb-yellow);
  color: #111;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.hb-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hb-contact-hero {
  text-align: center;
  padding: 4rem 1rem 5rem;
}

.hb-line {
  width: 48px;
  height: 4px;
  background: var(--hb-yellow);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.hb-btn-whatsapp {
  background: var(--hb-whatsapp);
  color: #fff !important;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hb-btn-whatsapp:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
}

.hb-btn-instagram {
  background: linear-gradient(135deg, var(--hb-instagram-start), var(--hb-instagram-end));
  color: #fff !important;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 28px rgba(131, 58, 180, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hb-btn-instagram:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(131, 58, 180, 0.45);
}

.hb-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin: 1.75rem 0;
  font-size: 0.95rem;
}

.hb-contact-row a {
  color: var(--hb-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hb-contact-row a:hover {
  color: var(--hb-yellow);
}

.hb-contact-row .sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.hb-footer-note {
  text-align: center;
  color: var(--hb-muted);
  font-size: 0.8rem;
  padding: 1.5rem 1rem 2rem;
}

.hb-site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
  text-align: center;
  color: var(--hb-muted);
  font-size: 0.8rem;
}

/* Sabit WhatsApp (tüm sayfalar) */
.hb-wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1080;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hb-wa-float:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  color: #fff !important;
}

.hb-wa-float:focus-visible {
  outline: 2px solid var(--hb-yellow);
  outline-offset: 3px;
}

/* Ödeme sayfası: kutular altı tam genişlik CTA */
.hb-odeme-wa-bar {
  max-width: 560px;
  margin: 1.25rem auto 0;
  padding: 1rem 1.15rem;
  border-radius: var(--hb-radius);
  border: 1px solid rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.08);
  text-align: center;
}

.hb-odeme-wa-bar .hb-odeme-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.hb-odeme-wa-bar .hb-odeme-wa-btn:hover {
  color: #fff !important;
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.hb-odeme-wa-bar .hb-odeme-wa-btn svg {
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .hb-wa-float {
    bottom: 1rem;
    right: 1rem;
    width: 54px;
    height: 54px;
  }

  .hb-wa-float svg {
    width: 26px;
    height: 26px;
  }
}

.navbar-toggler {
  border-color: rgba(245, 197, 24, 0.4);
  padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 197, 24, 0.25);
}

.navbar-dark .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

@media (max-width: 767.98px) {
  .hb-hero .d-flex.gap-3 {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hb-hero .d-flex.gap-3 .btn {
    width: 100%;
    justify-content: center;
  }

  .hb-contact-hero .d-flex.flex-wrap {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hb-contact-hero .d-flex.flex-wrap a {
    width: 100%;
    justify-content: center;
  }

  .hb-contact-row {
    flex-direction: column;
  }

  .hb-contact-row .sep {
    display: none;
  }
}
