* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #102018;
  background: #f5f7f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 35, 21, 0.96);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo span {
  color: #96d65c;
}

nav {
  display: flex;
  gap: 18px;
  font-weight: 700;
  font-size: 15px;
}

nav a {
  opacity: 0.88;
}

nav a:hover {
  opacity: 1;
  color: #b9f17b;
}

.hero {
  background: linear-gradient(135deg, #082315 0%, #114d2e 50%, #7ab03a 100%);
  color: #fff;
  padding: 86px 0;
}

.hero-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  color: #b9f17b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 760px;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.lead {
  font-size: 20px;
  max-width: 650px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn.primary {
  background: #b9f17b;
  color: #092315;
}

.btn.secondary {
  border: 2px solid rgba(255,255,255,0.75);
  color: #fff;
}

.contact-section .btn.secondary {
  border-color: #164d2f;
  color: #164d2f;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.hero-card,
.cards article,
.watch-box,
.map-card {
  background: #fff;
  color: #102018;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.hero-card a {
  color: #0f6d39;
  font-weight: 800;
}

.map-link {
  display: inline-block;
  margin-top: 16px;
  color: #0f6d39;
  font-weight: 800;
}

.features,
.watch-section,
.contact-section {
  padding: 72px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cards article {
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.section-title {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 28px;
}

.watch-section {
  background: #e9f1e4;
}

.watch-box {
  padding: 10px;
  overflow: hidden;
}

.watch-box iframe {
  width: 100%;
  height: 640px;
  border: 0;
  border-radius: 18px;
  background: #fff;
}

.iframe-note {
  text-align: center;
  margin: 16px 0;
  color: #46544b;
}

.watch-section .btn {
  margin: 0 auto;
  display: flex;
  max-width: 280px;
}

.contact-section {
  background: #fff;
}

.contact-section p {
  margin-bottom: 10px;
}

.contact-section a {
  color: #0f6d39;
  font-weight: 800;
}

.map-card {
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 18px;
}

footer {
  background: #082315;
  color: rgba(255,255,255,0.82);
  padding: 28px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
  }

  .hero {
    padding: 56px 0;
  }

  .hero-grid,
  .contact-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .watch-box iframe {
    height: 520px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  h1 {
    font-size: 38px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-card,
  .cards article,
  .watch-box,
  .map-card {
    border-radius: 18px;
    padding: 20px;
  }

  .watch-box {
    padding: 6px;
  }

  .watch-box iframe {
    height: 460px;
  }

  .btn {
    width: 100%;
  }
}
.futbol-okulu {
  background: #0f172a;
  color: #fff;
  padding: 40px 20px;
}

.futbol-okulu h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
}

.okul-kart {
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.okul-kart h3 {
  margin-bottom: 10px;
  color: #38bdf8;
}

.okul-kart a {
  color: #22c55e;
  text-decoration: none;
  font-weight: bold;
}
.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 24px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 999;
}

.whatsapp-fixed img {
  width: 35px;
  height: 35px;
}

.whatsapp-fixed:hover {
  transform: scale(1.1);
}
.whatsapp-fixed {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.reklam-alani {
  text-align: center;
  margin: 20px 0;
}

.reklam-alani img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.reklam-mobil {
  display: none;
  text-align: center;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .reklam-alani {
    display: none;
  }
  .reklam-mobil {
    display: block;
  }
}
.reklam-alani-yazi {
  text-align: center;
  padding: 30px 20px;
  margin: 25px 0;
  background: linear-gradient(135deg, #111827, #1f2937);
  border-radius: 12px;
}

.reklam-alani-yazi a {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #22c55e;
  text-decoration: none;
  letter-spacing: 1px;
}

.reklam-alani-yazi p {
  color: #ccc;
  margin-top: 10px;
  font-size: 14px;
}
.reklam-alani-yazi a {
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.reklam-yazi-box {
  text-align: center;
  padding: 25px 15px;
  margin: 20px auto;
  max-width: 900px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 12px;
}

.reklam-yazi-box a {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #22c55e;
  text-decoration: none;
  line-height: 1.4;
}

.reklam-yazi-box span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #ccc;
}
@media (max-width: 768px) {
  .reklam-yazi-box a {
    font-size: 20px;
  }
}
.reklam-yazi-box a {
  animation: pulseText 1.5s infinite;
}

@keyframes pulseText {
  0%,100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.futbol-sayfa {
  text-align: center;
  padding: 50px 20px;
}

.futbol-sayfa h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.okul-kart-buyuk {
  background: #f1f5f9;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  margin: 20px auto;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  background: #25D366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}