/* =========================================================
   SUNMASTER MAURITIUS — Main Stylesheet
   Clean, modern, fast-loading. Mobile-first.
   ========================================================= */

:root {
  /* Sunmaster Brand (per brand guidelines) */
  --primary:        #CC3300;   /* Burnt Orange — Sunmaster brand */
  --primary-dark:   #A82800;
  --primary-light:  #FFE6DD;

  /* User-requested accents (green, blue, yellow) */
  --accent-green:   #2E7D32;
  --accent-blue:    #1976D2;
  --accent-yellow:  #FBC02D;
  --green-light:    #E8F5E9;
  --blue-light:     #E3F2FD;
  --yellow-light:   #FFF8E1;

  /* Neutrals */
  --dark:           #2B2B2B;
  --gray-700:       #4A4A4A;
  --gray-500:       #888;
  --gray-300:       #D0D0D0;
  --gray-100:       #F5F5F5;
  --bg:             #FFFFFF;

  /* WhatsApp green */
  --wa-green:       #25D366;

  /* Layout */
  --container:      1200px;
  --radius:         10px;
  --radius-lg:      16px;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.06);
  --shadow:         0 6px 20px rgba(0,0,0,.08);
  --shadow-lg:      0 12px 32px rgba(0,0,0,.12);
  --transition:     all .25s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--bg);
  overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: .5em;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1em; }

ul, ol { margin: 0 0 1em 1.25em; }
li { margin-bottom: .35em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.hide-sm { display: inline; }
@media (max-width: 640px) { .hide-sm { display: none; } }

/* ============================ TOP BAR ============================ */
.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 0.85rem;
}
.topbar a { color: #fff; }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left span { margin-right: 16px; }
.topbar-right { display: flex; gap: 6px; }
.soc-ico {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  transition: var(--transition);
}
.soc-ico:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.soc-facebook:hover { background: #1877F2; }
.soc-instagram:hover { background: #E4405F; }
.soc-linkedin:hover { background: #0A66C2; }
.soc-youtube:hover { background: #FF0000; }
.soc-twitter:hover { background: #000; }

/* ============================ HEADER / NAV ============================ */
.site-header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 48px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--dark);
  letter-spacing: .5px;
}
.brand-sub {
  font-size: .7rem;
  color: var(--primary);
  font-style: italic;
  letter-spacing: .3px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--dark);
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 6px;
  display: block;
  position: relative;
}
.main-nav a:hover { background: var(--gray-100); color: var(--primary); }
.main-nav a.active {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; color: #fff !important; }

.has-sub { position: relative; }
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 8px 0 !important;
  min-width: 240px;
  flex-direction: column !important;
  gap: 0 !important;
  display: none !important;
  z-index: 100;
}
.has-sub:hover .submenu { display: flex !important; }
.submenu a { border-radius: 0; padding: 10px 16px; }
.submenu a:hover { background: var(--primary-light); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 80vh; overflow-y: auto; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 12px 16px; }
  .main-nav a { padding: 12px 14px; }
  .submenu { position: static; box-shadow: none; padding-left: 16px !important; display: flex !important; }
  .has-sub > a::after { content: ''; }
}

/* ============================ FLASH ============================ */
.flash {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin: 16px 0;
  font-weight: 500;
}
.flash-success { background: var(--green-light); color: var(--accent-green); border-left: 4px solid var(--accent-green); }
.flash-error   { background: #FFEBEE; color: #C62828; border-left: 4px solid #C62828; }
.flash-info    { background: var(--blue-light); color: var(--accent-blue); border-left: 4px solid var(--accent-blue); }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-whatsapp { background: var(--wa-green); color: #fff; }
.btn-whatsapp:hover { background: #1ea750; color: #fff; transform: translateY(-2px); }
.btn-green { background: var(--accent-green); color: #fff; }
.btn-blue  { background: var(--accent-blue); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ============================ HERO ============================ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  color: #fff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(204,51,0,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(46,125,50,.18) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero h1 .accent { color: var(--accent-yellow); }
.hero p.lead {
  font-size: 1.15rem;
  opacity: .9;
  margin-bottom: 24px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  max-width: 560px;
}
.hero-stat {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  padding: 16px 14px;
  border-radius: var(--radius);
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent-yellow);
  font-weight: 800;
}
.hero-stat span { font-size: .8rem; opacity: .85; }

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .sun-graphic {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-yellow) 0%, var(--primary) 70%);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(251,192,45,.4);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.hero-visual .sun-graphic::after {
  content: '☀️';
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}

@media (max-width: 900px) {
  .hero { padding: 50px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual .sun-graphic { max-width: 260px; }
}

/* ============================ PAGE BANNER (inner pages) ============================ */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 56px 0 64px;
  text-align: center;
  position: relative;
}
.page-banner h1 { color: #fff; margin-bottom: .25em; }
.page-banner p { opacity: .92; max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  margin-top: 12px;
  font-size: .9rem;
  opacity: .85;
}
.breadcrumb a { color: var(--accent-yellow); }

/* ============================ SECTIONS ============================ */
section.padded { padding: 70px 0; }
@media (max-width: 700px) { section.padded { padding: 50px 0; } }

.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 48px;
}
.section-head .eyebrow {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: .4em; }
.section-head p { color: var(--gray-700); font-size: 1.05rem; }

.bg-gray { background: var(--gray-100); }
.bg-green-soft  { background: var(--green-light); }
.bg-blue-soft   { background: var(--blue-light); }
.bg-yellow-soft { background: var(--yellow-light); }
.bg-dark { background: var(--dark); color: #fff; }
.bg-dark h2, .bg-dark h3 { color: #fff; }

/* ============================ CARDS / GRIDS ============================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.card.green .card-icon  { background: var(--green-light);  color: var(--accent-green); }
.card.blue  .card-icon  { background: var(--blue-light);   color: var(--accent-blue); }
.card.yellow .card-icon { background: var(--yellow-light); color: #B07700; }

.card h3 { font-size: 1.2rem; margin-bottom: .4em; }
.card p { color: var(--gray-700); font-size: .95rem; margin-bottom: 0; }
.card .read-more {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary);
}

/* ============================ FEATURE BLOCKS ============================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row .visual {
  background: linear-gradient(135deg, var(--primary-light), var(--yellow-light));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.feature-row.green .visual  { background: linear-gradient(135deg, var(--green-light), #C8E6C9); }
.feature-row.blue  .visual  { background: linear-gradient(135deg, var(--blue-light), #BBDEFB); }
@media (max-width: 800px) {
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
}

.bullet-list { list-style: none; margin: 0; padding: 0; }
.bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px; height: 20px;
  background: var(--accent-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
}

/* ============================ PROCESS ============================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.process-step {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: var(--radius);
  border: 2px dashed var(--gray-300);
  position: relative;
  transition: var(--transition);
}
.process-step:hover { border-color: var(--primary); }
.process-step .step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}
.process-step h4 { font-size: 1rem; margin-bottom: .35em; }
.process-step p { font-size: .85rem; color: var(--gray-700); margin-bottom: 0; }
@media (max-width: 1000px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================ TESTIMONIALS ============================ */
.testimonial {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent-yellow);
}
.testimonial p.quote {
  font-style: italic;
  color: var(--dark);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.6;
}
.testimonial p.quote::before { content: '"'; color: var(--primary); font-size: 2rem; vertical-align: -10px; margin-right: 4px; }
.testimonial .author strong { display: block; color: var(--dark); }
.testimonial .author span { font-size: .85rem; color: var(--gray-500); }

/* ============================ BLOG ============================ */
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card .blog-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-light), var(--yellow-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card .blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card .blog-meta { font-size: .8rem; color: var(--gray-500); margin-bottom: 8px; }
.blog-card .blog-meta .cat {
  display: inline-block;
  background: var(--blue-light);
  color: var(--accent-blue);
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 600;
  margin-right: 8px;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: .5em; }
.blog-card p { font-size: .9rem; color: var(--gray-700); flex: 1; }
.blog-card .read-more { color: var(--primary); font-weight: 600; font-size: .9rem; margin-top: 12px; }

article.post-content {
  max-width: 760px;
  margin: 0 auto;
}
article.post-content img { border-radius: var(--radius); margin: 1.5em 0; }
article.post-content h2, article.post-content h3 { margin-top: 1.5em; }

/* ============================ GALLERY ============================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  color: #fff;
  font-weight: 600;
}

/* ============================ FORM ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card h3 { color: #fff; }
.contact-info-card .ci-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: start;
}
.contact-info-card .ci-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card a { color: var(--accent-yellow); }

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: .92rem;
  color: var(--dark);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font: inherit;
  background: #fff;
  transition: var(--transition);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.form-row.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row.row-2 { grid-template-columns: 1fr; } }

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

/* ============================ CTA BAND ============================ */
.cta-band {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-green) 100%);
  color: #fff;
  padding: 50px 0;
}
.cta-band h2 { color: #fff; margin-bottom: .25em; }
.cta-band p { margin: 0; opacity: .92; }
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--accent-yellow); color: var(--dark); }
.cta-band .btn-primary:hover { background: #fff; }

/* ============================ FOOTER ============================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  padding-top: 56px;
}
.site-footer h4 { color: #fff; margin-bottom: 14px; font-size: 1rem; text-transform: uppercase; letter-spacing: .5px; }
.site-footer .footer-brand .brand { color: #fff; }
.site-footer .footer-brand .brand-sub { color: var(--accent-yellow); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 8px; }
.footer-list a { color: rgba(255,255,255,.75); }
.footer-list a:hover { color: var(--accent-yellow); }
.footer-social { margin-top: 16px; display: flex; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: .85rem;
  text-align: center;
}

/* ============================ FLOATING WHATSAPP ============================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 999;
  animation: wa-pulse 2s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  color: #fff;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,.7); }
}

/* ============================ MISC ============================ */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.map-wrap iframe { width: 100%; border-radius: var(--radius); display: block; }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.pill {
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
}
.pill.green  { background: var(--green-light);  color: var(--accent-green); }
.pill.blue   { background: var(--blue-light);   color: var(--accent-blue); }
.pill.yellow { background: var(--yellow-light); color: #B07700; }

/* Pagination */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; }
.pagination a, .pagination span {
  padding: 8px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  color: var(--dark);
  font-weight: 500;
}
.pagination a:hover, .pagination .active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Print */
@media print {
  .topbar, .site-header, .site-footer, .whatsapp-fab, .cta-band, .nav-toggle { display: none !important; }
}
