/* =========================================================
   SheCycling — Custom Styles
   Brand: Pink #EC008C, Cyan #2DCDD8
   ========================================================= */

:root {
  --sc-pink: #EC008C;
  --sc-pink-dark: #C40076;
  --sc-pink-light: #FF4FB0;
  --sc-cyan: #2DCDD8;
  --sc-cyan-dark: #1AA8B3;
  --sc-cyan-light: #6FE3EB;
  --sc-dark: #1a1a2e;
  --sc-gray: #6c757d;
  --sc-light: #f8f9fc;
  --sc-gradient: linear-gradient(135deg, #EC008C 0%, #2DCDD8 100%);
  --sc-gradient-soft: linear-gradient(135deg, rgba(236,0,140,0.05) 0%, rgba(45,205,216,0.05) 100%);
  --sc-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
  --sc-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --sc-shadow-lg: 0 20px 50px rgba(236, 0, 140, 0.15);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Plus Jakarta Sans', 'Poppins', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: #2d2d3f;
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  color: var(--sc-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.15; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); line-height: 1.2; }
h3 { font-size: 1.2rem; line-height: 1.35; }
h4 { font-size: 1.05rem; line-height: 1.4; }
h5 { font-size: 0.95rem; line-height: 1.4; }

p {
  color: #555;
  font-size: 0.975rem;
  line-height: 1.65;
}

a {
  color: var(--sc-pink);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: var(--sc-cyan-dark); }

.text-gradient {
  background: var(--sc-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-pink { color: var(--sc-pink) !important; }
.text-cyan { color: var(--sc-cyan-dark) !important; }
.bg-pink { background: var(--sc-pink) !important; }
.bg-cyan { background: var(--sc-cyan) !important; }
.bg-gradient-sc { background: var(--sc-gradient) !important; }
.bg-soft { background: var(--sc-gradient-soft) !important; }

/* ---------- Buttons ---------- */
.btn {
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--sc-gradient);
  border: none;
  color: #fff;
  box-shadow: 0 6px 20px rgba(236, 0, 140, 0.25);
}
.btn-primary:hover, .btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(236, 0, 140, 0.4);
  background: var(--sc-gradient);
  color: #fff;
}

.btn-outline-pink {
  border: 2px solid var(--sc-pink);
  color: var(--sc-pink);
  background: transparent;
}
.btn-outline-pink:hover {
  background: var(--sc-pink);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--sc-pink);
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.btn-light:hover {
  color: var(--sc-pink-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
}

/* ---------- Navbar ---------- */
.navbar.navbar.fixed-top {
  padding: 0.8rem 0;
  transition: all 0.35s ease;
  background: #ffffff !important;
  z-index: 1050 !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar.navbar.scrolled {
  padding: 0.55rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
  line-height: 1;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: height 0.3s ease;
}

.navbar.scrolled .navbar-brand img { height: 42px; }

.navbar-brand .brand-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--sc-pink);
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.navbar-brand .brand-text span {
  color: var(--sc-cyan-dark);
  font-weight: 600;
}

.navbar .nav-link {
  font-weight: 500;
  color: #333 !important;
  margin: 0 0.4rem;
  position: relative;
  padding: 0.5rem 0.8rem !important;
  font-size: 0.95rem;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.3rem;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--sc-gradient);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 60%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--sc-pink) !important;
}

.navbar .btn-donate {
  background: var(--sc-gradient);
  color: #fff !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px;
  margin-left: 0.5rem;
  box-shadow: 0 4px 14px rgba(236, 0, 140, 0.25);
}
.navbar .btn-donate::after { display: none; }
.navbar .btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(236, 0, 140, 0.35);
  color: #fff !important;
}

.navbar-toggler {
  border: 1px solid #e8e8ef;
  background: #ffffff;
  color: var(--sc-pink);
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  line-height: 1;
  transition: all 0.2s ease;
}

.navbar-toggler:hover {
  border-color: var(--sc-pink);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(236, 0, 140, 0.15);
  outline: none;
}

.navbar-toggler i {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--sc-pink);
  display: block;
}

/* ---------- Mobile collapsed menu ---------- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.75rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f5;
    padding: 0.6rem 0.4rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .navbar .nav-link {
    margin: 0 !important;
    padding: 0.85rem 1.1rem !important;
    border-radius: 10px;
    font-size: 1rem;
  }

  .navbar .nav-link::after { display: none; }

  .navbar .nav-link:hover,
  .navbar .nav-link.active {
    background: var(--sc-gradient-soft);
    color: var(--sc-pink) !important;
  }

  .navbar .btn-donate {
    margin: 0.5rem 0.4rem 0.2rem !important;
    padding: 0.75rem 1.2rem !important;
    text-align: center;
  }

  .navbar-brand .brand-text { font-size: 1.35rem; }
  .navbar-brand img { height: 44px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff5fa 0%, #f0fcfd 100%);
  overflow: hidden;
  padding: 9rem 0 4rem;
}

/* keep the popped-out portrait clear of the fixed navbar */
.hero-image-wrap { padding-top: 2rem; }

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 0, 140, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 205, 216, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(236, 0, 140, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sc-pink-dark);
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero h1 .highlight {
  background: var(--sc-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .lead {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image-wrap {
  position: relative;
  text-align: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  background: var(--sc-gradient);
  box-shadow: 0 30px 80px rgba(236, 0, 140, 0.3);
  /* no overflow:hidden — portrait head pops above the box */
}

/* group-photo variant fills & clips to the rounded box */
.hero-visual > img:not(.hero-portrait) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  border-radius: inherit;
}

/* transparent-bg portrait: bottom anchored inside the box, head pops out the top */
.hero-visual .hero-portrait {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 125%;
  width: auto;
  max-width: 125%;
  object-fit: contain;
  object-position: bottom center;
}

.hero-visual i {
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.95);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes morph {
  0%, 100% { border-radius: 50% 50% 42% 42% / 48% 48% 10% 10%; }
  50%      { border-radius: 42% 42% 50% 50% / 10% 10% 48% 48%; }
}

.hero-floating {
  position: absolute;
  background: #fff;
  padding: 1rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: floaty 4s ease-in-out infinite;
}

.hero-floating .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sc-gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sc-pink);
  font-size: 1.4rem;
}

.hero-floating .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--sc-dark);
  font-size: 1.3rem;
  line-height: 1;
}

.hero-floating .label {
  font-size: 0.8rem;
  color: #777;
}

.hero-float-1 { top: 10%; left: -5%; animation-delay: 0s; }
.hero-float-2 { bottom: 15%; right: -5%; animation-delay: 1.5s; }
.hero-float-3 { bottom: 30%; left: 0; animation-delay: 3s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 991px) {
  .hero { min-height: auto; padding: 8rem 0 4rem; }
  .hero-image-wrap { margin-top: 3rem; }
  .hero-floating { display: none; }
}

/* ---------- Section common ---------- */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title .eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sc-pink);
  margin-bottom: 0.8rem;
}

.section-title h2 { margin-bottom: 1rem; }

.section-title p {
  max-width: 640px;
  margin: 0 auto;
  color: #666;
  font-size: 1rem;
  line-height: 1.65;
}

/* ---------- Stats ---------- */
.stats-section {
  background: var(--sc-gradient);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.stats-section .container { position: relative; z-index: 2; }

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-item .number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.6rem;
  color: #fff;
}

.stat-item .label {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.95;
}

.stat-item .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}

/* ---------- Feature / Initiative cards ---------- */
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid #f0f0f5;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--sc-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sc-shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card .icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--sc-gradient-soft);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--sc-pink);
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.feature-card:hover .icon-wrap {
  background: var(--sc-gradient);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.7rem; }

.feature-card p { font-size: 0.95rem; margin-bottom: 0; color: #666; }

/* ---------- About / Vision split ---------- */
.split-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sc-gradient);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sc-shadow-lg);
}

/* Landscape variant for programme photos (3:2 — much less vertical crop) */
.split-image.landscape { aspect-ratio: 3 / 2; }
.split-image.landscape .badge-card { bottom: 1.2rem; left: 1.2rem; right: auto; max-width: 70%; }

.split-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-image > i { font-size: 10rem; color: rgba(255,255,255,0.9); position: relative; z-index: 1; }

.split-image .badge-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: #fff;
  padding: 1.4rem 1.6rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.split-image .badge-card .icon {
  width: 50px;
  height: 50px;
  background: var(--sc-gradient);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.split-image .badge-card strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  color: var(--sc-dark);
  line-height: 1;
}

.split-image .badge-card span { font-size: 0.85rem; color: #777; }

.split-content h2 { margin-bottom: 1.2rem; }

.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #444;
}

.feature-list li i {
  color: var(--sc-pink);
  background: var(--sc-gradient-soft);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 2px;
}

/* ---------- Training timeline ---------- */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--sc-gradient);
  border-radius: 3px;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem 2.5rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) { left: 50%; }

.timeline-item .timeline-content {
  background: #fff;
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: var(--sc-shadow-sm);
  border: 1px solid #f0f0f5;
  transition: all 0.3s ease;
}

.timeline-item .timeline-content:hover {
  box-shadow: var(--sc-shadow-md);
  transform: translateY(-4px);
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--sc-pink);
  top: 2.2rem;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(236, 0, 140, 0.15);
}

.timeline-item:nth-child(odd)::before { right: -10px; }
.timeline-item:nth-child(even)::before { left: -10px; }

.timeline-item .day-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sc-pink);
  margin-bottom: 0.5rem;
}

.timeline-item h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

@media (max-width: 767px) {
  .timeline::before { left: 20px; }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 50px;
    padding-right: 0;
  }
  .timeline-item::before { left: 10px !important; right: auto !important; }
}

/* ---------- News cards ---------- */
.news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #f0f0f5;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sc-shadow-md);
  border-color: transparent;
}

.news-card .img {
  position: relative;
  height: 220px;
  background: var(--sc-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-card .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .img img { transform: scale(1.05); }

.news-card .img i {
  font-size: 5rem;
  color: rgba(255,255,255,0.85);
  transition: transform 0.5s ease;
}

.news-card:hover .img i { transform: scale(1.15) rotate(-5deg); }

.news-card .img .tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #fff;
  color: var(--sc-pink);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.news-card .body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card .meta {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 0.8rem;
}

.news-card .meta i { color: var(--sc-pink); margin-right: 0.3rem; }

.news-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  line-height: 1.35;
}

.news-card p {
  font-size: 0.92rem;
  color: #666;
  margin-bottom: 1rem;
  flex: 1;
}

.news-card .read-more {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sc-pink);
}

.news-card .read-more i { transition: transform 0.3s ease; }
.news-card .read-more:hover i { transform: translateX(4px); }

/* ---------- Quote / testimonial ---------- */
.quote-section {
  background: linear-gradient(135deg, #fff5fa 0%, #f0fcfd 100%);
  position: relative;
}

.quote-card {
  background: #fff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--sc-shadow-md);
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote-card .quote-mark {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--sc-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(236, 0, 140, 0.3);
}

.quote-card blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--sc-dark);
  line-height: 1.5;
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.quote-card .author {
  font-weight: 600;
  color: var(--sc-pink);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.quote-card .author-role { font-size: 0.88rem; color: #888; }

/* ---------- Page header ---------- */
.page-header {
  background: linear-gradient(135deg, #fff5fa 0%, #f0fcfd 100%);
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236,0,140,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45,205,216,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header .container { position: relative; z-index: 2; }

.page-header h1 { margin-bottom: 1rem; }

.breadcrumb-custom {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #666;
}

.breadcrumb-custom a { color: var(--sc-pink); font-weight: 500; }
.breadcrumb-custom .sep { margin: 0 0.6rem; color: #ccc; }

/* ---------- Locations grid ---------- */
.location-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #f0f0f5;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.location-card:hover {
  border-color: var(--sc-pink);
  transform: translateY(-3px);
  box-shadow: var(--sc-shadow-sm);
}

.location-card .num {
  width: 56px;
  height: 56px;
  background: var(--sc-gradient);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.location-card .info h5 {
  margin: 0;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--sc-dark);
}

.location-card .info span { font-size: 0.85rem; color: #888; }

/* ---------- District cards ---------- */
.district-card {
  background: var(--sc-gradient);
  color: #fff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--sc-shadow-md);
  transition: transform 0.3s ease;
}

.district-card:hover { transform: translateY(-5px); }

.district-card .number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.district-card .name {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--sc-gradient);
  color: #fff;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '\F564';
  font-family: 'bootstrap-icons';
  position: absolute;
  font-size: 22rem;
  right: -3rem;
  bottom: -5rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}

.cta-strip h2 { color: #fff; margin-bottom: 0.6rem; }

.cta-strip p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ---------- Contact ---------- */
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #f0f0f5;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--sc-shadow-md);
}

.contact-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  background: var(--sc-gradient);
  color: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.contact-card h4 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.contact-card p { font-size: 0.95rem; margin-bottom: 0; color: #666; }

.form-control {
  border: 1.5px solid #e8e8ef;
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.form-control:focus {
  border-color: var(--sc-pink);
  box-shadow: 0 0 0 4px rgba(236, 0, 140, 0.1);
}

.form-label { font-weight: 500; font-size: 0.92rem; color: #444; }

/* ---------- Footer ---------- */
.footer {
  background: #0e0e1a;
  color: #b8b8cc;
  padding: 5rem 0 0;
  position: relative;
}

.footer h5 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  letter-spacing: 0.5px;
}

.footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.footer .footer-brand:hover { color: #fff; }

.footer .footer-brand img {
  height: 50px;
  width: auto;
}

.footer .footer-brand .wm-accent { color: var(--sc-cyan); font-weight: 600; }

.footer p { color: #b8b8cc; font-size: 0.92rem; line-height: 1.7; }

.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 0.7rem; }

.footer ul li a {
  color: #b8b8cc;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer ul li a:hover {
  color: var(--sc-pink-light);
  padding-left: 4px;
}

.footer .contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.footer .contact-line i {
  color: var(--sc-pink);
  font-size: 1.05rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer .social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background: var(--sc-gradient);
  transform: translateY(-3px);
  padding-left: 0;
}

.footer .footer-bottom {
  margin-top: 4rem;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
  color: #888;
}

.footer .footer-bottom a { color: var(--sc-pink-light); }

/* ---------- Misc ---------- */
.divider-wave {
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,32L60,32C120,32,240,32,360,37.3C480,43,600,53,720,48C840,43,960,21,1080,16C1200,11,1320,21,1380,26.7L1440,32L1440,60L0,60Z'/%3E%3C/svg%3E") no-repeat center bottom / cover;
}

.bg-light-soft { background: #fafbfd; }

/* Scroll-to-top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--sc-gradient);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 22px rgba(236,0,140,0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); }

/* Selection */
::selection { background: var(--sc-pink); color: #fff; }

/* ========== Pagination (themed) ========== */
.pagination {
  --bs-pagination-color: #555;
  --bs-pagination-hover-color: var(--sc-pink);
  --bs-pagination-hover-bg: rgba(236, 0, 140, 0.08);
  --bs-pagination-hover-border-color: transparent;
  --bs-pagination-focus-color: var(--sc-pink);
  --bs-pagination-focus-bg: rgba(236, 0, 140, 0.08);
  --bs-pagination-focus-box-shadow: 0 0 0 0.2rem rgba(236, 0, 140, 0.18);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: var(--sc-pink);
  --bs-pagination-active-border-color: transparent;
  --bs-pagination-disabled-color: #b8b8c8;
  --bs-pagination-border-color: #ececf3;
  --bs-pagination-border-radius: 50rem;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.pagination .page-item .page-link,
.pagination .page-item > span.page-link {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  border: 1.5px solid var(--bs-pagination-border-color);
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0 0.8rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.pagination .page-item .page-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(236, 0, 140, 0.12);
  border-color: rgba(236, 0, 140, 0.4);
}
.pagination .page-item.active .page-link,
.pagination .page-item.active > span.page-link {
  background: var(--sc-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(236, 0, 140, 0.28);
}
.pagination .page-item.disabled .page-link {
  background: transparent;
  color: var(--bs-pagination-disabled-color);
  border-color: #f0f0f5;
  box-shadow: none;
}
.pagination .page-item.disabled .page-link:hover { transform: none; }
