:root {
  --navy: #0a0f1e;
  --dark: #0d1526;
  --mid: #0f1e3a;
  --blue-deep: #0e2a5e;
  --blue-main: #1a4a9e;
  --blue-bright: #2563eb;
  --blue-electric: #3b82f6;
  --blue-sky: #66dbf7;
  --blue-ice: #bfdbfe;
  --teal: #0891b2;
  --teal-light: #22d3ee;
  --accent: #f0a500;
  --white: #ffffff;
  --off-white: #e8f0fe;
  --text-dim: #94a3b8;
  --text-mid: #cbd5e1;
  --border: rgba(59,130,246,0.15);
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Noto Sans', sans-serif; font-weight: 700; line-height: 1.2; }

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

img { max-width: 100%; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-sky);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-electric);
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

#header.scrolled {
  background: rgba(10,15,30,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue-bright), var(--teal));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.logo span { color: var(--blue-sky); }

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: var(--glass);
}
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.2s;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-mid);
  border-radius: 8px;
  transition: all 0.15s;
  font-weight: 500;
}
.dropdown a:hover { color: var(--white); background: var(--glass); }
.dropdown-sep { height: 1px; background: var(--glass-border); margin: 6px 0; }
.dropdown-label {
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

.header-cta {
  background: linear-gradient(135deg, #387ae7, #21459d);
  color: white;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-left: 12px;
  transition: all 0.2s;
}
.header-cta:hover { background: var(--blue-electric); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO CAROUSEL ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

@media(max-width:640px){
  #hero {
    height: 80vh;
  }
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.carousel-slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,15,30,0.85) 0%, rgba(10,15,30,0.5) 60%, rgba(10,15,30,0.2) 100%);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 80px 100px 80px;
}

.slide-content.center { justify-content: center; text-align: center; }
.slide-content.right { justify-content: flex-end; text-align: right; }

.slide-inner {
  max-width: 620px;
}

@media(max-width:640px){
  .slide-inner {
    text-align: center !important;
  }
  .slide-buttons {
    justify-content: center !important;
  }
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(59,130,246,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-sky);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.slide-inner h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--white);
}

.slide-inner h1 span { color: var(--blue-sky); }

.slide-inner p {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.slide-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.slide-content.center .slide-buttons { justify-content: center; }
.slide-content.right .slide-buttons { justify-content: flex-end; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #387ae7, #21459d);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s;
  font-family: 'Noto Sans', sans-serif;
  border: none;
}
.btn-primary:hover { background: linear-gradient(135deg, #2a65d4, #4ec8f0);; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,99,235,0.4); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.25s;
  font-family: 'Noto Sans', sans-serif;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }

.carousel-arrows {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
  z-index: 10;
}

.carousel-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
  color: white;
}
.carousel-arrow:hover { background: var(--blue-bright); border-color: var(--blue-bright); transform: scale(1.05); }
.carousel-arrow svg { width: 20px; height: 20px; }

@media(max-width:640px){
  .carousel-arrow {
    width: 30px;
    height:30px;
  }

  .carousel-arrow svg { width: 14px; height: 14px; }

  .carousel-arrows {
    padding: 0 12px;
  }
}

.carousel-indicators {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.indicator {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.indicator.active {
  width: 32px;
  background: var(--blue-bright);
}

/* ===== QUICK PODS ===== */
#quick-pods {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}

.pods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pod {
  padding: 40px 40px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.2s;
  cursor: pointer;
}
.pod:last-child { border-right: none; }
.pod:hover { background: rgba(37,99,235,0.06); }

.pod-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(8,145,178,0.1));
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-sky);
}
.pod-icon svg { width: 24px; height: 24px; }

.pod-text h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.pod-text p { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
.pod-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-electric);
  margin-top: 10px;
  transition: gap 0.2s;
}
.pod:hover .pod-link { gap: 8px; }

/* ===== SECTION GENERIC ===== */
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }

.section-header { margin-bottom: 56px; }
.section-header h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; }
.section-header p { font-size: 17px; color: var(--text-dim); margin-top: 12px; max-width: 520px; }

.section-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-electric);
  white-space: nowrap;
  transition: gap 0.2s;
}
.view-all-link:hover { gap: 10px; }

/* ===== WELCOME / ABOUT SPLIT ===== */
#welcome {
  background: var(--dark);
  overflow: hidden;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split-content {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-image {
  position: relative;
  overflow: hidden;
  background: var(--mid);
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, var(--blue-deep), var(--mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.1);
}

.split-content .section-tag { margin-bottom: 12px; }
.split-content h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.split-content p { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin-bottom: 20px; }

/* ===== STAT COUNTER ===== */
.stat-strip {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 40px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 14px;
  margin: 32px 0;
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Noto Sans', sans-serif; font-size: 32px; font-weight: 800; color: var(--blue-sky); }
.stat-label { font-size: 12px; color: var(--text-dim); font-weight: 500; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ===== ABOUT 500+ SPLIT ===== */
#about-split {
  background: var(--navy);
  overflow: hidden;
}

.check-list { list-style: none; margin: 20px 0 32px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.check-list li:first-child { border-top: 1px solid var(--border); }
.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(37,99,235,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-electric);
}
.check-icon svg { width: 12px; height: 12px; }

/* ===== FEATURED BUSINESSES GRID ===== */
#featured {
  background: var(--dark);
  padding: 100px 0 0;
}

.featured-header {
  padding: 0 0 56px;
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 0;
}

.biz-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  margin: -0.5px;
}

.biz-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.biz-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-deep), var(--mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 600;
}

.biz-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  z-index: 1;
  transition: opacity 0.3s;
}

.biz-card:hover::before { opacity: 0.7; }
.biz-card:hover .biz-card-img { transform: scale(1.06); }

.biz-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.biz-name {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}
.biz-cat { font-size: 11px; color: var(--blue-ice); opacity: 0.8; margin-top: 3px; font-weight: 500; }

.biz-hover-btn {
  background: var(--blue-bright);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.25s;
}
.biz-card:hover .biz-hover-btn { opacity: 1; transform: translateY(0); }

.biz-grid-footer {
  padding: 40px 0 !important;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 0;
}

/* ===== EXPLORE GRID ===== */
#explore {
  background: var(--navy);
  padding: 100px 0;
  padding-bottom: 0;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.explore-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  margin: -0.5px;
}

.explore-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.explore-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-deep), var(--mid));
  transition: transform 0.5s;
}
.explore-card:hover .explore-card-bg { transform: scale(1.05); }

.explore-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 100%);
}

.explore-card-content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.explore-area {
  font-family: 'Noto Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.explore-count {
  font-size: 12px;
  color: var(--blue-ice);
  font-weight: 500;
}
.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-sky);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.2s;
}
.explore-card:hover .explore-link { opacity: 1; transform: translateY(0); }

/* ===== CATEGORIES ===== */
#categories {
  background: var(--dark);
  padding: 100px 0;
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px 24px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--teal));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.cat-card:hover { background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.25); transform: translateY(-4px); }
.cat-card:hover::before { transform: scaleX(1); }

.cat-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.cat-name { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.cat-count { font-size: 12px; color: var(--text-dim); font-weight: 500; }
.cat-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--text-dim);
  opacity: 0;
  transition: opacity 0.2s;
}
.cat-card:hover .cat-arrow { opacity: 1; color: var(--blue-electric); }

/* ===== NEWS & EVENTS ===== */
#latest {
  background: var(--navy);
  padding: 100px 0;
}

.news-events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.feed-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-card {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  cursor: pointer;
}
.news-card:first-of-type { padding-top: 0; }
.news-card:hover .news-card-title { color: var(--blue-sky); }

.news-img {
  width: 80px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--mid);
}

.news-meta { font-size: 11px; color: var(--text-dim); font-weight: 500; margin-bottom: 6px; }
.news-meta span { color: var(--blue-electric); }
.news-card-title { font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 700; line-height: 1.4; transition: color 0.2s; }
.news-card-date { font-size: 11px; color: var(--text-dim); margin-top: 4px; }

.event-card {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
}
.event-card:first-of-type { padding-top: 0; }
.event-card:hover .event-name { color: var(--blue-sky); }

.event-date-box {
  width: 52px;
  height: 52px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.event-day { font-family: 'Noto Sans', sans-serif; font-size: 18px; font-weight: 800; color: var(--blue-sky); line-height: 1; }
.event-month { font-size: 9px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }

.event-name { font-family: 'Noto Sans', sans-serif; font-size: 14px; font-weight: 700; line-height: 1.4; transition: color 0.2s; }
.event-loc { font-size: 11px; color: var(--text-dim); margin-top: 4px; display: flex; align-items: center; gap: 4px; }

/* ===== TEAM SLIDER ===== */
#team {
  background: var(--dark);
  padding: 100px 0;
  overflow: hidden;
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.team-intro .section-tag { margin-bottom: 16px; }
.team-intro h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.team-intro p { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin-bottom: 32px; }

.team-controls { display: flex; gap: 10px; }
.team-ctrl {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-mid);
}
.team-ctrl:hover { background: var(--blue-bright); border-color: var(--blue-bright); color: white; }
.team-ctrl svg { width: 18px; height: 18px; }

.team-carousel { overflow: hidden; }

.team-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.team-card {
  flex: 0 0 220px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s;
}
.team-card:hover { transform: translateY(-4px); }

.team-card-img {
  height: 240px;
  background: linear-gradient(135deg, var(--blue-deep), var(--mid));
  position: relative;
  overflow: hidden;
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 18px; }
.team-card-name { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.team-card-role { font-size: 12px; color: var(--blue-sky); font-weight: 500; }

/* ===== ADVERTISING ===== */
#advertise {
  background: var(--navy);
  padding: 100px 0;
}

.advert-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.package-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.package-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

.package-card.featured {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.3), 0 20px 60px rgba(37,99,235,0.15);
}

.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-header {
  padding: 36px 36px 28px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(8,145,178,0.05));
  border-bottom: 1px solid var(--border);
}

.package-card.featured .package-header {
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(8,145,178,0.1));
}

.package-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-sky);
  margin-bottom: 10px;
}
.package-name { font-family: 'Noto Sans', sans-serif; font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.package-price { display: flex; align-items: baseline; gap: 4px; }
.price-num { font-family: 'Noto Sans', sans-serif; font-size: 42px; font-weight: 800; color: var(--white); }
.price-unit { font-size: 14px; color: var(--text-dim); }

.package-body { padding: 32px 36px; }
.package-desc { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 24px; }
.package-features { list-style: none; margin-bottom: 28px; }
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.package-features li:first-child { border-top: 1px solid var(--border); }

.feat-check {
  width: 20px;
  height: 20px;
  background: rgba(37,99,235,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-electric);
  margin-top: 1px;
}
.feat-check svg { width: 11px; height: 11px; }

.package-discounts {
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}
.discount-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 10px; }
.discount-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 4px 0; color: var(--text-mid); }
.discount-row .save { font-size: 11px; font-weight: 700; color: var(--accent); }

.btn-package {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Noto Sans', sans-serif;
  transition: all 0.2s;
  border: none;
}
.btn-package-outline {
  border: 1px solid var(--blue-bright);
  color: var(--blue-sky);
  background: transparent;
}
.btn-package-outline:hover { background: rgba(37,99,235,0.1); }
.btn-package-solid {
  background: var(--blue-bright);
  color: white;
}
.btn-package-solid:hover { background: var(--blue-electric); transform: translateY(-1px); }

.custom-cta {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}
.custom-cta h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.custom-cta p { font-size: 15px; color: var(--text-dim); max-width: 520px; margin: 0 auto 24px; }
.services-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 24px; }
.pill {
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-sky);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: var(--dark);
  padding: 100px 0;
}

.testi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.testi-content {
  padding: 60px;
  background: var(--mid);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-mark { font-size: 72px; color: var(--blue-bright); line-height: 0.8; margin-bottom: 24px; font-family: 'Noto Sans', sans-serif; }
.testi-text { font-size: 18px; color: var(--text-mid); line-height: 1.8; font-style: italic; margin-bottom: 32px; flex: 1; }
.testi-author-name { font-family: 'Noto Sans', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.testi-author-biz { font-size: 13px; color: var(--blue-sky); font-weight: 500; margin-bottom: 24px; }

.testi-nav { display: flex; align-items: center; gap: 16px; }
.testi-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-mid);
}
.testi-nav-btn:hover { background: var(--blue-bright); border-color: var(--blue-bright); color: white; }
.testi-nav-btn svg { width: 16px; height: 16px; }
.testi-count { font-size: 13px; color: var(--text-dim); }

.testi-image {
  position: relative;
  overflow: hidden;
  background: var(--blue-deep);
  min-height: 400px;
}
.testi-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.testi-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-deep), var(--mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 60px;
}

/* ===== WHY CHOOSE US ===== */
#why {
  background: var(--navy);
  padding: 100px 0;
  overflow: hidden;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-images {
  position: relative;
  height: 480px;
}
.why-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--dark);
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img-placeholder {
  background: linear-gradient(135deg, var(--blue-deep), var(--mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.1);
}

.why-img-1 { top: 0; left: 0; width: 62%; height: 56%; }
.why-img-2 { bottom: 0; right: 0; width: 55%; height: 52%; }
.why-img-3 { top: 40%; left: 30%; width: 48%; height: 44%; box-shadow: 0 20px 60px rgba(0,0,0,0.5); z-index: 2; }

.why-stats {
  display: flex;
  gap: 24px;
  margin: 32px 0;
}
.why-stat {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 12px;
}
.why-stat-num { font-family: 'Noto Sans', sans-serif; font-size: 28px; font-weight: 800; color: var(--blue-sky); }
.why-stat-label { font-size: 12px; color: var(--text-dim); margin-top: 4px; }

.why-features { list-style: none; margin: 20px 0 32px; }
.why-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.why-features li:first-child { border-top: 1px solid var(--border); }
.why-feat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(8,145,178,0.1));
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-sky);
}
.why-feat-icon svg { width: 20px; height: 20px; }
.why-feat-title { font-family: 'Noto Sans', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-feat-desc { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* ===== CTA BARS ===== */
.cta-bar {
  padding: 64px 0;
}
.cta-bar-1 { background: linear-gradient(135deg, #0e2a5e, #1a4a9e); }
.cta-bar-2 { background: linear-gradient(135deg, #0c2145, #0e3b7a); }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-text h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.7); }

.cta-buttons { display: flex; gap: 12px; flex-shrink: 0; }

.btn-white {
  background: white;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Noto Sans', sans-serif;
  transition: all 0.2s;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Noto Sans', sans-serif;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

/* ===== NEWSLETTER ===== */
#newsletter {
  background: var(--dark);
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.newsletter-text { flex: 1; }
.newsletter-text h2 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; margin-bottom: 8px; }
.newsletter-text p { font-size: 15px; color: var(--text-dim); }

.newsletter-form { display: flex; gap: 12px; flex: 1; max-width: 480px; }
.newsletter-form input {
  flex: 1;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: var(--text-dim); }
.newsletter-form input:focus { border-color: var(--blue-bright); }
.newsletter-form button {
  background: var(--blue-bright);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Noto Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--blue-electric); }

/* ===== FOOTER ===== */
#footer {
  background: #060b18;
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: var(--text-dim); line-height: 1.7; max-width: 260px; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.2s;
  font-size: 15px;
}
.social-btn:hover { background: var(--blue-bright); border-color: var(--blue-bright); color: white; }

.footer-col h4 { font-family: 'Noto Sans', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-dim); transition: color 0.2s; font-weight: 500; }
.footer-col ul li a:hover { color: var(--blue-sky); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--blue-sky); }

/* ===== MOBILE ===== */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,15,30,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-item { border-bottom: 1px solid var(--border); }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Noto Sans', sans-serif;
  color: var(--white);
  cursor: pointer;
}
.mobile-sub { padding: 8px 0 16px; }
.mobile-sub a { display: block; padding: 8px 16px; font-size: 14px; color: var(--text-mid); transition: color 0.2s; }
.mobile-sub a:hover { color: var(--blue-sky); }
.mobile-cta-wrap { padding: 24px 0; display: flex; gap: 12px; flex-direction: column; }

@media (max-width: 1024px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .pods-grid { grid-template-columns: 1fr; }
  .pod { border-right: none; border-bottom: 1px solid var(--border); }
  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 300px; }
.biz-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 220px;
}
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .news-events-grid { grid-template-columns: 1fr; }
  .team-layout { grid-template-columns: 1fr; gap: 40px; }
  .packages-grid { grid-template-columns: 1fr; }
  .testi-layout { grid-template-columns: 1fr; }
  .testi-image { min-height: 280px; }
  .why-layout { grid-template-columns: 1fr; }
  .why-images { height: 300px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }
  .newsletter-inner { flex-direction: column; gap: 32px; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  #header { padding: 0 16px; }
  .slide-content { padding: 60px 56px 60px; }
  .slide-inner h1 { font-size: 34px; }
  .split-content { padding: 48px 24px; }
  .section { padding: 70px 0; }
  .container { padding: 0 16px; }
.biz-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
}
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .testi-content { padding: 36px 28px; }
  .package-header, .package-body { padding: 28px 24px; }
  .newsletter-form { flex-direction: column; }
  .stat-strip { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
}

.bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, rgba(240,165,0,0.15), rgba(240,165,0,0.05));
  border: 1px solid rgba(240,165,0,0.3);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin: 16px 0;
}

.gradient-noise {
  position: relative;
}
.gradient-noise::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37,99,235,0.12), transparent);
  pointer-events: none;
}

@media (max-width: 640px) {
  .custom-cta[style*="grid"] {
    grid-template-columns: 1fr !important;
  }
  .custom-cta[style*="grid"] > div:last-child {
    min-height: 260px !important;
  }
}

.nav-item {
  position: relative; /* only needed if not already set */
}

.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;       /* generous enough to cover the widest dropdown (Businesses) */
  height: 8px;         /* matches the existing gap in .dropdown's top offset */
  background: transparent;
}
@media (max-width: 1024px) {
  .team-card {
    flex: 0 0 calc(50% - 10px);
  }
}

/* ===== BUSINESS LISTING PAGE ===== */

/* Page header - use this same pattern on other inner pages (news, events, etc.) for consistency.
   Background image comes from pageHeaderImage (falls back to the lighthouse photo) - set inline via
   style="background-image:url(...)" in the template; this class handles position/size/repeat and the
   fallback colour. */
.page-header {
  position: relative;
  padding: 80px 0 80px;
  background-color: var(--navy);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,15,30,.4) 0%, rgba(10,15,30,0.7) 100%);
  pointer-events: none;
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header h1 {
  font-family: 'Noto Sans', sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto;
}

/* Filter bar */
.filter-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
}
.filter-heading h2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.filter-heading p {
  font-size: 15px;
  color: var(--text-dim);
}

.filter-bar {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
}
.filter-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 14px;
  align-items: stretch;
}
.filter-input,
.filter-select {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  height: 100%;
}
.filter-input::placeholder { color: var(--text-dim); }
.filter-input:focus,
.filter-select:focus { border-color: var(--blue-bright); }
.filter-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.filter-submit {
  width: 100%;
  justify-content: center;
  white-space: nowrap;
  border: none;
}

@media (max-width: 900px) {
  .filter-grid { grid-template-columns: 1fr 1fr; }
  .filter-submit { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .filter-grid { grid-template-columns: 1fr; }
}

/* Listing grid + cards (full directory results - distinct from the homepage's overlay-hover
   .biz-card grid, since this needs room for a description and category/area tags) */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .listing-grid { grid-template-columns: 1fr; }
}

.listing-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.listing-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  background: var(--mid);
}
.listing-card-img-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, var(--blue-deep), var(--mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
}

.listing-card-body { padding: 24px; }
.listing-card-title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.listing-card-title a { color: var(--white); transition: color 0.2s; }
.listing-card-title a:hover { color: var(--blue-sky); }
.listing-card-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.listing-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.listing-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.listing-card-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--mid);
}
.listing-card-tags {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.listing-card-cat {
  font-family: 'Noto Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.listing-card-area {
  font-size: 11px;
  color: var(--blue-sky);
  font-weight: 500;
}
.listing-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-electric);
  white-space: nowrap;
  transition: gap 0.2s;
  flex-shrink: 0;
}
.listing-card-link:hover { gap: 8px; }

.listing-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
  font-size: 15px;
}

//* ===== BUSINESS CATEGORY PAGE (additions - assumes business-listing.css is already in place for
   .page-header, .filter-bar, .filter-input/select, .listing-grid, .listing-card, .listing-empty
   etc., which this page reuses as-is) ===== */

.page-header h1 {
  font-family: 'Noto Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* Sponsor badge - pill showing logo + name, replaces the old bare "click the logo" pattern */
.sponsor-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 8px 18px 8px 8px;
  margin-top: 4px;
  transition: all 0.2s;
}
.sponsor-badge:hover {
  background: rgba(37,99,235,0.08);
  border-color: rgba(37,99,235,0.25);
}
.sponsor-badge span {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}
.sponsor-badge img {
  height: 28px;
  width: auto;
  border-radius: 6px;
  display: block;
}
.sponsor-badge strong {
  font-family: 'Noto Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

/* 3-column variant of .filter-grid (category page has no category dropdown, since it's implicit) */
.filter-grid-3 {
  grid-template-columns: 1.4fr 1fr auto;
}
@media (max-width: 640px) {
  .filter-grid-3 { grid-template-columns: 1fr; }
}

/* Long-form SEO content (categoryMainText) - typography for the rich text editor output: headings,
   paragraphs, and bullet lists, styled to match the rest of the dark theme */
.category-content {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.category-content h2,
.category-content h3,
.category-content h4 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 32px 0 12px;
}
.category-content h2:first-child,
.category-content h3:first-child,
.category-content h4:first-child {
  margin-top: 0;
}
.category-content h2 { font-size: 24px; }
.category-content h3 { font-size: 20px; }
.category-content h4 { font-size: 17px; color: var(--blue-sky); }
.category-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.category-content ul,
.category-content ol {
  margin: 0 0 20px;
  padding-left: 20px;
}
.category-content li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.category-content a {
  color: var(--blue-electric);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.category-content a:hover { color: var(--blue-sky); }
.category-content strong { color: var(--white); }
/* ===== ADVERT BARS ===== */

/* Sits directly under the fixed header - margin-top matches #header's height (72px) so it isn't
   hidden behind it. If the header height ever changes, update this to match. */
.ad-bars-wrapper {
  margin-top: 72px;
}

.ad-bar {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background-color: var(--dark);
}

/* Thin separator when both bars are showing, so they don't blend into one block */
.ad-bar + .ad-bar {
  border-top: 1px solid var(--border);
}

.ad-bar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ad-bar-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: none;
}
.ad-bar-img-mobile { display: block; }
.ad-bar-img-desktop { display: none; }

@media (min-width: 768px) {
  .ad-bar-img-mobile { display: none; }
  .ad-bar-img-desktop { display: block; }
}

/* "Want to advertise here?" prompt shown when no image is set */
.ad-bar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 24px;
  text-align: center;
}
.ad-bar-fallback p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}
.ad-bar-fallback:hover p {
  color: var(--blue-sky);
}

@media (max-width: 640px) {
  .ad-bar-fallback p { font-size: 12px; }
}

/* ===== MAP PAGE ===== */

.map-page-container {
  position: relative;
  width: 100%;
  height: 640px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (max-width: 640px) {
  .map-page-container { height: 480px; }
}

/* Google Maps injects #legend into its LEFT_BOTTOM control position on desktop (handled in the
   template's initMap script) - on mobile it stays in normal document flow below the map instead,
   since the map controls area gets cramped at small sizes. */
#legend {
  background: var(--dark);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 20px;
  width: 260px;
  max-width: calc(100vw - 40px);
  max-height: 60vh;
  overflow-y: auto;
  margin: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.legend-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legend-header h5 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  flex: 1;
}
#toggleAll {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-electric);
  cursor: pointer;
  white-space: nowrap;
}
#toggleAll:hover { color: var(--blue-sky); }
#togglekey {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 2px 4px;
  display: flex;
  align-items: center;
}
#togglekey:hover { color: var(--white); }

.legend-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
}
.legend-item span {
  font-size: 13px;
  color: var(--text-mid);
}

/* Toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  inset: 0;
  background-color: var(--glass-border);
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.slider::before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: var(--white);
  border-radius: 50%;
  transition: transform 0.2s;
}
.switch input:checked + .slider {
  background-color: var(--blue-bright);
}
.switch input:checked + .slider::before {
  transform: translateX(16px);
}

/* ===== EVENTS LISTING PAGE (addition - assumes business-listing.css already provides .page-header,
   .filter-bar/.filter-input/.filter-select, .filter-heading, .listing-grid/.listing-card etc.) ===== */

.listing-card-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-sky);
  margin-bottom: 10px;
}

/* ===== BUSINESS PAGE (additions - assumes business-listing.css, business-category.css and the main
   stylesheet are already loaded for .page-header, .listing-grid/.listing-card, .biz-grid/.biz-card,
   .explore-grid/.explore-card, .category-content, .section-header, .team-ctrl etc.) ===== */

.business-hero { text-align: center; }
.business-hero-logo {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid var(--glass-border);
  margin: 0 auto 20px;
  display: block;
  background: var(--dark);
}
.business-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.business-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
}
.business-tag-cat {
  background: rgba(37,99,235,0.12);
  color: var(--blue-sky);
  border-color: rgba(37,99,235,0.25);
}
.business-tag-area {
  background: var(--glass);
  color: var(--text-mid);
}

.business-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .business-detail-grid { grid-template-columns: 1fr; }
}

.business-lead {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Showcase items use the shared .explore-grid component but 2 columns instead of the default 4 */
.showcase-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .showcase-grid { grid-template-columns: 1fr; }
}

/* Contact card */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .contact-card { grid-template-columns: 1fr; }
}
.contact-item {
  background: var(--dark);
  padding: 20px;
}
.contact-item-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.contact-item-value {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  display: block;
}
a.contact-item-value:hover { color: var(--blue-sky); }
.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.contact-socials img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

/* Photo slider */
.business-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.business-slider-track {
  display: flex;
  transition: transform 0.4s ease;
}
.business-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.business-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.business-slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}
.business-slider-arrows .carousel-arrow { pointer-events: all; }
.business-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 40px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--glass-border);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--glass-border);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
}
.lightbox-prev { margin-right: 24px; }
.lightbox-next { margin-left: 24px; }
@media (max-width: 640px) {
  .lightbox-overlay { padding: 16px; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { margin-right: 10px; }
  .lightbox-next { margin-left: 10px; }
}

/* Testimonials carousel (business page - multi-card version of the homepage's rotating single quote) */
.business-testimonials {
  position: relative;
  margin-top: 32px;
  overflow: hidden;
}
.business-testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}
.testimonial-card {
  flex: 0 0 340px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.testimonial-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card-name {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.business-testimonials-arrows {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 640px) {
  .testimonial-card { flex-basis: 100%; }
}

/* ===== MAP AREA PAGE (additions - assumes .page-header, .category-content, .gallery-grid/.gallery-item,
   .lightbox-overlay, .biz-grid/.biz-card, .section-header are already loaded from earlier pages) ===== */

.gallery-item-wrap {
  /* .gallery-grid already provides the grid layout - this just lets each item carry its own
     caption underneath without disturbing the image sizing rules */
}
.gallery-caption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}

.area-secondary-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .area-secondary-grid { grid-template-columns: 1fr; }
}

.area-links-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 96px;
}
.area-links-card h4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
}
.area-links-card ul {
  list-style: none;
}
.area-links-card li {
  border-bottom: 1px solid var(--border);
}
.area-links-card li:last-child {
  border-bottom: none;
}
.area-links-card a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-mid);
  transition: color 0.2s;
}
.area-links-card a:hover {
  color: var(--blue-sky);
}

/* ===== EVENT PAGE (additions - assumes .page-header, .business-detail-grid, .category-content,
   .listing-card-date, .btn-primary are already loaded from earlier pages) ===== */

.event-meta-block {
  margin-bottom: 20px;
}
.event-meta-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.event-meta-block p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.event-map-embed {
  margin-top: 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.event-map-embed iframe {
  width: 100%;
  display: block;
  border: none;
}

.event-hosted-by {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  transition: background 0.2s, border-color 0.2s;
}
.event-hosted-by:hover {
  background: rgba(37,99,235,0.08);
  border-color: rgba(37,99,235,0.25);
}
.event-hosted-by img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.event-hosted-by span {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
}
.event-hosted-by strong {
  display: block;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  color: var(--white);
}

.event-disclaimer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ===== NEWS LISTING PAGE (additions - assumes .page-header, .filter-bar/.filter-grid/.filter-input,
   .pill, .listing-card-title/.listing-card-desc/.listing-card-link, .feed-title, .event-card/
   .event-date-box, .btn-outline are already loaded from earlier pages) ===== */

.news-cat-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
/* .pill has no hover state by default since it started as a static label on the homepage - add one
   now that it's being reused as a clickable filter */
.pill:hover {
  background: rgba(37,99,235,0.2);
  border-color: rgba(37,99,235,0.35);
}

.news-listing-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .news-listing-layout { grid-template-columns: 1fr; }
}

/* Horizontal list card - differs from the grid-style .listing-card since this sits in a single
   column list next to a sidebar, not a multi-column grid */
.news-list-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.news-list-item:first-child { padding-top: 0; }
.news-list-item-img {
  flex: 0 0 220px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--mid);
  display: block;
}
.news-list-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-list-item-body { flex: 1; min-width: 0; }
.news-list-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.news-list-item-tags .pill {
  padding: 4px 12px;
  font-size: 11px;
}
@media (max-width: 640px) {
  .news-list-item { flex-direction: column; }
  .news-list-item-img { flex-basis: auto; }
  .news-list-item-img img { height: 200px; }
}

/* Pagination */
.pagination-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin-top: 40px;
}
.pagination-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}
.pagination-item a:hover {
  background: rgba(37,99,235,0.1);
  border-color: rgba(37,99,235,0.25);
  color: var(--white);
}
.pagination-item.active a {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  color: white;
}
.pagination-item.pagination-dots {
  display: flex;
  align-items: center;
  color: var(--text-dim);
  font-size: 13px;
  padding: 0 4px;
}

/* ===== NEWS ARTICLE PAGE (additions - assumes .business-detail-grid, .category-content, .pill,
   .news-list-item-tags, .gallery-grid, .lightbox-overlay, .biz-grid/.biz-card, .section-header are
   already loaded from earlier pages) ===== */

.article-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.article-author-row img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.article-author-name {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.article-author-date {
  font-size: 12px;
  color: var(--text-dim);
}

.article-sponsor {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 28px;
  text-align: center;
}
.article-sponsor img {
  max-width: 100%;
  border-radius: 8px;
}

.article-quiz-embed {
  margin-top: 24px;
}

/* ===== CONTACT PAGE (additions - assumes .page-header, .pods-grid/.pod, .filter-input/.filter-select,
   .btn-primary/.btn-outline, .section-header are already loaded from earlier pages) ===== */

.contact-form {
  max-width: 800px;
  margin: 40px auto 0;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form-grid select.filter-select {
  height: auto;
  padding: 12px 40px 12px 16px;
}
.contact-form-message {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 140px;
  font-family: 'DM Sans', sans-serif;
}
@media (max-width: 640px) {
  .contact-form-grid { grid-template-columns: 1fr; }
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .next-steps-grid { grid-template-columns: 1fr; }
}

.option-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.option-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.option-card-body {
  padding: 0 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.option-card-icon {
  width: 56px;
  height: 56px;
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-bright), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: -28px auto 20px;
  border: 4px solid var(--dark);
  position: relative;
  z-index: 2;
}
.option-card h3 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.option-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}
.option-card .btn-outline {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ===== NEW MARKETING/ENQUIRY PAGES (additions - assumes .page-header, .packages-grid/.package-card,
   .filter-input/.filter-select, .contact-form, .pods-grid/.pod, .explore-grid/.explore-card,
   .gallery-grid, .btn-primary/.btn-outline are already loaded) ===== */

/* Honeypot field for the self-contained mail forms (Share Event/News, Add Your Business) - hidden
   from real visitors, left visible to bots that fill in every field */
.hp-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* 3-column variant of the homepage's .packages-grid (which defaults to 2) */
.packages-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .packages-grid-3 { grid-template-columns: 1fr; }
}

/* Stats row (years trading, sites built etc.) - same visual language as the homepage's .why-stats */
.stats-row {
  display: flex;
  gap: 24px;
  margin: 32px 0;
}
.stats-row .stat {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 12px;
}
.stats-row .stat-num {
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--blue-sky);
}
.stats-row .stat-label {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}
@media (max-width: 640px) {
  .stats-row { flex-wrap: wrap; }
  .stats-row .stat { flex-basis: calc(50% - 12px); }
}

/* Requirements checklist (Add Your Business page) */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0;
}
@media (max-width: 640px) {
  .checklist-grid { grid-template-columns: 1fr; }
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.checklist-item:hover {
  background: rgba(37,99,235,0.06);
  border-color: rgba(37,99,235,0.2);
}
.checklist-item input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--blue-bright);
  flex-shrink: 0;
  cursor: pointer;
}
.checklist-item-text {
  font-size: 14px;
  color: var(--text-mid);
}
.checklist-item-text strong {
  display: block;
  color: var(--white);
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  margin-bottom: 2px;
}

.requirements-summary {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  font-size: 13px;
  color: var(--text-dim);
  min-height: 80px;
  white-space: pre-line;
  margin-bottom: 24px;
}
.requirements-summary:empty::before {
  content: "Tick the boxes above and we'll summarise what you need here.";
  color: var(--text-dim);
  font-style: italic;
}

/* Guidelines / fair-use notice box (Share Your News page) */
.guidelines-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px;
  margin: 40px 0;
}
.guidelines-box h4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}
.guidelines-box p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}
.guidelines-box p:last-child { margin-bottom: 0; }

/* ===== NEWS LISTING PAGE (additions - assumes .page-header, .filter-bar/.filter-grid/.filter-input,
   .pill, .listing-card-title/.listing-card-desc/.listing-card-link, .feed-title, .event-card/
   .event-date-box, .btn-outline are already loaded from earlier pages) ===== */

.news-cat-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
/* .pill has no hover state by default since it started as a static label on the homepage - add one
   now that it's being reused as a clickable filter */
.pill:hover {
  background: rgba(37,99,235,0.2);
  border-color: rgba(37,99,235,0.35);
}
/* Highlights the current category when browsing a News Category page */
.pill.active {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  color: white;
}

.news-listing-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .news-listing-layout { grid-template-columns: 1fr; }
}

/* Horizontal list card - differs from the grid-style .listing-card since this sits in a single
   column list next to a sidebar, not a multi-column grid */
.news-list-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.news-list-item:first-child { padding-top: 0; }
.news-list-item-img {
  flex: 0 0 220px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--mid);
  display: block;
}
.news-list-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-list-item-body { flex: 1; min-width: 0; }
.news-list-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.news-list-item-tags .pill {
  padding: 4px 12px;
  font-size: 11px;
}
@media (max-width: 640px) {
  .news-list-item { flex-direction: column; }
  .news-list-item-img { flex-basis: auto; }
  .news-list-item-img img { height: 200px; }
}

/* Pagination */
.pagination-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin-top: 40px;
}
.pagination-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}
.pagination-item a:hover {
  background: rgba(37,99,235,0.1);
  border-color: rgba(37,99,235,0.25);
  color: var(--white);
}
.pagination-item.active a {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  color: white;
}
.pagination-item.pagination-dots {
  display: flex;
  align-items: center;
  color: var(--text-dim);
  font-size: 13px;
  padding: 0 4px;
}

/* ===== NEW MARKETING/ENQUIRY PAGES (additions - assumes .page-header, .packages-grid/.package-card,
   .filter-input/.filter-select, .contact-form, .pods-grid/.pod, .explore-grid/.explore-card,
   .gallery-grid, .btn-primary/.btn-outline are already loaded) ===== */

/* Honeypot field for the self-contained mail forms (Share Event/News, Add Your Business) - hidden
   from real visitors, left visible to bots that fill in every field */
.hp-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* 3-column variant of the homepage's .packages-grid (which defaults to 2) */
.packages-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .packages-grid-3 { grid-template-columns: 1fr; }
}

/* Stats row (years trading, sites built etc.) - same visual language as the homepage's .why-stats */
.stats-row {
  display: flex;
  gap: 24px;
  margin: 32px 0;
}
.stats-row .stat {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 12px;
}
.stats-row .stat-num {
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--blue-sky);
}
.stats-row .stat-label {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}
@media (max-width: 640px) {
  .stats-row { flex-wrap: wrap; }
  .stats-row .stat { flex-basis: calc(50% - 12px); }
}

/* Requirements checklist (Add Your Business page) */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0;
}
@media (max-width: 640px) {
  .checklist-grid { grid-template-columns: 1fr; }
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.checklist-item:hover {
  background: rgba(37,99,235,0.06);
  border-color: rgba(37,99,235,0.2);
}
.checklist-item input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--blue-bright);
  flex-shrink: 0;
  cursor: pointer;
}
.checklist-item-text {
  font-size: 14px;
  color: var(--text-mid);
}
.checklist-item-text strong {
  display: block;
  color: var(--white);
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  margin-bottom: 2px;
}

.requirements-summary {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  font-size: 13px;
  color: var(--text-dim);
  min-height: 80px;
  white-space: pre-line;
  margin-bottom: 24px;
}
.requirements-summary:empty::before {
  content: "Tick the boxes above and we'll summarise what you need here.";
  color: var(--text-dim);
  font-style: italic;
}

/* ===== STEP-BY-STEP FORM (Add Your Business page) ===== */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.step-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}
.step-dot.active {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  color: white;
}
.step-dot.done {
  background: rgba(37,99,235,0.15);
  border-color: rgba(37,99,235,0.3);
  color: var(--blue-sky);
}
.step-dot-wrap span {
  font-size: 12px;
  color: var(--text-dim);
  white-space: nowrap;
}
.step-line {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}
@media (max-width: 640px) {
  .step-line { width: 20px; }
  .step-dot-wrap span { display: none; }
}

.step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

.form-recap {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.form-recap p {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 4px;
}
.form-recap p:last-child { margin-bottom: 0; }
.form-recap strong { color: var(--white); }

/* Guidelines / fair-use notice box (Share Your News page) */
.guidelines-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px;
  margin: 40px 0;
}
.guidelines-box h4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}
.guidelines-box p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}
.guidelines-box p:last-child { margin-bottom: 0; }

.explore-grid--two-col {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .explore-grid--two-col {
        grid-template-columns: 1fr;
    }
}