/* ===== BRAND TOKENS ===== */
:root {
  --blue:    #2563E8;
  --maroon:  #89182D;
  --yellow:  #FBBF24;
  --charcoal:#1F2937;
  --gray:    #E5E7E8;
  --offwhite:#FAFAF5;
  --white:   #FFFFFF;

  --cat-sports:    #2563E8;
  --cat-activities:     #FFBF24;
  --cat-daycares:  #368049;
  --cat-parties:   #89182D;
  --cat-clubs:     #7C5AED;
  --cat-events:    #F97316;
  --cat-advertise: #7C5AED;

  --font: 'Inter', 'Segoe UI', Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.16);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); background: var(--offwhite); color: var(--charcoal); line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ===== NAV ===== */
.nav {
  background: var(--white);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text span:first-child {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-logo-img {
  height: 56px;
  width: 56px;
  display: block;
}

.nav-logo-text span:last-child {
  font-size: 10px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(37,99,232,0.08);
  color: var(--blue);
}

.nav-links a.active {
  color: var(--blue);
  font-weight: 700;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search input {
  background: var(--offwhite);
  border: 1px solid var(--gray);
  border-radius: 20px;
  padding: 6px 14px;
  color: var(--charcoal);
  font-size: 13px;
  width: 160px;
  outline: none;
  transition: border 0.15s, width 0.2s;
}

.nav-search input::placeholder { color: #9ca3af; }
.nav-search input:focus { border-color: var(--blue); width: 200px; }

.btn-search {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s;
}

.btn-search:hover { background: #1a50c8; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2d3a4a 60%, #1a2535 100%);
  padding: 72px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: var(--blue);
  opacity: 0.08;
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 260px; height: 260px;
  background: var(--maroon);
  opacity: 0.08;
  border-radius: 50%;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-logo {
  width: 500px;
  max-width: 90%;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  background: var(--white);
  padding: 20px 32px;
  border-radius: 16px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero h1 span { color: var(--yellow); }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 auto 16px;
}

.hero-sub2 {
  font-size: 15px !important;
  color: rgba(255,255,255,0.58) !important;
  max-width: 620px !important;
  margin: 0 auto 32px !important;
  line-height: 1.7 !important;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover { background: #1a50c8; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  transition: border-color 0.15s, background 0.15s;
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ===== SECTION ===== */
.section { padding: 56px 24px; }
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.section-sub {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 32px;
}

.container { max-width: 1160px; margin: 0 auto; }

/* ===== CATEGORY CARDS ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 16px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.category-card.coming-soon {
  opacity: 0.6;
  cursor: default;
}

.category-card.coming-soon:hover {
  transform: none;
  box-shadow: var(--shadow);
}

.coming-soon-tag {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--gray);
  color: #6b7280;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 10px;
}

.activities-nav-link {
  position: relative;
}
.activities-nav-link::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 100;
}
.activities-nav-link:hover::after,
.activities-nav-link:focus::after,
.activities-nav-link:active::after {
  opacity: 1;
}

.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 28px;
}

.category-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.category-card p {
  font-size: 12px;
  color: #6b7280;
}

/* Category color themes */
.cat-sports  { border-top-color: var(--cat-sports);  }
.cat-activities   { border-top-color: var(--cat-activities);   }
.cat-daycares{ border-top-color: var(--cat-daycares);}
.cat-parties { border-top-color: var(--cat-parties); }
.cat-clubs      { border-top-color: var(--cat-clubs);      }
.cat-events     { border-top-color: var(--cat-events);     }
.cat-advertise  { border-top-color: var(--cat-advertise);  }

.cat-sports   .category-icon { background: rgba(37,99,232,0.12);  color: var(--cat-sports);   }
.cat-activities    .category-icon { background: rgba(255,191,36,0.15); color: #b87d00;              }
.cat-daycares .category-icon { background: rgba(54,128,73,0.12);  color: #368049;              }
.cat-parties  .category-icon { background: rgba(137,24,45,0.10);  color: var(--cat-parties);  }
.cat-clubs       .category-icon { background: rgba(124,90,237,0.12); color: var(--cat-clubs);      }
.cat-events      .category-icon { background: rgba(249,115,22,0.12); color: var(--cat-events);     }
.cat-advertise   .category-icon { background: rgba(124,90,237,0.12); color: var(--cat-advertise);  }

/* ===== FILTERS (Sports Page) ===== */
.filters-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 140px;
}

.filter-group label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
}

.filter-group select,
.filter-group input[type="range"] {
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.filter-group select:focus { border-color: var(--blue); }

.filter-group .age-display {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 2px;
}

.btn-reset {
  background: none;
  border: 1.5px solid var(--gray);
  color: #6b7280;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.btn-reset:hover { border-color: var(--charcoal); color: var(--charcoal); }

/* ===== LEVEL PILLS ===== */
.level-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.level-pill {
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  background: var(--white);
  color: #6b7280;
  border: 1.5px solid var(--gray);
  transition: all 0.15s;
}

.level-pill:hover { border-color: var(--blue); color: var(--blue); }

.level-pill.active-rec   { background: #368049; border-color: #368049; color: var(--white); }
.level-pill.active-travel{ background: var(--blue); border-color: var(--blue); color: var(--white); }
.level-pill.active-elite { background: var(--maroon); border-color: var(--maroon); color: var(--white); }
.level-pill.active-all   { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }

/* ===== RESULTS INFO ===== */
.results-info {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}

.results-info strong { color: var(--charcoal); }

/* ===== LEAGUE CARDS ===== */
.leagues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.league-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}

.league-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.league-card-header {
  height: 6px;
}

.level-rec   { background: #368049; }
.level-travel{ background: var(--blue); }
.level-elite { background: var(--maroon); }

.league-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.league-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.league-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
}

.league-level-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-rec    { background: #dcfce7;  color: #166534; }
.badge-travel { background: #dbeafe;  color: #1e40af; }
.badge-elite  { background: #ffe4e6;  color: var(--maroon); }

.league-sport {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}

.league-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  flex: 1;
}

.league-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.meta-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #6b7280;
  background: var(--offwhite);
  border-radius: 6px;
  padding: 3px 8px;
}

.league-card-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.league-contact {
  font-size: 12px;
  color: #6b7280;
}

.btn-learn {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.15s;
}

.btn-learn:hover { background: #1a50c8; }

/* ===== NO RESULTS ===== */
.no-results {
  text-align: center;
  padding: 60px 24px;
  color: #6b7280;
  grid-column: 1 / -1;
}

.no-results h3 { font-size: 20px; margin-bottom: 8px; color: var(--charcoal); }

/* ===== PAGE HERO (Sports) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--cat-sports) 0%, #1a3fa8 100%);
  padding: 20px 24px;
  color: var(--white);
}

.page-hero h1 { font-size: 26px; font-weight: 900; margin-bottom: 2px; }
.page-hero p  { font-size: 13px; opacity: 0.85; }

/* ===== PREMIER PARTNERS ===== */
.premier-partners-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray);
  padding: 8px 24px;
}

.premier-partners-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.premier-partners-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #4b5563;
  white-space: nowrap;
  flex-shrink: 0;
}

.premier-partners-slots {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.premier-ad-slot {
  width: 364px;
  max-width: 100%;
  min-height: 90px;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: border-color 0.15s, background 0.15s;
}

.premier-ad-slot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.premier-ad-slot:hover {
  border-color: var(--blue);
  background: #eff6ff;
}

.premier-ad-slot span {
  font-size: 13px;
  font-weight: 600;
  color: #9ca3af;
}

.premier-ad-slot a {
  font-size: 12px;
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
}

/* ===== SUBMIT LISTING BANNER ===== */
.submit-banner {
  background: #fffbea;
  border-top: 3px solid var(--yellow);
  border-bottom: 1px solid #f0e6b0;
  padding: 12px 16px;
}

.submit-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.submit-banner-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
}

.submit-banner-tiers {
  display: flex;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}

.submit-tier {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 120px;
}

.partner-pricing-table {
  margin-top: 12px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.pricing-table thead tr {
  border-bottom: 2px solid #e5e7eb;
}

.pricing-table th {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b7280;
  text-align: center;
}

.pricing-table th:first-child {
  text-align: left;
}

.pricing-col-base { color: var(--blue) !important; }
.pricing-col-addon { color: #7c3aed !important; }

.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 4px;
}

.pricing-badge--base { background: var(--blue); color: #fff; }
.pricing-badge--addon { background: #7c3aed; color: #fff; }

.pricing-table tbody tr {
  border-bottom: 1px solid #f0e6b0;
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table td {
  padding: 5px 10px;
  color: var(--charcoal);
  text-align: center;
}

.pricing-table td:first-child {
  text-align: left;
  font-size: 13px;
}

.pricing-check {
  color: #16a34a;
  font-weight: 700;
  font-size: 15px;
}

.pricing-check--addon {
  color: #7c3aed;
}

.pricing-applies {
  font-size: 12px;
  color: #6b7280;
  margin-top: 8px;
  text-align: center;
}

.submit-tier-divider {
  width: 1px;
  background: #e5e7eb;
  margin: 0 12px;
  flex-shrink: 0;
}

.submit-tier-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
}

.submit-tier--paid .submit-tier-label {
  color: var(--blue);
}

.submit-tier-price {
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0;
}

.submit-tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.submit-tier-features li {
  font-size: 13px;
  color: var(--charcoal);
  padding-left: 18px;
  position: relative;
}

.submit-tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.submit-tier--paid .submit-tier-features li::before {
  color: var(--blue);
}

.btn-submit-free {
  padding: 9px 18px;
  border: 2px solid var(--charcoal);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  background: transparent;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.btn-submit-free:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-submit-paid {
  padding: 9px 18px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  transition: background 0.15s;
  white-space: nowrap;
}

.btn-submit-paid:hover {
  background: #1a3fa8;
  border-color: #1a3fa8;
}

/* ===== DAYCARES PAGE HERO ===== */
.page-hero-activities {
  background: linear-gradient(135deg, var(--cat-activities) 0%, #b45309 100%);
}

.page-hero-daycares {
  background: linear-gradient(135deg, #368049 0%, #214d2b 100%);
}

/* ===== DAYCARE CARDS ===== */
.daycares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.daycare-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.daycare-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.daycare-card-body {
  padding: 20px 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.daycare-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.daycare-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
}

.daycare-license-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(54,128,73,0.10);
  color: #368049;
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

.daycare-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

/* ===== VERIFIED BADGE ===== */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #368049;
  background: rgba(54,128,73,0.10);
  border: 1px solid rgba(54,128,73,0.30);
  border-radius: 6px;
  padding: 5px 10px;
  margin-top: 4px;
}

/* ===== PARTNERS PAGE HERO ===== */
.page-hero-partners {
  background: linear-gradient(135deg, var(--maroon) 0%, #5a0f1e 100%);
}

/* ===== PARTNER CARDS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  padding: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.partner-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.partner-card-logo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--offwhite);
}

.partner-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-logo-placeholder {
  font-size: 28px;
  font-weight: 900;
  color: var(--blue);
}

.partner-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.partner-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.partner-card-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
}

.partner-category-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: #eff6ff;
  color: var(--blue);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

.partner-description {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.partner-contact {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-top: 6px;
}

.partner-card-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.btn-partner-website {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: underline;
}

.partner-phone {
  font-size: 13px;
  color: #6b7280;
}

/* ===== NEWSLETTER POPUP ===== */

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 28px 24px;
  font-size: 13px;
  margin-top: 40px;
}

.footer strong { color: var(--white); }
.footer a { color: var(--yellow); }

/* ===== PARTNER SIGN-UP FORM ===== */
.pkg-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pkg-card {
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: var(--offwhite);
}

.pkg-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }

.pkg-card.selected {
  border-color: var(--blue);
  background: #eff6ff;
  box-shadow: 0 0 0 1px var(--blue);
}

.pkg-card-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.pkg-card > h3 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 4px;
}

.pkg-card-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.3;
}

.pkg-features {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pkg-features li {
  font-size: 13px;
  color: #6b7280;
  padding-left: 18px;
  position: relative;
}

.pkg-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #368049;
  font-weight: 800;
  font-size: 11px;
  top: 1px;
}

.pkg-billing-options {
  display: none;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--gray);
  padding-top: 16px;
}

.pkg-card.selected .pkg-billing-options { display: flex; }

.pkg-billing-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.15s;
}

.pkg-billing-option:hover { border-color: var(--blue); }

.pkg-billing-option input[type="radio"] {
  accent-color: var(--blue);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pkg-billing-label { font-size: 14px; font-weight: 600; color: var(--charcoal); flex: 1; }
.pkg-billing-price { font-size: 14px; font-weight: 700; color: var(--blue); }

/* Enroll modal plan selector */
.enroll-plan-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.enroll-plan-card {
  position: relative;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px 12px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
}
.enroll-plan-card:hover { border-color: #368049; }
.enroll-plan-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.enroll-plan-card.selected { border-color: #368049; background: #f0faf4; }
.enroll-plan-card .plan-name { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #6b7280; margin-bottom: 6px; }
.enroll-plan-card .plan-price { font-size: 28px; font-weight: 800; color: #1F2937; line-height: 1; }
.enroll-plan-card .plan-price span { font-size: 14px; font-weight: 600; color: #6b7280; }
.enroll-plan-card .plan-savings { font-size: 12px; color: #368049; font-weight: 600; margin-top: 6px; }
.enroll-plan-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: #368049; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.04em; }
.plan-selector-error { border-color: #dc2626 !important; }

.form-section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #9ca3af;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 8px;
  margin: 28px 0 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row .form-group { margin-bottom: 0; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group select {
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--blue); }

.form-group input.field-error,
.form-group select.field-error { border-color: var(--maroon); }

.form-hint { font-size: 12px; color: #9ca3af; line-height: 1.4; }

.form-radio-group { display: flex; gap: 10px; flex-wrap: wrap; }

.form-radio {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.15s;
}

.form-radio:hover { border-color: var(--blue); }

.form-radio input[type="radio"] {
  accent-color: var(--blue);
  width: 15px;
  height: 15px;
}

.form-check-group { display: flex; gap: 10px; flex-wrap: wrap; }

.form-check {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.15s;
}

.form-check:hover { border-color: var(--blue); }

.form-check input[type="checkbox"] {
  accent-color: var(--blue);
  width: 15px;
  height: 15px;
}

.form-check-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: #eff6ff;
  padding: 1px 6px;
  border-radius: 10px;
}

.form-total {
  text-align: right;
  font-size: 15px;
  color: var(--charcoal);
  padding: 10px 0;
  border-top: 1px solid var(--gray);
  margin-bottom: 12px;
}

.form-notice {
  background: #fffbea;
  border: 1px solid #f0e6b0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--charcoal);
}

.form-notice a { color: var(--blue); text-decoration: underline; }

.form-submit-error {
  background: #fff1f2;
  border: 1px solid rgba(137,24,45,0.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--maroon);
  font-weight: 600;
  margin-top: 16px;
}

.required { color: var(--maroon); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
}

.modal-overlay[hidden] { display: none; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 680px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
  margin: auto;
}

.modal-header {
  background: linear-gradient(135deg, #368049 0%, #214d2b 100%);
  padding: 28px 32px;
  border-radius: var(--radius) var(--radius) 0 0;
  color: var(--white);
}

.modal-header h2 { font-size: 22px; font-weight: 900; margin-bottom: 4px; }
.modal-header p  { font-size: 14px; opacity: 0.85; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}

.modal-close:hover { background: rgba(255,255,255,0.25); }

.modal-body { padding: 32px; }

.modal-success {
  text-align: center;
  padding: 48px 32px;
}

.modal-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: #368049;
  margin-bottom: 12px;
}

.modal-success p { font-size: 15px; color: #6b7280; line-height: 1.6; }

.form-group textarea {
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  resize: vertical;
  min-height: 90px;
}

.form-group textarea:focus { border-color: var(--blue); }

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.15s;
}

.form-checkbox:hover { border-color: var(--blue); }

.form-checkbox input[type="checkbox"] {
  accent-color: var(--blue);
  width: 15px;
  height: 15px;
}

/* ===== PAID LISTING LOGO ===== */
.daycare-card-top-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}

.daycare-card-logo {
  max-height: 52px;
  max-width: 100px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.detail-modal-logo {
  max-height: 72px;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

/* ===== ENROLLING NOW RIBBON ===== */
.daycare-card--paid {
  border: 2px solid #368049;
}

.enrolling-ribbon {
  background: #368049;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 6px 16px;
  text-align: center;
}

/* ===== DETAIL MODAL CONTENT ===== */
.detail-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.detail-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.detail-value {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 4px;
}

.detail-value:last-child { margin-bottom: 0; }

.detail-value a {
  color: #368049;
  text-decoration: underline;
}

.detail-website-btn {
  display: inline-block;
  padding: 11px 22px;
  background: #368049;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s;
}

.detail-website-btn:hover { background: #2d6b3d; color: #fff; }

.unclaimed-notice {
  display: none;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */

/* Tablet: 3-column grid keeps all 5 category cards the same size */
@media (min-width: 641px) and (max-width: 912px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 28px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  /* Center the 5th card when it's alone in the last row */
  .categories-grid > a:last-child:nth-child(odd),
  .categories-grid > div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    justify-self: center;
  }
  .filters-bar { flex-direction: column; }
  .pkg-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
