/* GreenKick Futsal & Bola Kaki — Soccer Green Theme */
:root {
  --green-dark: #1a5c2a;
  --green-main: #2d8a45;
  --green-light: #4db96a;
  --green-pale: #e8f7ec;
  --lime: #8bc34a;
  --yellow-accent: #f0c300;
  --white: #ffffff;
  --gray-light: #f4f4f4;
  --gray-mid: #ddd;
  --gray-text: #555;
  --dark: #1a1a1a;
  --radius: 10px;
  --shadow: 0 4px 18px rgba(45,138,69,0.13);
}

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

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

/* ===== DEMO BAR ===== */
.demo-bar {
  background: var(--yellow-accent);
  color: #333;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-align: center;
}
.demo-bar a {
  color: var(--green-dark);
  text-decoration: underline;
  white-space: nowrap;
}
.demo-bar .demo-cta {
  background: var(--green-dark);
  color: var(--white);
  text-decoration: none;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
}
.demo-bar .demo-cta:hover { background: var(--green-main); }

/* ===== HEADER & NAV ===== */
header {
  background: var(--green-dark);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}
.brand-logo {
  width: 40px; height: 40px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-name { font-size: 1.2rem; font-weight: 800; line-height: 1.1; }
.brand-sub { font-size: 0.65rem; color: var(--lime); letter-spacing: 1px; text-transform: uppercase; }

/* Checkbox hack mobile menu */
#nav-toggle { display: none; }
.nav-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-label span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: center;
}
nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background .2s;
}
nav ul li a:hover, nav ul li a.active {
  background: var(--green-main);
}
nav ul li a.btn-nav {
  background: var(--yellow-accent);
  color: var(--green-dark);
}
nav ul li a.btn-nav:hover { background: var(--lime); }

@media (max-width: 720px) {
  .nav-label { display: flex; }
  nav {
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--green-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  #nav-toggle:checked ~ nav { max-height: 400px; }
  nav ul { flex-direction: column; padding: 12px 0 16px; gap: 2px; }
  nav ul li { width: 100%; }
  nav ul li a { display: block; text-align: center; padding: 10px 16px; border-radius: 0; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 60%, var(--lime) 100%);
  color: var(--white);
  padding: 64px 16px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.hero-badge {
  display: inline-block;
  background: var(--yellow-accent);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900; line-height: 1.15; margin-bottom: 14px; }
.hero p { font-size: 1.05rem; opacity: .9; max-width: 560px; margin: 0 auto 28px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--yellow-accent);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* Field pitch SVG illustration */
.hero-pitch {
  margin: 32px auto 0;
  max-width: 340px;
  opacity: .18;
}

/* ===== SECTION BASE ===== */
.section { padding: 56px 16px; }
.section-alt { background: var(--gray-light); }
.container { max-width: 1100px; margin: 0 auto; }
.section-title { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; color: var(--green-dark); margin-bottom: 8px; }
.section-sub { color: var(--gray-text); font-size: 1rem; margin-bottom: 36px; }
.section-head { text-align: center; margin-bottom: 36px; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--green-main);
  color: var(--white);
  padding: 28px 16px;
}
.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
}
.stat-num { font-size: 2rem; font-weight: 900; line-height: 1; }
.stat-label { font-size: 0.8rem; opacity: .85; }
@media (max-width: 600px) { .stats-grid { grid-template-columns: repeat(2,1fr); gap: 20px; } }

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s;
}
.card:hover { transform: translateY(-4px); }
.card-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-body { padding: 18px; }
.card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--green-dark); }
.card-text { font-size: 0.9rem; color: var(--gray-text); }
.card-price { font-size: 1.15rem; font-weight: 800; color: var(--green-main); margin-top: 10px; }
.card-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
  margin-top: 8px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 0.88rem; color: var(--gray-text); }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.pricing-card {
  border-radius: var(--radius);
  border: 2px solid var(--gray-mid);
  padding: 30px 24px;
  text-align: center;
  transition: border-color .2s, transform .2s;
  background: var(--white);
}
.pricing-card.featured {
  border-color: var(--green-main);
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(45,138,69,0.18);
}
.pricing-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.pricing-label { font-size: 0.8rem; color: var(--gray-text); margin-bottom: 16px; }
.pricing-price { font-size: 2rem; font-weight: 900; color: var(--green-dark); }
.pricing-price span { font-size: 0.9rem; font-weight: 400; color: var(--gray-text); }
.pricing-features { list-style: none; text-align: left; margin: 18px 0; }
.pricing-features li { font-size: 0.9rem; padding: 5px 0; border-bottom: 1px solid var(--gray-mid); color: var(--gray-text); }
.pricing-features li::before { content: '✓ '; color: var(--green-main); font-weight: 700; }
.badge-pop {
  display: inline-block;
  background: var(--yellow-accent);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
}

/* ===== SCHEDULE TABLE ===== */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.schedule-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
}
.schedule-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-mid);
}
.schedule-table tr:nth-child(even) td { background: var(--green-pale); }
.schedule-table tr:hover td { background: #d4f0dc; }
.badge-avail {
  display: inline-block;
  background: var(--green-main);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
}
.badge-booked {
  display: inline-block;
  background: #e0e0e0;
  color: #888;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green-main);
}
.testi-stars { color: var(--yellow-accent); font-size: 1.1rem; margin-bottom: 8px; }
.testi-text { font-size: 0.9rem; color: var(--gray-text); margin-bottom: 12px; font-style: italic; }
.testi-author { font-weight: 700; font-size: 0.88rem; }
.testi-role { font-size: 0.78rem; color: var(--gray-text); }

/* ===== FORM ===== */
.form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-main);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  background: var(--green-main);
  color: var(--white);
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}
.form-submit:hover { background: var(--green-dark); }

/* ===== CONTACT INFO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 0.93rem;
}
.contact-info-list li:last-child { border-bottom: none; }
.ci-icon {
  width: 36px; height: 36px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-label { font-size: 0.78rem; color: var(--gray-text); }
.ci-val { font-weight: 600; }

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
  background: var(--green-pale);
  border-radius: var(--radius);
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 600;
  gap: 10px;
  border: 2px dashed var(--green-light);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(120deg, var(--green-dark) 0%, var(--green-main) 100%);
  color: var(--white);
  padding: 44px 16px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.5rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 10px; }
.page-hero p { font-size: 1rem; opacity: .88; max-width: 500px; margin: 0 auto; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--gray-light);
  padding: 10px 16px;
  font-size: 0.83rem;
}
.breadcrumb a { color: var(--green-main); text-decoration: none; }
.breadcrumb span { color: var(--gray-text); }

/* ===== FOOTER ===== */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.82);
  padding: 44px 16px 24px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 20px; } }
.footer-brand .brand-name { font-size: 1.3rem; color: var(--white); }
.footer-brand p { font-size: 0.88rem; margin-top: 10px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.87rem; }
.footer-col ul li a:hover { color: var(--lime); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 700px) { .about-intro { grid-template-columns: 1fr; } }
.about-visual {
  background: linear-gradient(135deg, var(--green-main), var(--lime));
  border-radius: var(--radius);
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
}
.about-intro h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 14px; color: var(--green-dark); }
.about-intro p { color: var(--gray-text); margin-bottom: 12px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
}
.team-name { font-weight: 700; margin-bottom: 3px; }
.team-pos { font-size: 0.83rem; color: var(--gray-text); }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-mid);
  padding: 18px 0;
}
.faq-q { font-weight: 700; margin-bottom: 8px; font-size: 1rem; color: var(--green-dark); }
.faq-a { font-size: 0.92rem; color: var(--gray-text); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  text-decoration: none;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ===== FIELD VISUAL SHAPES ===== */
.field-bg-1 { background: linear-gradient(135deg, #2d8a45 0%, #1a5c2a 100%); }
.field-bg-2 { background: linear-gradient(135deg, #3a7bd5 0%, #1a4a8a 100%); }
.field-bg-3 { background: linear-gradient(135deg, #f0c300 0%, #e07b00 100%); }
.field-bg-4 { background: linear-gradient(135deg, #8bc34a 0%, #4caf50 100%); }

/* Utility */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.green-text { color: var(--green-main); }
