/* ==========================================================================
   DESIGN TOKENS
   White #FFFFFF · Ink #0A0E12 · Navy #0A2540 · Navy Deep #071A30
   WhatsApp Green #25D366 · Green Dark #1DA851 · Mist (secondary text) #64748B
   Display/body: Poppins · Scoreboard numerals/labels: Roboto Mono
   ========================================================================== */
:root {
  --white: #FFFFFF;
  --ink: #0A0E12;
  --navy: #0A2540;
  --navy-deep: #071A30;
  --green: #25D366;
  --green-dark: #1DA851;
  --mist: #64748B;
  --line: #E5E9F0;

  --font-display: 'Poppins', sans-serif;
  --font-mono: 'Roboto Mono', monospace;

  --radius-pill: 999px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --shadow-soft: 0 10px 30px rgba(10, 37, 64, 0.12);
  --shadow-header: 0 4px 20px rgba(10, 14, 18, 0.08);
  --shadow-card: 0 8px 24px rgba(10, 37, 64, 0.08);
  --shadow-card-hover: 0 18px 40px rgba(10, 37, 64, 0.16);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-green: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  --gradient-navy: linear-gradient(135deg, #0A2540 0%, #071A30 100%);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   RESET / BASE
   ========================================================================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  padding:10px;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-header);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark { border-radius: 8px; }

.brand-name {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.btn-join {
  background: var(--gradient-green);
  color: var(--white);
  border: none;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-join:hover,
.btn-join:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.45);
}

.btn-join:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}

/* ==========================================================================
   TICKER — signature scoreboard strip
   ========================================================================== */
.ticker {
  background: var(--navy-deep);
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(37, 211, 102, 0.25);
  border-bottom: 1px solid rgba(37, 211, 102, 0.25);
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 10px 0;
  animation: ticker-scroll 32s linear infinite;
  will-change: transform;
}

.ticker-item {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #C9D6E3;
  white-space: nowrap;
}

.ticker-dot {
  color: var(--green);
  font-size: 0.9rem;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(rgba(7, 26, 48, 0.72), rgba(7, 26, 48, 0.72)),
    url('../images/banner.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}

@supports (-webkit-touch-callout: none) {
  /* iOS Safari does not support background-attachment: fixed well */
  .hero { background-attachment: scroll; }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.05) 0px,
    rgba(37, 211, 102, 0.05) 40px,
    rgba(255, 255, 255, 0.015) 40px,
    rgba(255, 255, 255, 0.015) 80px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  animation: fade-up 0.9s ease both;
}

.hero-heading {
  color: var(--white);
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.hero-subtext {
  color: #DCE6F0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 34px;
}

.btn-cta {
  background: var(--gradient-green);
  color: var(--white);
  border: none;
  padding: 17px 42px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-cta:hover,
.btn-cta:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5);
}

.btn-cta:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #fff;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-copy {
  color: #8CA3BC;
  font-size: 0.85rem;
  margin: 0;
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(7, 14, 24, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 34px 36px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transform: scale(0.9);
  transition: transform var(--transition);
}

.modal-overlay.is-open .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--mist);
  transition: color var(--transition), transform var(--transition);
}

.modal-close:hover { color: var(--ink); transform: rotate(90deg); }

.modal-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
}

.modal-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--mist);
  margin: 0 0 28px;
}

.btn-whatsapp {
  display: inline-block;
  width: 100%;
  background: var(--gradient-green);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 0;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   SEAM DIVIDER — stitched cricket-ball line used as a structural break
   ========================================================================== */
.seam-divider {
  background: var(--white);
  line-height: 0;
}

.seam-divider svg {
  display: block;
  width: 100%;
  height: 26px;
}

/* ==========================================================================
   SHARED SECTION SCAFFOLDING
   ========================================================================== */
.section { padding: 96px 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.eyebrow-light { color: var(--green); }

.section-heading {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0;
}

.section-heading-light { color: var(--white); }

/* Scroll reveal (progressively enhanced via JS; content visible without it) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   SECTION 2 — WHY JOIN US
   ========================================================================== */
.why-join { background: var(--white); }

.why-card {
  height: 100%;
  text-align: center;
  padding: 34px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.why-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #123A63, #071A30 72%);
  color: var(--green);
  font-size: 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(37, 211, 102, 0.22);
}

/* Stitched "seam" cross, evoking a cricket ball */
.why-icon::before,
.why-icon::after {
  content: '';
  position: absolute;
  top: -15%;
  bottom: -15%;
  left: 50%;
  width: 0;
  border-left: 2px dashed rgba(37, 211, 102, 0.55);
}
.why-icon::before { transform: translateX(-50%) rotate(24deg) scaleY(1.3); }
.why-icon::after  { transform: translateX(-50%) rotate(-24deg) scaleY(1.3); }
.why-icon i { position: relative; z-index: 2; }

.why-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}

.why-text {
  font-size: 0.88rem;
  color: var(--mist);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   SECTION 3 — SPORTS COVERAGE
   ========================================================================== */
.coverage { background: #F4F7FB; }

.sport-card {
  height: 100%;
  padding: 28px 20px;
  text-align: center;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.sport-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--green);
}

.sport-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #E9F7EF, #CFEFDD 78%);
  color: var(--green-dark);
  font-size: 1.2rem;
}

.sport-icon::before,
.sport-icon::after {
  content: '';
  position: absolute;
  top: -15%;
  bottom: -15%;
  left: 50%;
  width: 0;
  border-left: 1.5px dashed rgba(10, 37, 64, 0.32);
}
.sport-icon::before { transform: translateX(-50%) rotate(22deg) scaleY(1.3); }
.sport-icon::after  { transform: translateX(-50%) rotate(-22deg) scaleY(1.3); }
.sport-icon i { position: relative; z-index: 2; }

.sport-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 6px;
}

.sport-text {
  font-size: 0.8rem;
  color: var(--mist);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   SECTION 4 — WHAT YOU WILL GET
   ========================================================================== */
.get-section { background: var(--white); }

.get-illustration { width: 100%; max-width: 380px; display: block; margin: 0 auto; }

.check-list {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}

.check-list i {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-green);
  color: var(--white);
  font-size: 0.7rem;
}

/* ==========================================================================
   SECTION 5 — FEATURED TOURNAMENTS (glassmorphism on navy)
   ========================================================================== */
.tournaments {
  background: var(--gradient-navy);
  position: relative;
}

.tournament-card {
  height: 100%;
  padding: 30px 16px;
  text-align: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.tournament-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--green);
}

.tournament-card i {
  font-size: 1.5rem;
  color: var(--green);
}

.tournament-card span {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ==========================================================================
   SECTION 6 — HOW IT WORKS (timeline)
   ========================================================================== */
.how-it-works { background: #F4F7FB; }

.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.timeline-step {
  flex: 1 1 220px;
  max-width: 320px;
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.timeline-number {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-green);
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.1rem;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 8px;
}

.timeline-text {
  font-size: 0.85rem;
  color: var(--mist);
  line-height: 1.6;
  margin: 0;
}

.timeline-arrow {
  align-self: center;
  color: var(--green-dark);
  font-size: 1.3rem;
  margin-top: 40px;
}

/* ==========================================================================
   SECTION 7 — LIVE UPDATE PREVIEW (WhatsApp-style bubbles)
   ========================================================================== */
.live-preview { background: var(--white); }

.chat-mock {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #E9F7EF;
}

.chat-bubble {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.chat-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0 0 6px;
}

.chat-line {
  font-size: 0.86rem;
  color: var(--ink);
  margin: 0 0 4px;
}

.chat-link { color: var(--green-dark); font-weight: 600; }

.chat-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  background: rgba(37, 211, 102, 0.14);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chat-tag-muted {
  background: rgba(100, 116, 139, 0.14);
  color: var(--mist);
}

/* ==========================================================================
   SECTION 8 — TESTIMONIALS
   ========================================================================== */
.testimonials { background: #F4F7FB; }

.testimonial-card {
  height: 100%;
  padding: 32px 26px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.stars {
  color: var(--green);
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--ink);
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 16px;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mist);
  margin: 0;
}

/* ==========================================================================
   SECTION 9 — FINAL CTA
   ========================================================================== */
.final-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
 background-image:
linear-gradient(rgba(7, 26, 48, 0.8), rgba(7, 26, 48, 0.82)),
url('../images/cta.webp');
  background-size: cover;
  background-position: center;
}

.final-cta-content { position: relative; z-index: 2; }

.final-cta-heading {
  color: var(--white);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 16px;
}

.final-cta-text {
  color: #DCE6F0;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
  .hero { background-attachment: scroll; }
}

@media (max-width: 768px) {
  .header-inner { height: 66px; }
  .brand-name { font-size: 1.1rem; }
  .btn-join { padding: 10px 20px; font-size: 0.88rem; }
  .hero-content { padding: 0 8px; }
  .btn-cta { padding: 15px 34px; font-size: 1rem; }
  .modal-box { padding: 34px 24px 28px; }
}

@media (max-width: 480px) {
  .ticker-item { font-size: 0.65rem; }
  .hero-heading { font-size: 1.8rem; }
  .hero-subtext { font-size: 0.95rem; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .check-list { grid-template-columns: 1fr; }
  .timeline { flex-direction: column; align-items: center; }
  .timeline-arrow { transform: rotate(90deg); margin-top: 0; }
  .final-cta { padding: 80px 0; background-attachment: scroll; }
}

/* ==========================================================================
   INNER PAGE HERO (About / Terms / Privacy / Contact)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 90px 0 60px;
  text-align: center;
  background: var(--gradient-navy);
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.05) 0px,
    rgba(37, 211, 102, 0.05) 40px,
    rgba(255, 255, 255, 0.015) 40px,
    rgba(255, 255, 255, 0.015) 80px
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.page-hero-heading {
  color: var(--white);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.page-hero-subtext {
  color: #DCE6F0;
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #9FB4CC;
}

.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ==========================================================================
   INNER PAGE CONTENT
   ========================================================================== */
.page-content { background: var(--white); padding: 80px 0; }

.content-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.content-wrap h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 40px 0 14px;
}

.content-wrap h2:first-child { margin-top: 0; }

.content-wrap p {
  color: var(--mist);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 16px;
}

.content-wrap ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--mist);
  line-height: 1.8;
}

.content-wrap ul li { margin-bottom: 8px; }

.content-wrap strong { color: var(--navy); }

.updated-note {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--green-dark);
  background: rgba(37, 211, 102, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 30px;
}

/* Contact info cards */
.contact-grid { margin-top: 10px; }

.contact-card {
  height: 100%;
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-green);
  color: var(--white);
  font-size: 1.3rem;
}

.contact-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.contact-text { color: var(--mist); font-size: 0.92rem; margin: 0 0 4px; }

.contact-text a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-text a:hover { text-decoration: underline; }

/* ==========================================================================
   FOOTER LINKS (added for inner-page navigation)
   ========================================================================== */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  margin: 4px 0 6px;
}

.footer-links a {
  color: var(--mist);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--green-dark); }

.footer-links-dot {
  color: var(--line);
  font-size: 0.7rem;
}

@media (max-width: 480px) {
  .page-hero { padding: 70px 0 44px; }
  .page-content { padding: 56px 0; }
}
