/* -------------------------------------------------------
   Custom styles – Léonne Valantin
------------------------------------------------------- */

/* ── Override Bootstrap --bs-primary to match brand green ── */
:root {
  --bs-primary: #035835;
  --bs-primary-rgb: 3, 88, 53;
}
.text-primary { color: #035835 !important; }
.bg-primary   { background-color: #035835 !important; }

/* ── Language Toggle: fixed bottom-left ── */
#lang-toggle {
  position: fixed;
  bottom: 80px;
  left: 16px;
  z-index: 99999;
  background: linear-gradient(135deg, #035835, #01378C);
  color: #fff;
  height: 42px;
  padding: 0 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(3,88,53,0.35);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,255,255,0.25);
}
#lang-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3,88,53,0.45);
  color: #fff;
}
#lang-toggle i { font-size: 15px; }
@media (max-width: 576px) { #lang-toggle { bottom: 70px; left: 12px; } }

/* ── Navmenu: enable full scroll of menu items ── */
.navmenu {
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.navmenu ul {
  overflow-y: visible !important;
}

/* Scrollbar styling for the navmenu */
.navmenu::-webkit-scrollbar {
  width: 4px;
}
.navmenu::-webkit-scrollbar-track {
  background: transparent;
}
.navmenu::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}
.navmenu::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.4);
}

/* ── About section extra blocks ── */
.about-block {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.about-block:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.about-block h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.about-block p {
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* ── Navmenu sitename ── */
.navmenu .logo h1.sitename {
  font-size: 20px;
  text-align: center;
}

/* ── Footer ── */
.footer .credits small {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* ════════════════════════════════════════════════
   TOP HORIZONTAL NAVBAR – centred logo
════════════════════════════════════════════════ */
.topnav {
  height: 138px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(3,88,53,0.09);
  box-shadow: 0 2px 18px rgba(1,55,140,0.07);
  z-index: 1040;
  overflow: visible;
  transition: height .35s cubic-bezier(.4,0,.2,1),
              box-shadow .35s ease,
              background .35s ease;
}
.topnav.scrolled {
  height: 60px;
  background: rgba(255,255,255,0.99);
  box-shadow: 0 4px 28px rgba(1,55,140,0.13);
}

/* Three-column inner layout: left nav | center logo | right nav */
.topnav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 138px;
  padding: 0 24px;
  gap: 0;
  transition: height .35s cubic-bezier(.4,0,.2,1);
}
.topnav.scrolled .topnav-inner { height: 60px; }

/* Left group – align right so links sit close to logo */
.topnav-group:first-child { justify-content: flex-end; }
/* Right group – nav links sit close to logo; lang btn pushed to far right via margin-left:auto */
.topnav-group:last-of-type { justify-content: flex-start; }

.topnav-group {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Centered logo */
.topnav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 6px 20px;
  gap: 2px;
  flex-shrink: 0;
}
.topnav-logo img {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #035835;
  box-shadow: 0 0 0 3px rgba(3,88,53,0.12);
  transition: width .35s cubic-bezier(.4,0,.2,1),
              height .35s cubic-bezier(.4,0,.2,1),
              box-shadow .2s;
}
.topnav.scrolled .topnav-logo img {
  width: 36px;
  height: 36px;
}
.topnav-logo:hover img { box-shadow: 0 0 0 5px rgba(3,88,53,0.18); }
.topnav-logo span {
  font-family: var(--heading-font);
  font-size: 11px;
  font-weight: 700;
  color: #035835;
  letter-spacing: 0.4px;
  white-space: nowrap;
  text-transform: uppercase;
  max-height: 20px;
  overflow: hidden;
  transition: opacity .25s ease, max-height .35s ease;
}
.topnav.scrolled .topnav-logo span {
  opacity: 0;
  max-height: 0;
}

/* Nav links */
.topnav-link {
  font-family: var(--nav-font);
  font-size: 14.5px;
  font-weight: 600;
  color: #1a2e1f;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background .18s, color .18s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.topnav-link:hover { background: rgba(3,88,53,0.08); color: #035835; }
.topnav-link i { font-size: 10px; transition: transform .2s; }

/* Language button inside right nav group */
.topnav-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #035835;
  background: rgba(3,88,53,0.07);
  border: 1.5px solid rgba(3,88,53,0.22);
  border-radius: 30px;
  padding: 6px 16px;
  text-decoration: none;
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.topnav-lang-btn i { font-size: 13px; }
.topnav-lang-btn:hover { background: #035835; color: #fff; border-color: #035835; }

#lang-toggle .lang-flag-emoji,
.topnav-lang-btn .lang-flag-emoji,
.pd-lang-btn .lang-flag-emoji {
  font-size: 24px;
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
  line-height: 1;
  display: inline-block;
}

.lang-flag-img {
  width: 24px;
  height: 17px;
  object-fit: cover;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

/* Lang dropdown wrapper */
.lang-dd { position: relative; display: inline-block; }

/* Shared button reset */
.lang-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
}
.lang-dd-btn span { font-size: 13px; font-weight: 700; }
.lang-dd-btn .bi-chevron-down { font-size: 10px; transition: transform .2s; }
.lang-dd.open .bi-chevron-down { transform: rotate(180deg); }

/* Dropdown menu */
.lang-dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(3,88,53,0.15);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  min-width: 90px;
  z-index: 999999;
  overflow: hidden;
}
.lang-dd.open .lang-dd-menu { display: block; }
.lang-dd-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  text-decoration: none;
  color: #1a2e1f;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s;
}
.lang-dd-menu a:hover { background: rgba(3,88,53,0.07); }

/* Fixed left pill button */
#lang-toggle-wrap { position: fixed; bottom: 80px; left: 16px; z-index: 99999; }
#lang-toggle-wrap .lang-dd-btn {
  background: linear-gradient(135deg, #035835, #01378C);
  color: #fff;
  height: 42px;
  padding: 0 16px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(3,88,53,0.35);
}
#lang-toggle-wrap .lang-dd-btn span { color: #fff; }
#lang-toggle-wrap .lang-dd-btn .bi-chevron-down { color: rgba(255,255,255,0.8); }

/* Nav Search */
.nav-search { position: relative; display: flex; align-items: center; }

.nav-search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #035835;
  font-size: 17px;
  padding: 6px 8px;
  border-radius: 50%;
  transition: background .2s;
  display: flex;
  align-items: center;
}
.nav-search-toggle:hover { background: rgba(3,88,53,0.08); }

.nav-search-box {
  display: none;
  align-items: center;
  background: #fff;
  border: 1.5px solid rgba(3,88,53,0.25);
  border-radius: 30px;
  padding: 4px 12px;
  gap: 6px;
  width: 0;
  overflow: hidden;
  transition: width .3s ease;
}
.nav-search.active .nav-search-box {
  display: flex;
  width: 220px;
}
.nav-search-box input {
  border: none;
  outline: none;
  font-size: 13px;
  width: 100%;
  background: transparent;
  color: #1a2e1f;
}
.nav-search-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 15px;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}
.nav-search-close:hover { color: #035835; }

.nav-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: #fff;
  border: 1px solid rgba(3,88,53,0.12);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
  z-index: 999999;
  overflow: hidden;
}
.nsr-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 16px;
  text-decoration: none;
  color: #1a2e1f;
  border-bottom: 1px solid rgba(3,88,53,0.06);
  transition: background .15s;
}
.nsr-item:last-child { border-bottom: none; }
.nsr-item:hover { background: rgba(3,88,53,0.05); }
.nsr-item i { font-size: 16px; color: #035835; margin-top: 2px; flex-shrink: 0; }
.nsr-item strong { display: block; font-size: 13px; font-weight: 700; color: #1a2e1f; }
.nsr-item span { display: block; font-size: 12px; color: #6c757d; margin-top: 2px; }
.nsr-empty { padding: 14px 16px; font-size: 13px; color: #aaa; text-align: center; }

/* Navbar lang dropdown — push to far right */
.lang-dd-nav { margin-left: auto; }

/* Drawer lang button */
.lang-dd-drawer { width: 100%; margin: 16px 0 0; }
.lang-dd-drawer .lang-dd-btn {
  width: 100%;
  justify-content: center;
  background: rgba(3,88,53,0.07);
  border: 1.5px solid rgba(3,88,53,0.2);
  border-radius: 30px;
  padding: 10px 18px;
  color: #035835;
}
.lang-dd-drawer .lang-dd-btn span { color: #035835; }
.lang-dd-drawer .lang-dd-menu { left: 0; transform: none; width: 100%; }

.pd-lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  padding: 10px 18px;
  background: rgba(3,88,53,0.07);
  border: 1.5px solid rgba(3,88,53,0.2);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #035835;
  text-decoration: none;
  justify-content: center;
  transition: background .2s, color .2s;
}
.pd-lang-btn:hover { background: #035835; color: #fff; }

/* Dropdown */
.topnav-dropdown { position: relative; }
.topnav-dropdown:hover .topnav-dd-menu,
.topnav-dropdown:focus-within .topnav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.topnav-dropdown:hover .topnav-link i { transform: rotate(180deg); }

.topnav-dd-menu {
  position: fixed;
  top: 60px;
  left: 0;
  transform: translateY(-6px);
  background: #fff;
  border: 1px solid rgba(3,88,53,0.09);
  border-radius: 14px;
  box-shadow: 0 14px 44px rgba(1,55,140,0.14);
  padding: 8px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 9999;
}
.topnav.scrolled .topnav-dd-menu { top: 60px; }
/* Caret arrow */
.topnav-dd-menu::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  width: 10px; height: 10px;
  background: #fff;
  border-top: 1px solid rgba(3,88,53,0.09);
  border-left: 1px solid rgba(3,88,53,0.09);
  transform: translateX(-50%) rotate(45deg);
}
.topnav-dd-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: #1a2e1f;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.topnav-dd-menu a i { font-size: 15px; color: #035835; width: 20px; flex-shrink: 0; }
.topnav-dd-menu a:hover { background: rgba(3,88,53,0.07); color: #035835; }

/* Divider between dropdown groups */
.topnav-dd-divider {
  height: 1px;
  background: rgba(3,88,53,0.08);
  margin: 6px 8px;
}

/* Hamburger */
.topnav-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  width: 38px; height: 38px;
  grid-column: 3;
  justify-self: end;
}
.topnav-toggler span {
  display: block;
  height: 2px; width: 100%;
  background: #1a2e1f;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.topnav-toggler.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topnav-toggler.active span:nth-child(2) { opacity: 0; }
.topnav-toggler.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile: show hamburger, hide nav groups */
@media (max-width: 991px) {
  .topnav { height: 80px; }
  .topnav.scrolled { height: 60px; }
  .topnav-inner { grid-template-columns: 1fr auto; height: 80px; }
  .topnav.scrolled .topnav-inner { height: 60px; }
  .topnav-group { display: none !important; }
  .topnav-toggler { display: flex; }
  .topnav-logo { padding: 4px 12px; }
  .topnav-logo img { width: 54px; height: 54px; }
  .topnav.scrolled .topnav-logo img { width: 34px; height: 34px; }
  .topnav-logo span { font-size: 10px; }
}

/* Push content below full-height navbar */
body.index-page main,
body.index-page .main { padding-top: 138px; }
body.index-page .hero { padding-top: 158px !important; }
@media (max-width: 991px) {
  body.index-page main,
  body.index-page .main { padding-top: 80px; }
  body.index-page .hero { padding-top: 100px !important; }
}

/* ════════════════════════════════════════════════
   PROFILE CARD DRAWER
════════════════════════════════════════════════ */
.profile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100%;
  background: linear-gradient(170deg, #012a50 0%, #01378C 40%, #035835 100%);
  z-index: 1060;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overflow-x: hidden;
}
.profile-drawer.open { right: 0; }

.profile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1055;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.profile-drawer-overlay.open { opacity: 1; visibility: visible; }

.profile-drawer-inner {
  padding: 28px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100%;
}

.profile-drawer-close {
  align-self: flex-end;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: background .2s;
  margin-bottom: 20px;
}
.profile-drawer-close:hover { background: rgba(255,255,255,0.25); }

/* Photo */
.pd-photo-wrap { position: relative; margin-bottom: 18px; }
.pd-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.4);
  position: relative;
  z-index: 2;
}
.pd-photo-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.25);
  animation: pd-spin 12s linear infinite;
}
@keyframes pd-spin { to { transform: rotate(360deg); } }

/* Identity */
.pd-identity { margin-bottom: 14px; }
.pd-identity h2 {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  font-family: var(--heading-font);
}
.pd-roles {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  min-height: 20px;
  margin: 0;
}
.pd-roles .typed-cursor { color: rgba(255,255,255,0.6); }

/* Quote */
.pd-quote {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  border-left: 3px solid rgba(255,255,255,0.3);
  text-align: left;
  padding: 8px 0 8px 12px;
  margin: 0 0 20px;
  line-height: 1.6;
}
.pd-quote i {
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 4px;
}

/* Nav links */
.pd-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}
.pd-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 15.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: background .15s, color .15s;
  font-family: var(--nav-font);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1.2;
}
.pd-nav-link:hover { background: rgba(255,255,255,0.12); color: #fff; }
.pd-nav-link i { font-size: 11px; transition: transform .2s; flex-shrink: 0; }

/* Mobile accordion groups */
.pd-nav-group { width: 100%; }
.pd-nav-toggle { width: 100%; }
.pd-nav-group.open .pd-nav-toggle i { transform: rotate(180deg); }
.pd-nav-group.open .pd-nav-toggle { background: rgba(255,255,255,0.10); color: #fff; }

.pd-nav-sub {
  display: none;
  flex-direction: column;
  gap: 1px;
  padding: 4px 0 4px 12px;
  border-left: 2px solid rgba(255,255,255,0.2);
  margin: 2px 0 2px 14px;
}
.pd-nav-group.open .pd-nav-sub { display: flex; }

.pd-nav-sub-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.pd-nav-sub-link i { font-size: 13px; width: 16px; flex-shrink: 0; color: rgba(255,255,255,0.5); }
.pd-nav-sub-link:hover { background: rgba(255,255,255,0.10); color: #fff; }
.pd-nav-sub-link:hover i { color: rgba(255,255,255,0.8); }

/* Social */
.pd-social {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.pd-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background .2s;
}
.pd-social a:hover { background: rgba(255,255,255,0.25); }

/* Region tags */
.pd-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.pd-regions span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

body.pd-open { overflow: hidden; }

@media (max-width: 576px) {
  .profile-drawer { width: 290px; right: -290px; }
  .topnav-brand span { font-size: 15px; }
}

/* ── Vocation / Vision / Mission / Motto cards ── */
.vvm-grid {
  margin-top: 10px;
}

.vvm-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(3, 88, 53, 0.12);
  border-radius: 14px;
  padding: 22px 20px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(3, 88, 53, 0.06);
  position: relative;
  overflow: hidden;
}

.vvm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #035835, #01378C);
  border-radius: 14px 0 0 14px;
}

.vvm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(3, 88, 53, 0.15);
  border-color: rgba(3, 88, 53, 0.25);
}

.vvm-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #035835, #01378C);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(3, 88, 53, 0.3);
}

.vvm-icon i {
  font-size: 22px;
  color: #ffffff;
}

.vvm-body h5 {
  font-size: 16px;
  font-weight: 700;
  color: #035835;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.vvm-body p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #3a4a3e;
  margin: 0;
}

@media (max-width: 576px) {
  .vvm-card {
    flex-direction: column;
    gap: 12px;
  }
  .vvm-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .vvm-icon i {
    font-size: 18px;
  }
}

/* ── Affiliation list inside skill-card ── */
.affiliation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.affiliation-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(3,88,53,0.08);
  font-size: 16px;
}
.affiliation-list li:last-child { border-bottom: none; }
.affiliation-list li i { color: #035835; font-size: 15px; flex-shrink: 0; }
.affiliation-list li a { color: #01378C; font-weight: 500; text-decoration: none; }
.affiliation-list li a:hover { color: #035835; text-decoration: underline; }

/* ── Publication link button ── */
.btn-pub-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(3,88,53,0.08);
  color: #035835;
  border: 1px solid rgba(3,88,53,0.2);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-pub-link:hover {
  background: #035835;
  color: #fff;
  border-color: #035835;
}

/* ── Newsletter box ── */
.newsletter-box {
  background: linear-gradient(135deg, rgba(3,88,53,0.06), rgba(1,55,140,0.06));
  border: 1px solid rgba(3,88,53,0.15);
  border-radius: 14px;
  padding: 32px 36px;
}
.newsletter-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: #035835;
  margin-bottom: 8px;
}
.newsletter-box p { color: #3a4a3e; font-size: 16px; }
.newsletter-form .form-control:focus { border-color: #035835; box-shadow: none; }

@media (max-width: 576px) {
  .newsletter-box { padding: 22px 18px; }
  .newsletter-form { flex-direction: column; }
}

/* ==============================================
   PROFESSIONAL TIMELINE
   Clean alternating left/right layout
============================================== */

.tl-wrap {
  position: relative;
  padding: 10px 0;
}

/* The vertical line running through the centre */
.tl-wrap::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  margin-left: -2px;
  width: 4px;
  background: linear-gradient(to bottom, #035835, #01378C, #035835);
  border-radius: 4px;
}

/* Each row is a 3-column grid: [card or empty] [dot] [card or empty] */
.tl-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: start;
  margin-bottom: 48px;
}
.tl-row:last-child { margin-bottom: 0; }

/* Left-side rows: card is in column 1, empty in column 3 */
.tl-left  .tl-empty     { order: 3; }
.tl-left  .tl-centre    { order: 2; }
.tl-left  .tl-card-wrap { order: 1; padding-right: 24px; }

/* Right-side rows: card is in column 3, empty in column 1 */
.tl-right .tl-empty     { order: 1; }
.tl-right .tl-centre    { order: 2; }
.tl-right .tl-card-wrap { order: 3; padding-left: 24px; }

/* Centre column: just the dot */
.tl-centre {
  display: flex;
  justify-content: center;
  padding-top: 16px;
  position: relative;
  z-index: 2;
}

.tl-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #f7faff;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

/* The card */
.tl-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 4px 20px rgba(3,88,53,0.09);
  border: 1px solid rgba(3,88,53,0.1);
  transition: transform .3s, box-shadow .3s;
}
.tl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(3,88,53,0.14);
}

/* Card header: icon chip + year badge */
.tl-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.tl-chip {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tl-chip i { color: #fff; font-size: 16px; }
.tl-yr {
  font-size: 13.5px; font-weight: 700;
  background: rgba(3,88,53,0.08);
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: .3px;
}
.tl-card h5 {
  font-size: 17px; font-weight: 700;
  color: #01378C;
  margin-bottom: 8px;
  line-height: 1.35;
}
.tl-card p {
  font-size: 16px; line-height: 1.75;
  color: #3a4a3e; margin: 0;
}

/* MOBILE: single column, line on the left */
@media (max-width: 767px) {
  .tl-wrap::before { left: 20px; margin-left: 0; }

  .tl-row {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto;
    margin-bottom: 36px;
  }
  .tl-left  .tl-empty,
  .tl-right .tl-empty    { display: none; }
  .tl-left  .tl-centre,
  .tl-right .tl-centre   { order: 1; padding-top: 14px; justify-content: center; }
  .tl-left  .tl-card-wrap,
  .tl-right .tl-card-wrap { order: 2; padding: 0 0 0 16px; }
  .tl-dot { width: 38px; height: 38px; font-size: 15px; }
}

/* ── Hero column spacing fix ── */
.hero .hero-image {
  padding: 20px 30px 20px 20px;
}
.hero .hero-content {
  padding: 20px 20px 20px 30px;
}
@media (max-width: 991px) {
  .hero .hero-image,
  .hero .hero-content {
    padding: 30px 20px;
  }
}

/* ═══════════════════════════════════════════
   VALUES, COMMITMENTS & AFFILIATIONS section
═══════════════════════════════════════════ */

/* ──────────────────────────────────────────────────
   VCA – Values / Commitments / Affiliations
────────────────────────────────────────────────── */
.vca-section {
  background: #f8f9fb;
  padding: 80px 0;
}

/* Card */
.vca-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 4px 28px rgba(1,55,140,0.07);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.vca-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(3,88,53,0.13);
}

/* Left colour accent bar */
.vca-card-accent {
  position: absolute;
  top: 0; left: 0;
  width: 5px;
  height: 100%;
  border-radius: 16px 0 0 16px;
}

.vca-card-inner {
  display: flex;
  gap: 20px;
  padding: 28px 26px 26px 30px;
  height: 100%;
}

.vca-icon-wrap {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(3,88,53,0.22);
}
.vca-icon-wrap i { color: #fff; font-size: 22px; }

.vca-content { flex: 1; display: flex; flex-direction: column; }
.vca-content h4 {
  font-size: 19px;
  font-weight: 700;
  color: #1a2e1f;
  margin-bottom: 10px;
  margin-top: 4px;
}
.vca-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 16px;
  flex: 1;
}

/* Tags */
.vca-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.vca-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 13px;
  border-radius: 20px;
  background: rgba(3,88,53,0.08);
  color: #035835;
  border: 1px solid rgba(3,88,53,0.18);
  letter-spacing: .2px;
}
.vca-tag--blue {
  background: rgba(1,55,140,0.07);
  color: #01378C;
  border-color: rgba(1,55,140,0.18);
}

/* Language badge */
.vca-lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #01378C;
  background: rgba(1,55,140,0.07);
  border: 1px solid rgba(1,55,140,0.15);
  padding: 6px 16px;
  border-radius: 30px;
  margin-top: auto;
}
.vca-lang-badge i { font-size: 15px; }

/* Affiliations box */
.vca-affil-box {
  background: #fff;
  border-radius: 20px;
  padding: 36px 38px;
  box-shadow: 0 4px 28px rgba(1,55,140,0.07);
  border: 1px solid rgba(3,88,53,0.08);
}
.vca-affil-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(3,88,53,0.10);
}
.vca-affil-icon {
  width: 54px; height: 54px; min-width: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg,#035835,#01378C);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(3,88,53,0.22);
}
.vca-affil-icon i { color: #fff; font-size: 22px; }
.vca-affil-header h4 {
  font-size: 21px;
  font-weight: 700;
  color: #1a2e1f;
  margin: 4px 0 6px;
}
.vca-affil-header p {
  font-size: 16px;
  color: #4a5568;
  margin: 0;
  line-height: 1.6;
}

/* Individual affiliation card */
.vca-affil-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8f9fb;
  border: 1px solid rgba(3,88,53,0.10);
  border-radius: 14px;
  padding: 20px 22px;
  text-decoration: none;
  transition: all .3s;
  height: 100%;
}
.vca-affil-card:hover {
  background: linear-gradient(135deg,#035835,#01378C);
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(3,88,53,0.22);
}
.vca-affil-card:hover .vca-affil-card-icon,
.vca-affil-card:hover strong,
.vca-affil-card:hover span,
.vca-affil-card:hover .vca-affil-arrow { color: #fff !important; background: rgba(255,255,255,0.15) !important; border-color: transparent !important; }

.vca-affil-card-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(3,88,53,0.18);
  transition: background .3s;
}
.vca-affil-card-icon i { color: #fff; font-size: 20px; }
.vca-affil-card-body { flex: 1; }
.vca-affil-card-body strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #1a2e1f;
  margin-bottom: 4px;
  transition: color .3s;
}
.vca-affil-card-body span {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #6c757d;
  transition: color .3s;
}
.vca-affil-arrow {
  font-size: 18px;
  color: #035835;
  flex-shrink: 0;
  transition: color .3s;
}

@media (max-width: 768px) {
  .vca-card-inner { padding: 22px 20px 22px 24px; }
  .vca-affil-box { padding: 24px 20px; }
}

/* ════════════════════════════════════════════════
   SOCIAL ENTERPRISE
════════════════════════════════════════════════ */
.ent-section {
  padding: 80px 0;
  background: #fff;
}
.ent-hero {
  text-align: center;
  margin-bottom: 56px;
}
.ent-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #035835;
  background: rgba(3,88,53,0.08);
  border: 1px solid rgba(3,88,53,0.18);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.ent-hero h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a2e1f;
  margin-bottom: 8px;
}
.ent-hero-sub {
  font-size: 18px;
  color: #6c757d;
  margin: 0;
}
.ent-text p {
  font-size: 17px;
  line-height: 1.85;
  color: #4a5568;
  margin-bottom: 18px;
}
.ent-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.ent-regions span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #035835;
  background: rgba(3,88,53,0.07);
  border: 1px solid rgba(3,88,53,0.15);
  padding: 5px 14px;
  border-radius: 30px;
}
.ent-regions span i { font-size: 12px; }

.ent-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ent-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f8f9fb;
  border: 1px solid rgba(3,88,53,0.08);
  border-radius: 16px;
  padding: 28px 16px 22px;
  gap: 12px;
  transition: transform .3s, box-shadow .3s;
}
.ent-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(3,88,53,0.12);
}
.ent-pillar-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(3,88,53,0.22);
}
.ent-pillar-icon i { color: #fff; font-size: 24px; }
.ent-pillar span {
  font-size: 16px;
  font-weight: 700;
  color: #1a2e1f;
}

/* ════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════ */
.svc-section {
  padding: 80px 0;
  background: #f8f9fb;
}

/* Intro cards */
.svc-intro-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 28px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(1,55,140,0.07);
  border: 1px solid rgba(3,88,53,0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-intro-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg,#035835,#1a6b4a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(3,88,53,0.22);
  flex-shrink: 0;
}
.svc-intro-icon i { color: #fff; font-size: 22px; }
.svc-intro-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2e1f;
  margin: 0;
}
.svc-intro-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #4a5568;
  margin: 0;
}

/* Service cards */
.svc-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 24px rgba(1,55,140,0.07);
  border: 1px solid rgba(3,88,53,0.07);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(3,88,53,0.14);
}
.svc-card-top {
  padding: 28px 24px 22px;
  display: flex;
  align-items: center;
}
.svc-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.svc-card-icon i { color: #fff; font-size: 24px; }
.svc-card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-card-body h4 {
  font-size: 17.5px;
  font-weight: 700;
  color: #1a2e1f;
  margin-bottom: 12px;
}
.svc-card-body p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #4a5568;
  margin: 0;
}

@media (max-width: 768px) {
  .ent-pillars { grid-template-columns: 1fr 1fr; }
  .ent-hero h2 { font-size: 1.5rem; }
}

/* ════════════════════════════════════════════════
   SERVICES – improved layout additions
════════════════════════════════════════════════ */

/* Intro banner strip */
.svc-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #035835, #01378C);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 36px;
  color: #fff;
  box-shadow: 0 8px 28px rgba(3,88,53,0.22);
}
.svc-banner-icon {
  width: 56px; height: 56px; min-width: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-banner-icon i { font-size: 26px; color: #fff; }
.svc-banner-text h4 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.svc-banner-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

/* Coloured intro card variants */
.svc-intro-card--green { border-top: 4px solid #035835; }
.svc-intro-card--blue  { border-top: 4px solid #01378C; }

.svc-intro-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.svc-intro-card-header h4 { margin: 0; }

/* Emphasis paragraph inside intro card */
.svc-intro-emphasis {
  font-size: 15.5px !important;
  font-style: italic;
  color: #035835 !important;
  border-left: 3px solid #035835;
  padding-left: 12px;
  margin-top: 4px !important;
}

/* How I Work checklist */
.svc-how-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-how-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
}
.svc-how-list li i {
  color: #01378C;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Service card top band: icon + title stacked */
.svc-card-top {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 14px;
  padding: 26px 24px 20px;
}
.svc-card-title {
  font-size: 17.5px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 576px) {
  .svc-banner { flex-direction: column; gap: 14px; padding: 22px 20px; }
  .svc-intro-card-header { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════
   GLOBAL MOBILE RESPONSIVENESS
════════════════════════════════════════════════ */

/* Section titles – wrap long subtitles */
.section-title h2 {
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;
}
.section-title p {
  white-space: normal;
  word-break: break-word;
}

@media (max-width: 767px) {
  /* Section titles smaller on mobile */
  .section-title h2 { font-size: 28px; }
  .section-title p  { font-size: 16px; }
  .section-title    { padding-bottom: 36px; }

  /* General section padding */
  section, .section { padding: 40px 0; }

  /* VCA section */
  .vca-section { padding: 48px 0; }
  .vca-card-inner { flex-direction: column; gap: 14px; padding: 20px 16px; }
  .vca-affil-header { flex-direction: column; gap: 12px; }
  .vca-affil-box { padding: 20px 14px; }
  .vca-affil-card { padding: 14px 16px; gap: 10px; }
  .vca-content h4 { font-size: 17px; }
  .vca-content p  { font-size: 15px; }

  /* Experience / publication cards */
  .experience-card .card-header {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .experience-card .card-header .duration { align-self: flex-start; }
  .experience-card .card-header .role-info h3 { font-size: 1rem; }

  /* Social enterprise */
  .ent-section { padding: 48px 0; }
  .ent-hero { margin-bottom: 32px; }
  .ent-hero h2 { font-size: 1.35rem; }
  .ent-pillars { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ent-pillar { padding: 20px 10px 16px; }

  /* Services */
  .svc-section { padding: 48px 0; }
  .svc-banner { flex-direction: column; gap: 12px; padding: 20px 16px; }
  .svc-banner-text h4 { font-size: 17px; }
  .svc-intro-card { padding: 20px 16px; }
  .svc-card-title { font-size: 16px; }

  /* About */
  .about .about-content .intro h2 { font-size: 1.5rem; }
  .about .about-content .skills-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* VVM cards */
  .vvm-grid .col-sm-3 { width: 50%; }
  .vvm-card { padding: 16px 14px; gap: 10px; }

  /* Timeline */
  .tl-card h5 { font-size: 16px; }
  .tl-card p  { font-size: 15px; }

  /* Hero */
  .hero { padding: 60px 0 40px; }
  .hero .hero-title { font-size: 2rem; }
  .hero .floating-card { font-size: 12px; padding: 8px 12px; }
  .hero .floating-card i { font-size: 1rem; }

  /* Contact */
  .contact .info-box { padding: 24px 18px; }
  .contact .info-box h3 { font-size: 1.4rem; }

  /* Newsletter */
  .newsletter-box { padding: 20px 16px; }
  .newsletter-form { flex-direction: column; }

  /* Btn links wrapping */
  .d-flex.gap-3.flex-wrap { gap: 8px !important; }
  .btn-pub-link { font-size: 12px; padding: 6px 12px; }

  /* Scroll top – don't overlap lang toggle */
  .scroll-top { right: 12px; bottom: 20px; }
}

@media (max-width: 480px) {
  .section-title h2 { font-size: 24px; }
  .ent-pillars { grid-template-columns: 1fr 1fr; }
  .vca-tags { gap: 5px; }
  .vca-tag { font-size: 11px; padding: 3px 10px; }
  .svc-card-body p { font-size: 15px; }
  .hero .hero-title { font-size: 1.75rem; }
  /* Hide floating cards on very small screens to avoid overlap */
  .hero .floating-card { display: none; }
  .topnav { height: 68px; }
  .topnav-inner { height: 68px; }
  .topnav.scrolled { height: 54px; }
  .topnav.scrolled .topnav-inner { height: 54px; }
  body.index-page main,
  body.index-page .main { padding-top: 68px; }
  body.index-page .hero { padding-top: 88px !important; }
}

/* ════════════════════════════════════════════════
   HOMEPAGE – EXPERTISE STRIP
════════════════════════════════════════════════ */
.hp-expertise {
  background: #fff;
  border-bottom: 1px solid rgba(3,88,53,0.08);
  padding: 0;
}
.hp-expertise-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 12px;
}
.hp-exp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  flex: 1;
  min-width: 160px;
  transition: background .2s;
  cursor: default;
}
.hp-exp-item:hover { background: rgba(3,88,53,0.03); }
.hp-exp-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(3,88,53,0.2);
}
.hp-exp-icon i { color: #fff; font-size: 20px; }
.hp-exp-item span {
  font-size: 16px;
  font-weight: 700;
  color: #1a2e1f;
  line-height: 1.3;
}
.hp-exp-sep {
  width: 1px;
  height: 40px;
  background: rgba(3,88,53,0.12);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   HOMEPAGE – EXPLORE SECTION
════════════════════════════════════════════════ */
.hp-explore {
  padding: 90px 0;
  background: #f8f9fb;
}
.hp-explore-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.hp-section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #035835;
  background: rgba(3,88,53,0.08);
  border: 1px solid rgba(3,88,53,0.15);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.hp-explore-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0f1f14;
  margin-bottom: 12px;
  line-height: 1.2;
}
.hp-explore-header p {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.7;
  margin: 0;
}

/* Cards */
.hp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(3,88,53,0.08);
  box-shadow: 0 2px 16px rgba(1,55,140,0.06);
  padding: 32px 28px 28px;
  height: 100%;
  text-decoration: none;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
}
.hp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: currentColor;
  opacity: 0;
  transition: opacity .3s;
}
.hp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(1,55,140,0.12);
  text-decoration: none;
}
.hp-card:hover::before { opacity: 1; }
.hp-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
}
.hp-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: transform .3s;
}
.hp-card:hover .hp-card-icon { transform: scale(1.1) rotate(-4deg); }
.hp-card-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 3px 11px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.hp-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: #0f1f14;
  margin-bottom: 10px;
  line-height: 1.3;
}
.hp-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #5a6a74;
  flex: 1;
  margin-bottom: 24px;
}
.hp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
  margin-top: auto;
  transition: gap .2s;
}
.hp-card:hover .hp-card-cta { gap: 8px; }
.hp-card-cta i { font-size: 18px; }

/* ════════════════════════════════════════════════
   HOMEPAGE – CTA BANNER
════════════════════════════════════════════════ */
.hp-cta {
  position: relative;
  padding: 88px 0;
  background: linear-gradient(135deg, #022e1c 0%, #035835 45%, #01378C 100%);
  overflow: hidden;
}
.hp-cta::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: -20px;
  font-size: 320px;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hp-cta-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hp-cta-quote {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-style: italic;
  font-weight: 700;
  color: #fff;
  border: none;
  padding: 0;
  margin: 0 0 14px;
  line-height: 1.5;
  position: relative;
}
.hp-cta-author {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin: 0;
}
.hp-cta-actions {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 30px;
  backdrop-filter: blur(8px);
}
.hp-cta-actions p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 22px;
}
.hp-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #035835;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
}
.hp-btn-solid:hover { background: transparent; color: #fff; }
.hp-btn-solid i { font-size: 18px; }
.hp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
}
.hp-btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }

/* ════════════════════════════════════════════════
   HOMEPAGE – AFFILIATIONS
════════════════════════════════════════════════ */
.hp-affiliations {
  background: #fff;
  padding: 56px 0;
  border-top: 1px solid rgba(3,88,53,0.07);
}
.hp-affil-label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #adb5bd;
  margin-bottom: 32px;
}
.hp-affil-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-affil-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f9fb;
  border: 1px solid rgba(3,88,53,0.1);
  border-radius: 16px;
  padding: 14px 10px;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.hp-affil-card:hover {
  background: linear-gradient(135deg, #035835, #01378C);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(3,88,53,0.22);
}
.hp-affil-icon {
  width: 38px; height: 38px; min-width: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(3,88,53,0.2);
  flex-shrink: 0;
}
.hp-affil-icon i { color: #fff; font-size: 15px; }
.hp-affil-body { flex: 1; }
.hp-affil-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a2e1f;
  margin-bottom: 2px;
  transition: color .3s;
  line-height: 1.3;
}
.hp-affil-body span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #6c757d;
  transition: color .3s;
}
.hp-affil-arrow {
  font-size: 17px;
  color: #1a2e1f;
  transition: color .3s, transform .3s;
}
.hp-affil-card:hover .hp-affil-body strong,
.hp-affil-card:hover .hp-affil-body span,
.hp-affil-card:hover .hp-affil-arrow { color: rgba(255,255,255,0.9); }
.hp-affil-card:hover .hp-affil-arrow { transform: translate(3px,-3px); }

/* ════════════════════════════════════════════════
   HOMEPAGE RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .hp-exp-sep { display: none; }
  .hp-exp-item { min-width: 140px; padding: 20px 16px; }
  .hp-cta { padding: 60px 0; }
  .hp-cta-actions { margin-top: 0; }
}
@media (max-width: 767px) {
  .hp-expertise-inner { justify-content: center; flex-wrap: wrap; padding: 0 8px; overflow-x: visible; }
  .hp-exp-item { flex: 0 0 calc(33.333% - 8px); min-width: 0; padding: 18px 10px; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; }
  .hp-exp-item span { font-size: 13px; }
  .hp-explore { padding: 56px 0; }
  .hp-explore-header { margin-bottom: 32px; }
  .hp-cta { padding: 48px 0; }
  .hp-cta::before { font-size: 180px; }
  .hp-cta-quote { font-size: 1.2rem; }
  .hp-cta-actions { padding: 22px 18px; }
  .hp-affiliations { padding: 40px 0; }
  .hp-affil-card { width: 100%; }
  .hp-affil-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ════════════════════════════════════════════════
   MY KITCHEN CORNER — Front-end styles
════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────── */
.kc-hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: #071810;
}
.kc-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 10% 90%, rgba(1,55,140,.45) 0%, transparent 55%),
    radial-gradient(ellipse 65% 55% at 90% 10%, rgba(3,88,53,.55) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(3,88,53,.15) 0%, transparent 60%),
    linear-gradient(150deg, #071810 0%, #0b2518 50%, #071018 100%);
}
.kc-hero-leaf {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: .06;
  pointer-events: none;
}
.kc-hero-leaf-1 {
  width: 420px; height: 420px;
  background: #035835;
  top: -80px; right: -80px;
  transform: rotate(30deg);
}
.kc-hero-leaf-2 {
  width: 280px; height: 280px;
  background: #01378C;
  bottom: -60px; left: -40px;
  transform: rotate(-20deg);
}
.kc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  padding: 7px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.kc-eyebrow i { color: #4ade80; font-size: 13px; }
.kc-hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -.8px;
}
.kc-hero-title span {
  background: linear-gradient(90deg, #4ade80, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.kc-hero-lead {
  font-size: 17.5px;
  color: rgba(255,255,255,.68);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto 36px;
}
.kc-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.kc-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #035835, #01378C);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(3,88,53,.4);
  transition: all .25s;
}
.kc-btn-solid:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(3,88,53,.5); color: #fff; }
.kc-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all .25s;
}
.kc-btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); color: #fff; }

/* ── Pillars strip ───────────────────────────── */
.kc-pillars { background: #fff; border-bottom: 2px solid rgba(3,88,53,.08); box-shadow: 0 4px 20px rgba(3,88,53,.06); }
.kc-pillars-inner { display: flex; align-items: stretch; justify-content: center; flex-wrap: nowrap; }
.kc-pillar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  font-size: 14px;
  font-weight: 700;
  color: #1a2e1f;
  border-right: 1px solid rgba(3,88,53,.1);
  transition: background .2s;
  flex: 1;
  justify-content: center;
}
.kc-pillar-item:last-child { border-right: none; }
.kc-pillar-item:hover { background: rgba(3,88,53,.03); }
.kc-pillar-icon { width:40px; height:40px; border-radius:10px; background:linear-gradient(135deg,#035835,#01378C); display:flex; align-items:center; justify-content:center; flex-shrink:0; box-shadow:0 4px 12px rgba(3,88,53,.25); }
.kc-pillar-icon i { font-size:18px; color:#fff; }



/* ── About / Philosophy ── */
.kc-about { padding: 96px 0; background: #f8f9fb; }
.kc-about-title { font-size: clamp(1.6rem,3vw,2.1rem); font-weight: 800; color: #0f1f14; line-height: 1.25; margin: 14px 0 28px; }
.kc-about-p { font-size: 16.5px; line-height: 1.9; color: #4a5568; margin-bottom: 20px; }
.kc-about-p:last-child { margin-bottom: 0; }

/* Quote card */
.kc-quote-card { background: linear-gradient(155deg,#071810 0%,#0b2a4a 100%); border-radius: 22px; padding: 36px 32px; position: relative; overflow: hidden; box-shadow: 0 20px 56px rgba(3,88,53,.25); }
.kc-quote-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,#035835,#01378C,#4ade80); }
.kc-quote-mark { font-size: 72px; font-family: Georgia,serif; line-height:.7; color:rgba(74,222,128,.3); margin-bottom:12px; display:block; }
.kc-quote-text { font-size:17px; font-style:italic; color:rgba(255,255,255,.88); line-height:1.75; border:none; padding:0; margin:0 0 10px; }
.kc-quote-cite { font-size:13.5px; font-weight:700; color:#4ade80; letter-spacing:.5px; display:block; margin-bottom:24px; }
.kc-quote-divider { border:none; border-top:1px solid rgba(255,255,255,.12); margin:0 0 22px; }
.kc-principles { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:12px; }
.kc-principles li { display:flex; align-items:center; gap:10px; font-size:14.5px; font-weight:600; color:rgba(255,255,255,.78); }
.kc-principles li i { color:#4ade80; font-size:16px; flex-shrink:0; }

/* ── Accent banner ── */
.kc-accent-banner { padding: 72px 0; background: linear-gradient(135deg,#071810 0%,#071018 100%); position:relative; overflow:hidden; }
.kc-accent-banner::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 80% at 0% 50%,rgba(3,88,53,.3) 0%,transparent 55%), radial-gradient(ellipse 60% 80% at 100% 50%,rgba(1,55,140,.3) 0%,transparent 55%); }
.kc-accent-item { text-align:center; padding:32px 20px; border-radius:18px; border:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.04); backdrop-filter:blur(6px); height:100%; transition:background .3s,transform .3s; position:relative; }
.kc-accent-item:hover { background:rgba(255,255,255,.08); transform:translateY(-4px); }
.kc-accent-icon { width:56px; height:56px; border-radius:16px; background:linear-gradient(135deg,#035835,#01378C); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; box-shadow:0 8px 24px rgba(3,88,53,.4); }
.kc-accent-icon i { font-size:22px; color:#fff; }
.kc-accent-item h4 { font-size:15.5px; font-weight:800; color:#fff; margin-bottom:8px; }
.kc-accent-item p { font-size:13.5px; color:rgba(255,255,255,.6); line-height:1.6; margin:0; }

/* ── Recipes section ── */
.kc-recipes { padding: 96px 0; background: #f8f9fb; }
.kc-section-header { text-align:center; max-width:560px; margin:0 auto 56px; }
.kc-section-eyebrow { display:inline-block; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:2px; color:#035835; background:rgba(3,88,53,.07); border:1px solid rgba(3,88,53,.18); padding:5px 16px; border-radius:30px; margin-bottom:14px; }
.kc-section-header h2 { font-size:clamp(1.7rem,3vw,2.2rem); font-weight:800; color:#0f1f14; margin-bottom:12px; }
.kc-section-header p { font-size:16px; color:#6c757d; line-height:1.7; margin:0; }

/* ── Recipe card ── */
.kc-recipe-card { background:#fff; border-radius:22px; border:1px solid rgba(3,88,53,.08); box-shadow:0 4px 24px rgba(1,55,140,.07); overflow:hidden; height:100%; display:flex; flex-direction:column; cursor:pointer; transition:transform .3s cubic-bezier(.4,0,.2,1),box-shadow .3s; }
.kc-recipe-card:hover { transform:translateY(-8px); box-shadow:0 24px 56px rgba(3,88,53,.16); }
.kc-recipe-card::after { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,#035835,#01378C); border-radius:22px 22px 0 0; opacity:0; transition:opacity .3s; }
.kc-recipe-card:hover::after { opacity:1; }
.kc-recipe-img { height:210px; overflow:hidden; background:linear-gradient(135deg,#022e1c,#01378C); flex-shrink:0; position:relative; }
.kc-recipe-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.kc-recipe-card:hover .kc-recipe-img img { transform:scale(1.07); }
.kc-recipe-img-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(7,24,16,.4) 0%,transparent 50%); }
.kc-recipe-img-placeholder { display:flex; align-items:center; justify-content:center; }
.kc-recipe-img-placeholder i { font-size:3rem; color:rgba(255,255,255,.3); }
.kc-recipe-body { padding:26px; display:flex; flex-direction:column; flex:1; }
.kc-recipe-body h3 { font-size:18.5px; font-weight:800; color:#0f1f14; margin-bottom:10px; line-height:1.3; }
.kc-recipe-body > p { font-size:14.5px; color:#5a6a74; line-height:1.75; flex:1; margin-bottom:18px; }

/* Meta chips with labels */
.kc-recipe-meta { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:22px; }
.kc-meta-chip { display:flex; align-items:center; gap:8px; background:#f1f5f9; border:1px solid rgba(3,88,53,.1); border-radius:12px; padding:8px 14px; min-width:0; transition:background .2s; }
.kc-meta-chip:hover { background:rgba(3,88,53,.07); }
.kc-meta-chip > i { font-size:16px; color:#01378C; flex-shrink:0; }
.kc-meta-chip > div { display:flex; flex-direction:column; line-height:1.2; }
.kc-meta-label { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.8px; color:#035835; }
.kc-meta-val { font-size:13px; font-weight:700; color:#1e293b; margin-top:1px; }

.kc-recipe-btn { display:inline-flex; align-items:center; gap:6px; background:linear-gradient(135deg,#035835,#01378C); color:#fff; border:none; border-radius:50px; padding:11px 24px; font-size:14px; font-weight:700; cursor:pointer; transition:all .25s; margin-top:auto; align-self:flex-start; box-shadow:0 4px 16px rgba(3,88,53,.3); }
.kc-recipe-btn:hover { transform:translateY(-1px); box-shadow:0 8px 24px rgba(3,88,53,.4); gap:10px; }

/* ── Modal ── */
.kc-modal-overlay { position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:1090; opacity:0; pointer-events:none; transition:opacity .3s; backdrop-filter:blur(6px); }
.kc-modal-overlay.open { opacity:1; pointer-events:auto; }
.kc-modal { position:fixed; top:50%; left:50%; transform:translate(-50%,-48%) scale(.96); width:min(780px,95vw); max-height:88vh; background:#fff; border-radius:24px; z-index:1095; box-shadow:0 32px 80px rgba(0,0,0,.25); opacity:0; pointer-events:none; transition:all .3s cubic-bezier(.4,0,.2,1); display:flex; flex-direction:column; overflow:hidden; }
.kc-modal::before { content:''; display:block; height:5px; background:linear-gradient(90deg,#035835,#01378C,#4ade80); flex-shrink:0; }
.kc-modal.open { opacity:1; pointer-events:auto; transform:translate(-50%,-50%) scale(1); }
.kc-modal-close { position:absolute; top:18px; right:18px; width:38px; height:38px; border-radius:50%; background:#f1f5f9; border:none; font-size:1rem; color:#334155; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:background .2s; z-index:2; }
.kc-modal-close:hover { background:#e2e8f0; }
.kc-modal-inner { padding:36px; overflow-y:auto; }
.kc-modal-inner h2 { font-size:1.45rem; font-weight:800; color:#0f1f14; margin-bottom:22px; padding-right:44px; line-height:1.3; }
.kc-recipe-content { font-size:15px; line-height:1.85; color:#334155; }
.kc-recipe-content h2,.kc-recipe-content h3 { font-size:1.05rem; font-weight:700; color:#0f1f14; margin:22px 0 8px; }
.kc-recipe-content h4 { font-size:.95rem; font-weight:700; color:#035835; margin:18px 0 6px; }
.kc-recipe-content ul,.kc-recipe-content ol { padding-left:20px; margin-bottom:14px; }
.kc-recipe-content li { margin-bottom:5px; }
.kc-recipe-content p { margin-bottom:12px; }
.kc-recipe-content hr { border:none; border-top:1px solid rgba(3,88,53,.1); margin:22px 0; }

/* ── Coming soon ── */
.kc-coming-soon { padding:100px 0; background:#f8f9fb; }
.kc-coming-icon { width:80px; height:80px; background:linear-gradient(135deg,#035835,#01378C); border-radius:24px; display:flex; align-items:center; justify-content:center; margin:0 auto 24px; box-shadow:0 12px 32px rgba(3,88,53,.3); }
.kc-coming-icon i { font-size:2rem; color:#fff; }
.kc-coming-soon h2 { font-size:2rem; font-weight:800; color:#0f1f14; margin-bottom:14px; }
.kc-coming-soon p { font-size:17px; color:#6c757d; max-width:500px; margin:0 auto; line-height:1.7; }

/* ── Kitchen responsive ── */
@media (max-width:991px) {
  .kc-hero { padding:80px 0 60px; }
  .kc-about { padding:64px 0; }
  .kc-accent-banner { padding:52px 0; }
  .kc-recipes { padding:64px 0; }
}
@media (max-width:767px) {
  .kc-hero { padding:70px 0 50px; }
  .kc-pillars-inner { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .kc-pillars-inner::-webkit-scrollbar { display: none; }
  .kc-pillar-item { min-width: 140px; flex: 0 0 auto; padding: 20px 16px; justify-content: flex-start; border-right: 1px solid rgba(3,88,53,.08); border-bottom: none; }
  .kc-about { padding:48px 0; }
  .kc-quote-card { padding:26px 22px; }
  .kc-modal-inner { padding:24px 20px; }
  .kc-section-header { margin-bottom:36px; }
  .kc-recipe-body { padding:20px; }
  .kc-meta-chip { padding:6px 10px; }
}

/* ════════════════════════════════════════════════
   TRAVELOGUES PAGE
════════════════════════════════════════════════ */

/* ── Hero ── */
.tv-hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: #07101a;
}
.tv-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 85%, rgba(1,55,140,.5) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(3,88,53,.45) 0%, transparent 50%),
    linear-gradient(150deg, #07101a 0%, #0b1a2e 55%, #071810 100%);
}
.tv-hero-leaf {
  position: absolute; border-radius: 50% 0 50% 0;
  opacity: .05; pointer-events: none;
}
.tv-hero-leaf-1 { width:400px; height:400px; background:#01378C; top:-80px; right:-60px; transform:rotate(25deg); }
.tv-hero-leaf-2 { width:260px; height:260px; background:#035835; bottom:-50px; left:-30px; transform:rotate(-15deg); }
.tv-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05); padding: 7px 20px; border-radius: 30px;
  margin-bottom: 28px; backdrop-filter: blur(8px);
}
.tv-eyebrow i { color: #60a5fa; font-size: 13px; }
.tv-hero-title {
  font-size: clamp(2.2rem,5.5vw,3.4rem); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 20px; letter-spacing: -.7px;
}
.tv-hero-lead {
  font-size: 17.5px; color: rgba(255,255,255,.68); line-height: 1.85;
  max-width: 580px; margin: 0 auto 32px;
}
.tv-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.2); border-radius: 50px;
  padding: 13px 30px; font-size: 15px; font-weight: 700; text-decoration: none;
  backdrop-filter: blur(6px); transition: all .25s;
}
.tv-btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); color: #fff; }

/* ── Featured section ── */
.tv-featured { padding: 88px 0 56px; background: #f8f9fb; }
.tv-featured-eyebrow { margin-bottom: 28px; }
.tv-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 6px 16px; border-radius: 30px;
}
.tv-tag-featured { background: rgba(1,55,140,.08); color: #01378C; border: 1px solid rgba(1,55,140,.2); }

.tv-featured-card {
  background: #fff; border-radius: 24px;
  border: 1px solid rgba(3,88,53,.08);
  box-shadow: 0 8px 40px rgba(1,55,140,.1);
  overflow: hidden; position: relative;
}
.tv-featured-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, #035835, #01378C, #60a5fa);
}

/* Visual panel */
.tv-featured-visual {
  background: linear-gradient(155deg, #071810 0%, #0b2a4a 100%);
  height: 100%; min-height: 280px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 28px; text-align: center; gap: 20px;
}
.tv-featured-country {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.tv-featured-country i {
  font-size: 2.8rem; color: #60a5fa;
  filter: drop-shadow(0 4px 12px rgba(96,165,250,.4));
}
.tv-featured-country span {
  font-size: 1.5rem; font-weight: 900; color: #fff; letter-spacing: -.3px;
}
.tv-featured-date {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: 1px;
}
.tv-featured-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.tv-featured-tags span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  padding: 4px 12px; border-radius: 20px;
}
.tv-featured-tags span i { font-size: 11px; }

/* Text panel */
.tv-featured-body { padding: 40px 44px; }
.tv-featured-title {
  font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 800; color: #0f1f14;
  line-height: 1.25; margin-bottom: 24px;
}
.tv-featured-text {
  font-size: 16.5px; line-height: 1.9; color: #4a5568; margin-bottom: 18px;
}
.tv-featured-text:last-of-type { margin-bottom: 28px; }
.tv-featured-source {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(1,55,140,.06); border: 1px solid rgba(1,55,140,.15);
  border-radius: 10px; padding: 10px 18px;
  font-size: 13.5px; font-weight: 600; color: #4a5568;
}
.tv-featured-source i:first-child { color: #01378C; font-size: 16px; }
.tv-featured-source a {
  color: #01378C; text-decoration: none; font-weight: 700;
  display: inline-flex; align-items: center; gap: 5px; transition: color .2s;
}
.tv-featured-source a:hover { color: #035835; }
.tv-featured-source a i { font-size: 12px; }

/* ── Posts grid ── */
.tv-posts { padding: 0 0 88px; background: #f8f9fb; }
.tv-section-header { margin-bottom: 44px; }
.tv-section-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: #035835; background: rgba(3,88,53,.07); border: 1px solid rgba(3,88,53,.18);
  padding: 5px 16px; border-radius: 30px; margin-bottom: 12px;
}
.tv-section-header h2 { font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 800; color: #0f1f14; margin: 0; }

/* Post card */
.tv-post-card {
  background: #fff; border-radius: 20px; border: 1px solid rgba(3,88,53,.08);
  box-shadow: 0 4px 20px rgba(1,55,140,.07); overflow: hidden; cursor: pointer;
  height: 100%; display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
  position: relative;
}
.tv-post-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg,#035835,#01378C); opacity: 0; transition: opacity .3s;
}
.tv-post-card:hover { transform: translateY(-7px); box-shadow: 0 20px 48px rgba(1,55,140,.14); }
.tv-post-card:hover::before { opacity: 1; }

.tv-post-img { height: 200px; overflow: hidden; background: linear-gradient(135deg,#071810,#0b2a4a); flex-shrink: 0; position: relative; }
.tv-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tv-post-card:hover .tv-post-img img { transform: scale(1.06); }
.tv-post-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(7,16,26,.35) 0%,transparent 50%); }
.tv-post-img-placeholder { display: flex; align-items: center; justify-content: center; }
.tv-post-img-placeholder i { font-size: 2.5rem; color: rgba(255,255,255,.3); }

.tv-post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.tv-post-cat {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: #01378C;
  background: rgba(1,55,140,.07); border: 1px solid rgba(1,55,140,.15);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.tv-post-body h3 { font-size: 17.5px; font-weight: 800; color: #0f1f14; margin-bottom: 10px; line-height: 1.3; }
.tv-post-body p { font-size: 14.5px; color: #5a6a74; line-height: 1.7; flex: 1; margin-bottom: 18px; }
.tv-post-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.tv-post-date { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: #94a3b8; }
.tv-post-date i { font-size: 12px; }
.tv-read-more { display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 700; color: #035835; transition: gap .2s; }
.tv-post-card:hover .tv-read-more { gap: 8px; }

/* ── Modal ── */
.tv-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1090; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(6px); }
.tv-modal-overlay.open { opacity: 1; pointer-events: auto; }
.tv-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%,-48%) scale(.96);
  width: min(780px,95vw); max-height: 88vh; background: #fff;
  border-radius: 24px; z-index: 1095;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
  opacity: 0; pointer-events: none;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow: hidden;
}
.tv-modal::before { content: ''; display: block; height: 5px; background: linear-gradient(90deg,#035835,#01378C,#60a5fa); flex-shrink: 0; }
.tv-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%,-50%) scale(1); }
.tv-modal-close {
  position: absolute; top: 18px; right: 18px; width: 38px; height: 38px;
  border-radius: 50%; background: #f1f5f9; border: none; font-size: 1rem;
  color: #334155; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s; z-index: 2;
}
.tv-modal-close:hover { background: #e2e8f0; }
.tv-modal-inner { padding: 36px; overflow-y: auto; }
.tv-modal-inner h2 { font-size: 1.45rem; font-weight: 800; color: #0f1f14; margin-bottom: 22px; padding-right: 44px; line-height: 1.3; }
.tv-post-content { font-size: 15.5px; line-height: 1.85; color: #334155; }
.tv-post-content h2,.tv-post-content h3 { font-size: 1.1rem; font-weight: 700; color: #0f1f14; margin: 22px 0 8px; }
.tv-post-content h4 { font-size: 1rem; font-weight: 700; color: #01378C; margin: 18px 0 6px; }
.tv-post-content p { margin-bottom: 14px; }
.tv-post-content ul,.tv-post-content ol { padding-left: 20px; margin-bottom: 14px; }
.tv-post-content li { margin-bottom: 5px; }
.tv-post-content hr { border: none; border-top: 1px solid rgba(3,88,53,.1); margin: 22px 0; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .tv-hero { padding: 80px 0 60px; }
  .tv-featured { padding: 60px 0 40px; }
  .tv-featured-body { padding: 28px 28px; }
}
@media (max-width: 767px) {
  .tv-hero { padding: 70px 0 50px; }
  .tv-featured-visual { min-height: 200px; padding: 28px 20px; }
  .tv-featured-body { padding: 24px 20px; }
  .tv-featured-title { font-size: 1.3rem; }
  .tv-featured-text { font-size: 15.5px; }
  .tv-posts { padding: 0 0 60px; }
  .tv-modal-inner { padding: 24px 20px; }
}

/* ════════════════════════════════════════════════
   BLOG PAGE
════════════════════════════════════════════════ */

/* ── Hero ── */
.bl-hero {
  position: relative; padding: 120px 0 100px;
  overflow: hidden; background: #07101a;
}
.bl-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 10% 80%, rgba(3,88,53,.45) 0%, transparent 55%),
    radial-gradient(ellipse 60% 55% at 90% 15%, rgba(1,55,140,.5) 0%, transparent 50%),
    linear-gradient(150deg, #07101a 0%, #0b1a2e 55%, #071810 100%);
}
.bl-hero-shape {
  position: absolute; border-radius: 50% 0 50% 0;
  opacity: .05; pointer-events: none;
}
.bl-shape-1 { width:380px; height:380px; background:#01378C; top:-70px; right:-50px; transform:rotate(20deg); }
.bl-shape-2 { width:240px; height:240px; background:#035835; bottom:-40px; left:-20px; transform:rotate(-10deg); }
.bl-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05); padding: 7px 20px; border-radius: 30px;
  margin-bottom: 28px; backdrop-filter: blur(8px);
}
.bl-eyebrow i { color: #4ade80; font-size: 13px; }
.bl-hero-title {
  font-size: clamp(2.8rem,6vw,4rem); font-weight: 900; color: #fff;
  line-height: 1.05; margin-bottom: 20px; letter-spacing: -1px;
}
.bl-hero-lead {
  font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.85;
  max-width: 580px; margin: 0 auto 32px;
}
.bl-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.2); border-radius: 50px;
  padding: 13px 30px; font-size: 15px; font-weight: 700; text-decoration: none;
  backdrop-filter: blur(6px); transition: all .25s;
}
.bl-btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); color: #fff; }

/* ── Posts section ── */
.bl-posts { padding: 80px 0 88px; background: #f8f9fb; }

/* Featured card */
.bl-featured { margin-bottom: 48px; }
.bl-featured-card {
  background: #fff; border-radius: 24px; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(3,88,53,.08); box-shadow: 0 8px 40px rgba(1,55,140,.1);
  position: relative; transition: transform .3s, box-shadow .3s;
}
.bl-featured-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(1,55,140,.16); }
.bl-featured-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg,#035835,#01378C,#4ade80);
}
.bl-featured-img {
  height: 100%; min-height: 320px; overflow: hidden; position: relative;
  background: linear-gradient(135deg,#071810,#0b2a4a);
}
.bl-featured-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.bl-featured-card:hover .bl-featured-img img { transform: scale(1.05); }
.bl-featured-img-overlay { position:absolute; inset:0; background:linear-gradient(to right,rgba(7,16,26,.2) 0%,transparent 60%); }
.bl-featured-body { padding: 44px 48px; display:flex; flex-direction:column; justify-content:center; height:100%; }
.bl-featured-meta { display:flex; align-items:center; flex-wrap:wrap; gap:10px; margin-bottom:18px; }
.bl-badge-latest {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #fff; background: linear-gradient(135deg,#035835,#01378C);
  padding: 4px 12px; border-radius: 20px;
}
.bl-featured-title {
  font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 800; color: #0f1f14;
  line-height: 1.25; margin-bottom: 16px;
}
.bl-featured-excerpt {
  font-size: 16px; color: #4a5568; line-height: 1.8; margin-bottom: 28px; flex: 1;
}
.bl-read-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,#035835,#01378C); color: #fff;
  border-radius: 50px; padding: 12px 26px; font-size: 14.5px; font-weight: 700;
  box-shadow: 0 4px 16px rgba(3,88,53,.3); transition: all .25s; cursor: pointer;
  align-self: flex-start;
}
.bl-featured-card:hover .bl-read-btn { box-shadow: 0 8px 24px rgba(3,88,53,.4); gap: 12px; }

/* Category + date shared */
.bl-cat {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: #035835;
  background: rgba(3,88,53,.07); border: 1px solid rgba(3,88,53,.18);
  padding: 3px 11px; border-radius: 20px;
}
.bl-cat-featured { color: #01378C; background: rgba(1,55,140,.07); border-color: rgba(1,55,140,.2); }
.bl-date {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600; color: #94a3b8;
}
.bl-date i { font-size: 12px; }

/* Grid cards */
.bl-post-card {
  background: #fff; border-radius: 20px; border: 1px solid rgba(3,88,53,.08);
  box-shadow: 0 4px 20px rgba(1,55,140,.07); overflow: hidden; cursor: pointer;
  height: 100%; display: flex; flex-direction: column; position: relative;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
}
.bl-post-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background: linear-gradient(90deg,#035835,#01378C); opacity:0; transition:opacity .3s;
}
.bl-post-card:hover { transform: translateY(-7px); box-shadow: 0 20px 48px rgba(1,55,140,.14); }
.bl-post-card:hover::before { opacity: 1; }
.bl-post-img {
  height: 200px; overflow: hidden; flex-shrink: 0; position: relative;
  background: linear-gradient(135deg,#071810,#0b2a4a);
}
.bl-post-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.bl-post-card:hover .bl-post-img img { transform: scale(1.06); }
.bl-post-img-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(7,16,26,.3) 0%,transparent 50%); }
.bl-post-img-placeholder { display:flex; align-items:center; justify-content:center; }
.bl-post-img-placeholder i { font-size:2.5rem; color:rgba(255,255,255,.3); }
.bl-post-body { padding: 24px; display:flex; flex-direction:column; flex:1; }
.bl-post-meta { display:flex; align-items:center; flex-wrap:wrap; gap:8px; margin-bottom:12px; }
.bl-post-body h3 { font-size:17.5px; font-weight:800; color:#0f1f14; margin-bottom:10px; line-height:1.3; }
.bl-post-body p { font-size:14.5px; color:#5a6a74; line-height:1.7; flex:1; margin-bottom:18px; }
.bl-read-more {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13.5px; font-weight: 700; color: #035835;
  margin-top: auto; transition: gap .2s;
}
.bl-post-card:hover .bl-read-more { gap: 9px; }

/* ── Modal ── */
.bl-modal-overlay { position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:1090; opacity:0; pointer-events:none; transition:opacity .3s; backdrop-filter:blur(6px); }
.bl-modal-overlay.open { opacity:1; pointer-events:auto; }
.bl-modal {
  position:fixed; top:50%; left:50%;
  transform:translate(-50%,-48%) scale(.96);
  width:min(780px,95vw); max-height:88vh; background:#fff;
  border-radius:24px; z-index:1095;
  box-shadow:0 32px 80px rgba(0,0,0,.25);
  opacity:0; pointer-events:none;
  transition:all .3s cubic-bezier(.4,0,.2,1);
  display:flex; flex-direction:column; overflow:hidden;
}
.bl-modal::before { content:''; display:block; height:5px; background:linear-gradient(90deg,#035835,#01378C,#4ade80); flex-shrink:0; }
.bl-modal.open { opacity:1; pointer-events:auto; transform:translate(-50%,-50%) scale(1); }
.bl-modal-close {
  position:absolute; top:18px; right:18px; width:38px; height:38px;
  border-radius:50%; background:#f1f5f9; border:none; font-size:1rem;
  color:#334155; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background .2s; z-index:2;
}
.bl-modal-close:hover { background:#e2e8f0; }
.bl-modal-inner { padding:36px; overflow-y:auto; }
.bl-modal-inner h2 { font-size:1.45rem; font-weight:800; color:#0f1f14; margin-bottom:22px; padding-right:44px; line-height:1.3; }
.bl-post-content { font-size:15.5px; line-height:1.85; color:#334155; }
.bl-post-content h2,.bl-post-content h3 { font-size:1.1rem; font-weight:700; color:#0f1f14; margin:22px 0 8px; }
.bl-post-content h4 { font-size:1rem; font-weight:700; color:#01378C; margin:18px 0 6px; }
.bl-post-content p { margin-bottom:14px; }
.bl-post-content ul,.bl-post-content ol { padding-left:20px; margin-bottom:14px; }
.bl-post-content li { margin-bottom:5px; }
.bl-post-content hr { border:none; border-top:1px solid rgba(3,88,53,.1); margin:22px 0; }
.bl-post-content a { color:#01378C; font-weight:600; }
.bl-post-content a:hover { color:#035835; }

/* ── Empty state ── */
.bl-empty { padding:100px 0; background:#f8f9fb; }
.bl-empty-icon {
  width:80px; height:80px; background:linear-gradient(135deg,#035835,#01378C);
  border-radius:24px; display:flex; align-items:center; justify-content:center;
  margin:0 auto 24px; box-shadow:0 12px 32px rgba(3,88,53,.3);
}
.bl-empty-icon i { font-size:2rem; color:#fff; }
.bl-empty h2 { font-size:2rem; font-weight:800; color:#0f1f14; margin-bottom:14px; }
.bl-empty p { font-size:17px; color:#6c757d; max-width:520px; margin:0 auto; line-height:1.7; }

/* ── Responsive ── */
@media (max-width:991px) {
  .bl-hero { padding:80px 0 60px; }
  .bl-posts { padding:60px 0 68px; }
  .bl-featured-body { padding:28px 28px; }
  .bl-featured-img { min-height:260px; }
}
@media (max-width:767px) {
  .bl-hero { padding:70px 0 50px; }
  .bl-featured-img { min-height:220px; }
  .bl-featured-body { padding:24px 20px; }
  .bl-featured-title { font-size:1.3rem; }
  .bl-modal-inner { padding:24px 20px; }
}


/* ════════════════════════════════════════════════
   ABOUT PAGE – HERO BANNER + WHO AM I
════════════════════════════════════════════════ */

/* ── Hero banner ── */
.ab-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #022e1c 0%, #035835 50%, #01378C 100%);
}
.ab-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 90%, rgba(1,55,140,.4) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(3,88,53,.35) 0%, transparent 50%);
}
.ab-hero-shape {
  position: absolute; border-radius: 50% 0 50% 0;
  opacity: .07; pointer-events: none;
}
.ab-shape-1 { width:380px; height:380px; background:#fff; top:-80px; right:-60px; transform:rotate(25deg); }
.ab-shape-2 { width:240px; height:240px; background:#fff; bottom:-50px; left:-30px; transform:rotate(-15deg); }

.ab-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); padding: 7px 20px; border-radius: 30px;
  margin-bottom: 22px; backdrop-filter: blur(8px);
}
.ab-eyebrow i { font-size: 13px; }
.ab-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 18px; letter-spacing: -.8px;
}
.ab-hero-lead {
  font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.85;
  max-width: 600px; margin: 0 auto;
}

/* ── Breadcrumb ── */
.ab-breadcrumb {
  background: #f8f9fb;
  border-bottom: 1px solid rgba(3,88,53,.08);
  padding: 12px 0;
}
.ab-breadcrumb-list {
  list-style: none; display: flex; align-items: center;
  gap: 8px; margin: 0; padding: 0;
  font-size: 13.5px; font-weight: 600;
}
.ab-breadcrumb-list a {
  color: #035835; text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
  transition: color .2s;
}
.ab-breadcrumb-list a:hover { color: #01378C; }
.ab-breadcrumb-sep { color: #adb5bd; font-size: 11px; }
.ab-breadcrumb-active { color: #6c757d; }

/* ── Who Am I section ── */
.ab-about {
  padding: 80px 0 64px;
  background: #fff;
}

/* Photo card */
.ab-photo-card {
  background: linear-gradient(160deg, #071810 0%, #0b2a4a 100%);
  border-radius: 24px;
  overflow: hidden;
  padding: 32px 28px 28px;
  text-align: center;
  box-shadow: 0 20px 56px rgba(3,88,53,.2);
  position: relative;
}
.ab-photo-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, #035835, #01378C, #4ade80);
}
.ab-photo-wrap {
  position: relative; display: inline-block; margin-bottom: 20px;
}
.ab-photo {
  width: 220px; height: 220px; border-radius: 50%; object-fit: cover; object-position: center 20%;
  border: 3px solid rgba(255,255,255,.3); position: relative; z-index: 2;
}
.ab-photo-ring {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.2);
  animation: ab-spin 14s linear infinite;
}
@keyframes ab-spin { to { transform: rotate(360deg); } }

.ab-identity-name {
  font-size: 20px; font-weight: 800; color: #fff; margin: 0 0 4px;
}
.ab-identity-role {
  font-size: 15px; color: rgba(255,255,255,.6); margin: 0 0 20px;
  line-height: 1.5;
}
.ab-quote {
  font-size: 16px; font-style: italic; color: rgba(255,255,255,.75);
  border-left: 3px solid rgba(255,255,255,.25); text-align: left;
  padding: 10px 0 10px 14px; margin: 0 0 22px; line-height: 1.65;
}
.ab-quote i { color: rgba(255,255,255,.3); font-size: 20px; display: block; margin-bottom: 6px; }
.ab-stats {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1);
}
.ab-stat { text-align: center; }
.ab-stat-val { display: block; font-size: 22px; font-weight: 900; color: #4ade80; line-height: 1; }
.ab-stat-lbl { display: block; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5); margin-top: 3px; text-transform: uppercase; letter-spacing: .5px; }
.ab-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

/* Section header */
.ab-section-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: #035835; background: rgba(3,88,53,.07);
  border: 1px solid rgba(3,88,53,.18); padding: 5px 16px; border-radius: 30px; margin-bottom: 14px;
}
.ab-section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: #0f1f14;
  line-height: 1.25; margin-bottom: 14px;
}
.ab-section-lead {
  font-size: 17px; color: #4a5568; line-height: 1.8; margin-bottom: 32px;
}

/* Tripartite blocks */
.ab-blocks { display: flex; flex-direction: column; gap: 20px; }
.ab-block {
  display: flex; align-items: flex-start; gap: 18px;
  background: #f8f9fb; border: 1px solid rgba(3,88,53,.08);
  border-radius: 16px; padding: 22px 24px;
  transition: transform .3s, box-shadow .3s;
}
.ab-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(3,88,53,.1);
}
.ab-block-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(3,88,53,.22); flex-shrink: 0;
}
.ab-block-icon i { color: #fff; font-size: 20px; }
.ab-block-body h4 {
  font-size: 17px; font-weight: 700; color: #0f1f14; margin: 0 0 8px;
}
.ab-block-body p {
  font-size: 16px; line-height: 1.8; color: #4a5568; margin: 0;
}

/* VVM cards */
.ab-vvm { margin-top: 0; }
.ab-vvm-card {
  background: #fff; border: 1px solid rgba(3,88,53,.1);
  border-radius: 16px; padding: 24px 20px; height: 100%;
  box-shadow: 0 4px 18px rgba(3,88,53,.07);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.ab-vvm-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #035835, #01378C);
}
.ab-vvm-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(3,88,53,.14); }
.ab-vvm-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(3,88,53,.22); margin-bottom: 16px;
}
.ab-vvm-icon i { color: #fff; font-size: 20px; }
.ab-vvm-card h5 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: #035835; margin-bottom: 8px;
}
.ab-vvm-card p {
  font-size: 16px; line-height: 1.75; color: #4a5568; margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .ab-hero { padding: 80px 0 60px; }
  .ab-about { padding: 56px 0 48px; }
}
@media (max-width: 767px) {
  .ab-hero { padding: 70px 0 50px; }
  .ab-photo-card { padding: 24px 20px 22px; }
  .ab-block { flex-direction: column; gap: 12px; padding: 18px; }
  .ab-vvm-card { padding: 20px 16px; }
}

/* ── Featured blocks (Intellectual Path + Balance) ── */
.ab-block-featured {
  background: #fff;
  border-radius: 20px;
  padding: 32px 30px;
  height: 100%;
  border: 1px solid rgba(3,88,53,.1);
  box-shadow: 0 6px 28px rgba(3,88,53,.08);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.ab-block-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(3,88,53,.14);
}
.ab-block-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.ab-block-featured--green::before { background: linear-gradient(90deg, #035835, #01378C); }
.ab-block-featured--blue::before  { background: linear-gradient(90deg, #1a6b4a, #01378C); }

.ab-block-featured::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  opacity: .04;
}
.ab-block-featured--green::after { background: #035835; }
.ab-block-featured--blue::after  { background: #01378C; }

.ab-bf-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.ab-bf-icon {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(3,88,53,.25);
  flex-shrink: 0;
}
.ab-bf-icon i { color: #fff; font-size: 22px; }
.ab-bf-header h4 {
  font-size: 18px; font-weight: 800; color: #0f1f14; margin: 0; line-height: 1.3;
}
.ab-block-featured > p {
  font-size: 16px; line-height: 1.8; color: #4a5568; margin-bottom: 20px;
}
.ab-bf-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.ab-bf-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 600; color: #1a2e1f;
  background: rgba(3,88,53,.04);
  border: 1px solid rgba(3,88,53,.08);
  border-radius: 10px;
  padding: 9px 14px;
}
.ab-bf-list li i { color: #035835; font-size: 15px; flex-shrink: 0; }

/* ════════════════════════════════════════════════
   SERVICES PAGE – REDESIGN
════════════════════════════════════════════════ */

/* ── Hero ── */
.sv-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #01205a 0%, #01378C 50%, #035835 100%);
}
.sv-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 5% 90%, rgba(3,88,53,.45) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 95% 10%, rgba(1,55,140,.35) 0%, transparent 50%);
}
.sv-hero-shape {
  position: absolute; border-radius: 50% 0 50% 0;
  opacity: .07; pointer-events: none;
}
.sv-shape-1 { width:360px; height:360px; background:#fff; top:-70px; right:-50px; transform:rotate(20deg); }
.sv-shape-2 { width:220px; height:220px; background:#fff; bottom:-40px; left:-20px; transform:rotate(-12deg); }

.sv-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); padding: 7px 20px; border-radius: 30px;
  margin-bottom: 22px; backdrop-filter: blur(8px);
}
.sv-hero-title {
  font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 18px; letter-spacing: -.8px;
}
.sv-hero-lead {
  font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.85;
  max-width: 620px; margin: 0 auto 28px;
}
.sv-hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.sv-hero-tags span {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 5px 14px; border-radius: 20px;
}

/* ── Stats strip ── */
.sv-strip {
  background: #fff;
  border-bottom: 1px solid rgba(3,88,53,.08);
  box-shadow: 0 4px 20px rgba(3,88,53,.06);
}
.sv-strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; padding: 0 12px;
}
.sv-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 36px; gap: 6px; flex: 1; min-width: 160px;
}
.sv-stat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg,#035835,#01378C);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(3,88,53,.25); margin-bottom: 4px;
}
.sv-stat-icon i { color: #fff; font-size: 17px; }
.sv-stat-val { font-size: 26px; font-weight: 900; color: #0f1f14; line-height: 1; }
.sv-stat-lbl { font-size: 12px; font-weight: 600; color: #6c757d; text-align: center; }
.sv-stat-sep { width: 1px; height: 50px; background: rgba(3,88,53,.1); flex-shrink: 0; }

/* ── Intro ── */
.sv-intro { padding: 72px 0 0; background: #f8f9fb; }

.sv-intro-card {
  border-radius: 22px; padding: 34px 32px;
  height: 100%; position: relative; overflow: hidden;
}
.sv-intro-card--dark {
  background: linear-gradient(155deg, #071810 0%, #0b2a4a 100%);
  box-shadow: 0 20px 56px rgba(3,88,53,.2);
}
.sv-intro-card--dark::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, #035835, #01378C, #4ade80);
}
.sv-intro-card--light {
  background: #fff;
  border: 1px solid rgba(3,88,53,.1);
  box-shadow: 0 8px 32px rgba(3,88,53,.08);
}
.sv-intro-card--light::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, #01378C, #035835);
}

.sv-intro-card-top {
  display: flex; align-items: center; gap: 16px; margin-bottom: 18px;
}
.sv-intro-icon-wrap {
  width: 52px; height: 52px; min-width: 52px; border-radius: 14px;
  background: linear-gradient(135deg,#035835,#1a6b4a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(3,88,53,.3); flex-shrink: 0;
}
.sv-intro-icon-wrap i { color: #fff; font-size: 22px; }

.sv-intro-card--dark h3 { font-size: 18px; font-weight: 800; color: #fff; margin: 0; line-height: 1.3; }
.sv-intro-card--dark p  { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.72); margin-bottom: 22px; }
.sv-intro-card--light h3 { font-size: 18px; font-weight: 800; color: #0f1f14; margin: 0; line-height: 1.3; }
.sv-intro-card--light p  { font-size: 15px; line-height: 1.8; color: #4a5568; margin-bottom: 16px; }

.sv-regions {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.sv-regions span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,.8); background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); padding: 5px 13px; border-radius: 20px;
}
.sv-regions span i { font-size: 11px; }

.sv-method-chip {
  display: flex; align-items: center; gap: 9px;
  background: rgba(3,88,53,.05); border: 1px solid rgba(3,88,53,.1);
  border-radius: 10px; padding: 9px 13px;
  font-size: 13.5px; font-weight: 600; color: #1a2e1f;
  transition: background .2s;
}
.sv-method-chip:hover { background: rgba(3,88,53,.1); }
.sv-method-chip i { color: #035835; font-size: 15px; flex-shrink: 0; }

/* ── Service cards section ── */
.sv-cards { padding: 72px 0; background: #f8f9fb; }

.sv-section-header {
  text-align: center; max-width: 560px; margin: 0 auto 52px;
}
.sv-section-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: #035835; background: rgba(3,88,53,.07);
  border: 1px solid rgba(3,88,53,.18); padding: 5px 16px; border-radius: 30px; margin-bottom: 14px;
}
.sv-section-header h2 {
  font-size: clamp(1.7rem,3vw,2.2rem); font-weight: 800; color: #0f1f14;
  margin-bottom: 12px; line-height: 1.2;
}
.sv-section-header p { font-size: 16px; color: #6c757d; line-height: 1.7; margin: 0; }

/* Service card */
.sv-card {
  background: #fff; border-radius: 22px;
  border: 1px solid rgba(3,88,53,.08);
  box-shadow: 0 4px 24px rgba(1,55,140,.07);
  overflow: hidden; height: 100%;
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
}
.sv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(3,88,53,.16);
}
.sv-card-header {
  padding: 28px 26px 22px;
  display: flex; align-items: flex-start; justify-content: space-between;
  position: relative; overflow: hidden;
}
.sv-card-header::after {
  content: ''; position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.sv-card-num {
  font-size: 13px; font-weight: 800; color: rgba(255,255,255,.5);
  letter-spacing: 1px; line-height: 1;
}
.sv-card-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.sv-card-icon-wrap i { color: #fff; font-size: 24px; }
.sv-card-body {
  padding: 24px 26px 26px;
  display: flex; flex-direction: column; flex: 1;
}
.sv-card-body h4 {
  font-size: 17px; font-weight: 800; color: #0f1f14;
  margin-bottom: 12px; line-height: 1.3;
}
.sv-card-body p {
  font-size: 14.5px; line-height: 1.78; color: #4a5568;
  flex: 1; margin-bottom: 18px;
}
.sv-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto;
}
.sv-card-tags span {
  font-size: 11.5px; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; background: rgba(3,88,53,.07);
  color: #035835; border: 1px solid rgba(3,88,53,.15);
}

/* ── CTA ── */
.sv-cta {
  position: relative; padding: 88px 0;
  background: linear-gradient(135deg, #022e1c 0%, #035835 45%, #01378C 100%);
  overflow: hidden;
}
.sv-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(1,55,140,.3) 0%, transparent 55%),
              radial-gradient(ellipse 60% 80% at 100% 50%, rgba(3,88,53,.3) 0%, transparent 55%);
}
.sv-cta-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2); padding: 5px 16px; border-radius: 30px; margin-bottom: 16px;
}
.sv-cta-title {
  font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 900; color: #fff;
  margin-bottom: 14px; line-height: 1.2;
}
.sv-cta-text {
  font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.8; margin: 0;
}
.sv-cta-box {
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 32px 28px; backdrop-filter: blur(8px);
}
.sv-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 50px; padding: 13px 28px;
  font-size: 15.5px; font-weight: 700; text-decoration: none;
  transition: all .25s;
}
.sv-cta-btn--solid {
  background: #fff; color: #035835; border: 2px solid #fff;
}
.sv-cta-btn--solid:hover { background: transparent; color: #fff; }
.sv-cta-btn--ghost {
  background: transparent; color: rgba(255,255,255,.85);
  border: 2px solid rgba(255,255,255,.3);
}
.sv-cta-btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .sv-hero { padding: 80px 0 60px; }
  .sv-intro { padding: 52px 0 0; }
  .sv-cards { padding: 52px 0; }
  .sv-cta { padding: 60px 0; }
  .sv-stat { padding: 22px 20px; }
}
@media (max-width: 767px) {
  .sv-strip-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 16px; scrollbar-width: none; }
  .sv-strip-inner::-webkit-scrollbar { display: none; }
  .sv-stat { min-width: 130px; flex: 0 0 auto; }
  .sv-stat-sep { display: none; }
  .sv-intro-card { padding: 24px 20px; }
  .sv-card-body { padding: 20px; }
  .sv-cta-box { padding: 22px 18px; }
}

/* ════════════════════════════════════════════════
   PUBLICATIONS PAGE – REDESIGN
════════════════════════════════════════════════ */

/* ── Hero ── */
.pb-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #07101a 0%, #01378C 55%, #035835 100%);
}
.pb-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 8% 85%, rgba(3,88,53,.45) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 92% 12%, rgba(1,55,140,.35) 0%, transparent 50%);
}
.pb-hero-shape {
  position: absolute; border-radius: 50% 0 50% 0;
  opacity: .07; pointer-events: none;
}
.pb-shape-1 { width:340px; height:340px; background:#fff; top:-60px; right:-40px; transform:rotate(18deg); }
.pb-shape-2 { width:210px; height:210px; background:#fff; bottom:-35px; left:-15px; transform:rotate(-12deg); }

.pb-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); padding: 7px 20px; border-radius: 30px;
  margin-bottom: 22px; backdrop-filter: blur(8px);
}
.pb-hero-title {
  font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 18px; letter-spacing: -.8px;
}
.pb-hero-lead {
  font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.85;
  max-width: 640px; margin: 0 auto;
}

/* ── Section ── */
.pb-section { padding: 72px 0 56px; background: #f8f9fb; }

.pb-section-header {
  text-align: center; max-width: 560px; margin: 0 auto 52px;
}
.pb-eyebrow-sm {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: #035835; background: rgba(3,88,53,.07);
  border: 1px solid rgba(3,88,53,.18); padding: 5px 16px; border-radius: 30px; margin-bottom: 14px;
}
.pb-section-header h2 {
  font-size: clamp(1.7rem,3vw,2.2rem); font-weight: 800; color: #0f1f14;
  margin-bottom: 12px; line-height: 1.2;
}
.pb-section-header p { font-size: 16px; color: #6c757d; line-height: 1.7; margin: 0; }

/* ── Publication card grid ── */
.pb-grid {
  display: flex; flex-direction: column; gap: 28px;
}

.pb-card {
  display: flex; align-items: stretch;
  background: #fff; border-radius: 22px;
  border: 1px solid rgba(3,88,53,.08);
  box-shadow: 0 6px 32px rgba(1,55,140,.08);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
}
.pb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(3,88,53,.14);
}

/* Left coloured sidebar */
.pb-card-side {
  width: 80px; min-width: 80px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; padding: 28px 0;
  flex-shrink: 0;
}
.pb-card-side i { font-size: 26px; color: #fff; }
.pb-card-year {
  font-size: 11px; font-weight: 800; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: 1px;
  writing-mode: vertical-rl; transform: rotate(180deg);
}

/* Card body */
.pb-card-body {
  padding: 28px 32px; flex: 1; display: flex; flex-direction: column;
}
.pb-card-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 14px;
}
.pb-type-badge {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  color: #fff; padding: 4px 13px; border-radius: 20px;
}
.pb-outlet {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600; color: #6c757d;
}
.pb-outlet i { font-size: 12px; }

.pb-card-body h3 {
  font-size: 19px; font-weight: 800; color: #0f1f14;
  margin-bottom: 8px; line-height: 1.3;
}
.pb-author {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #035835;
  margin-bottom: 12px;
}
.pb-author i { font-size: 13px; }
.pb-body {
  font-size: 15px; line-height: 1.82; color: #4a5568; flex: 1; margin-bottom: 20px;
}
.pb-links {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto;
}
.pb-link-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(3,88,53,.07); color: #035835;
  border: 1.5px solid rgba(3,88,53,.2); border-radius: 50px;
  padding: 9px 20px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all .25s;
}
.pb-link-btn:hover {
  background: #035835; color: #fff; border-color: #035835;
}
.pb-link-btn:hover .pb-link-arrow { transform: translate(3px,-3px); }
.pb-link-arrow { font-size: 13px; transition: transform .25s; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .pb-hero { padding: 70px 0 50px; }
  .pb-section { padding: 52px 0 40px; }
  .pb-card { flex-direction: column; }
  .pb-card-side { width: 100%; min-width: unset; flex-direction: row; padding: 16px 20px; gap: 12px; justify-content: flex-start; }
  .pb-card-year { writing-mode: horizontal-tb; transform: none; }
  .pb-card-body { padding: 20px; }
  .pb-card-body h3 { font-size: 17px; }
}

/* ════════════════════════════════════════════════
   CONFERENCES PAGE – REDESIGN
════════════════════════════════════════════════ */

/* ── Hero ── */
.cf-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #071810 0%, #035835 50%, #01378C 100%);
}
.cf-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 8% 85%, rgba(1,55,140,.4) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 92% 12%, rgba(3,88,53,.35) 0%, transparent 50%);
}
.cf-hero-shape {
  position: absolute; border-radius: 50% 0 50% 0;
  opacity: .07; pointer-events: none;
}
.cf-shape-1 { width:340px; height:340px; background:#fff; top:-60px; right:-40px; transform:rotate(18deg); }
.cf-shape-2 { width:210px; height:210px; background:#fff; bottom:-35px; left:-15px; transform:rotate(-12deg); }

.cf-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); padding: 7px 20px; border-radius: 30px;
  margin-bottom: 22px; backdrop-filter: blur(8px);
}
.cf-hero-title {
  font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 18px; letter-spacing: -.8px;
}
.cf-hero-lead {
  font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.85;
  max-width: 620px; margin: 0 auto;
}

/* ── Intro strip ── */
.cf-intro-strip {
  background: #fff;
  border-bottom: 1px solid rgba(3,88,53,.08);
  padding: 32px 0;
}
.cf-intro-inner {
  display: flex; align-items: center; gap: 20px;
  max-width: 820px; margin: 0 auto;
}
.cf-intro-icon {
  width: 52px; height: 52px; min-width: 52px; border-radius: 14px;
  background: linear-gradient(135deg,#035835,#01378C);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(3,88,53,.25); flex-shrink: 0;
}
.cf-intro-icon i { color: #fff; font-size: 22px; }
.cf-intro-inner p {
  font-size: 16px; line-height: 1.8; color: #4a5568; margin: 0;
}

/* ── Section ── */
.cf-section { padding: 72px 0 56px; background: #f8f9fb; }

.cf-section-header {
  text-align: center; max-width: 560px; margin: 0 auto 52px;
}
.cf-eyebrow-sm {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: #035835; background: rgba(3,88,53,.07);
  border: 1px solid rgba(3,88,53,.18); padding: 5px 16px; border-radius: 30px; margin-bottom: 14px;
}
.cf-section-header h2 {
  font-size: clamp(1.7rem,3vw,2.2rem); font-weight: 800; color: #0f1f14;
  margin-bottom: 12px; line-height: 1.2;
}
.cf-section-header p { font-size: 16px; color: #6c757d; line-height: 1.7; margin: 0; }

/* ── Timeline grid ── */
.cf-grid { display: flex; flex-direction: column; gap: 36px; }

.cf-card {
  display: flex; align-items: flex-start; gap: 24px;
}

/* Year column */
.cf-card-year-col {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; padding-top: 4px;
}
.cf-year-badge {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; color: #fff;
  box-shadow: 0 8px 22px rgba(3,88,53,.28); flex-shrink: 0;
  letter-spacing: .5px;
}
.cf-year-line {
  width: 2px; flex: 1; min-height: 40px;
  background: linear-gradient(to bottom, rgba(3,88,53,.3), transparent);
  margin-top: 10px;
}
.cf-grid > .cf-card:last-child .cf-year-line { display: none; }

/* Main card */
.cf-card-main {
  flex: 1; background: #fff; border-radius: 22px;
  border: 1px solid rgba(3,88,53,.08);
  box-shadow: 0 6px 32px rgba(1,55,140,.08);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
}
.cf-card-main:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(3,88,53,.14);
}

/* Card top band */
.cf-card-top {
  padding: 20px 26px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.cf-card-top-left {
  display: flex; align-items: center; gap: 14px;
}
.cf-card-icon-wrap {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15); flex-shrink: 0;
}
.cf-card-icon-wrap i { color: #fff; font-size: 20px; }
.cf-type-badge {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  color: rgba(255,255,255,.95); background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3); padding: 3px 11px; border-radius: 20px;
  margin-right: 6px;
}
.cf-org-badge {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85);
}
.cf-card-top-right {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cf-role-badge,
.cf-loc-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 4px 12px; border-radius: 20px;
}
.cf-role-badge i, .cf-loc-badge i { font-size: 11px; }

/* Card body */
.cf-card-body { padding: 26px 28px; }
.cf-card-body h3 {
  font-size: 19px; font-weight: 800; color: #0f1f14;
  margin-bottom: 12px; line-height: 1.3;
}
.cf-card-body p {
  font-size: 15px; line-height: 1.82; color: #4a5568; margin-bottom: 20px;
}
.cf-card-links { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .cf-hero { padding: 70px 0 50px; }
  .cf-section { padding: 52px 0 40px; }
  .cf-intro-inner { flex-direction: column; text-align: center; }
  .cf-card { flex-direction: column; gap: 0; }
  .cf-card-year-col { flex-direction: row; gap: 12px; align-items: center; margin-bottom: 12px; }
  .cf-year-line { width: 40px; height: 2px; min-height: unset; margin-top: 0; background: linear-gradient(to right, rgba(3,88,53,.3), transparent); }
  .cf-card-top { flex-direction: column; align-items: flex-start; }
  .cf-card-body { padding: 20px; }
  .cf-card-body h3 { font-size: 17px; }
}

/* ════════════════════════════════════════════════
   RESOURCES PAGE – REDESIGN
════════════════════════════════════════════════ */

/* ── Hero ── */
.rs-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #022e1c 0%, #035835 45%, #1a5cb5 100%);
}
.rs-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 8% 85%, rgba(1,55,140,.4) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 92% 12%, rgba(3,88,53,.35) 0%, transparent 50%);
}
.rs-hero-shape {
  position: absolute; border-radius: 50% 0 50% 0;
  opacity: .07; pointer-events: none;
}
.rs-shape-1 { width:340px; height:340px; background:#fff; top:-60px; right:-40px; transform:rotate(18deg); }
.rs-shape-2 { width:210px; height:210px; background:#fff; bottom:-35px; left:-15px; transform:rotate(-12deg); }

.rs-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); padding: 7px 20px; border-radius: 30px;
  margin-bottom: 22px; backdrop-filter: blur(8px);
}
.rs-hero-title {
  font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 18px; letter-spacing: -.8px;
}
.rs-hero-lead {
  font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.85;
  max-width: 620px; margin: 0 auto;
}

/* ── Intro ── */
.rs-intro { padding: 60px 0 0; background: #f8f9fb; }
.rs-intro-card {
  display: flex; align-items: flex-start; gap: 28px;
  background: #fff; border-radius: 22px; padding: 36px 38px;
  border: 1px solid rgba(3,88,53,.1);
  box-shadow: 0 8px 36px rgba(3,88,53,.08);
  position: relative; overflow: hidden;
}
.rs-intro-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, #035835, #01378C, #4ade80);
}
.rs-intro-icon {
  width: 58px; height: 58px; min-width: 58px; border-radius: 16px;
  background: linear-gradient(135deg,#035835,#01378C);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(3,88,53,.28); flex-shrink: 0; margin-top: 4px;
}
.rs-intro-icon i { color: #fff; font-size: 26px; }
.rs-intro-body p {
  font-size: 15.5px; line-height: 1.85; color: #4a5568; margin-bottom: 14px;
}
.rs-intro-body p:last-child { margin-bottom: 0; }
.rs-intro-invite {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(3,88,53,.05); border: 1px solid rgba(3,88,53,.12);
  border-radius: 12px; padding: 14px 18px;
  font-size: 15px !important; color: #1a2e1f !important;
  font-style: italic;
}
.rs-intro-invite i { color: #035835; font-size: 18px; flex-shrink: 0; margin-top: 2px; }

/* ── Section ── */
.rs-section { padding: 56px 0 72px; background: #f8f9fb; }

.rs-section-header {
  text-align: center; max-width: 560px; margin: 0 auto 48px;
}
.rs-eyebrow-sm {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: #035835; background: rgba(3,88,53,.07);
  border: 1px solid rgba(3,88,53,.18); padding: 5px 16px; border-radius: 30px; margin-bottom: 14px;
}
.rs-section-header h2 {
  font-size: clamp(1.7rem,3vw,2.2rem); font-weight: 800; color: #0f1f14;
  margin-bottom: 8px; line-height: 1.2;
}
.rs-section-header p { font-size: 15px; color: #6c757d; margin: 0; }

/* ── Resource card ── */
.rs-card {
  background: #fff; border-radius: 20px;
  border: 1px solid rgba(3,88,53,.08);
  box-shadow: 0 4px 24px rgba(1,55,140,.07);
  overflow: hidden; height: 100%;
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
}
.rs-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(3,88,53,.15);
}

/* Header (no image) */
.rs-card-header {
  padding: 28px 24px 22px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}
.rs-card-header::after {
  content: ''; position: absolute; bottom: -30px; right: -30px;
  width: 90px; height: 90px; border-radius: 50%; background: rgba(255,255,255,.08);
}
.rs-card-icon-wrap {
  width: 50px; height: 50px; border-radius: 13px;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.rs-card-icon-wrap i { color: #fff; font-size: 22px; }
.rs-card-cat {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  color: rgba(255,255,255,.9); background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3); padding: 4px 12px; border-radius: 20px;
}

/* Image variant */
.rs-card-img { position: relative; height: 190px; overflow: hidden; }
.rs-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.rs-card:hover .rs-card-img img { transform: scale(1.06); }
.rs-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,24,16,.35) 0%, transparent 55%); }
.rs-card-cat-img {
  position: absolute; bottom: 12px; left: 14px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  color: #fff; background: rgba(3,88,53,.85); padding: 4px 12px; border-radius: 20px;
}

/* Body */
.rs-card-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.rs-card-body h4 {
  font-size: 16.5px; font-weight: 800; color: #0f1f14;
  margin-bottom: 10px; line-height: 1.35;
}
.rs-card-body p {
  font-size: 14px; line-height: 1.75; color: #4a5568; flex: 1; margin-bottom: 14px;
}
.rs-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto;
}
.rs-card-tags span {
  font-size: 11px; font-weight: 700; padding: 3px 11px; border-radius: 20px;
  background: rgba(3,88,53,.07); color: #035835; border: 1px solid rgba(3,88,53,.15);
}

/* Footer */
.rs-card-footer {
  padding: 0 24px 22px;
}
.rs-card-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg,#035835,#01378C); color: #fff;
  border-radius: 50px; padding: 11px 20px;
  font-size: 13.5px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 16px rgba(3,88,53,.3);
  transition: all .25s;
}
.rs-card-btn:hover { box-shadow: 0 8px 24px rgba(3,88,53,.4); color: #fff; transform: translateY(-1px); }
.rs-card-btn i { font-size: 16px; }

/* ── Coming soon ── */
.rs-coming {
  text-align: center; padding: 80px 0 40px; max-width: 540px; margin: 0 auto;
}
.rs-coming-icon {
  width: 80px; height: 80px; border-radius: 22px;
  background: linear-gradient(135deg,#035835,#01378C);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; box-shadow: 0 12px 32px rgba(3,88,53,.28);
}
.rs-coming-icon i { font-size: 2rem; color: #fff; }
.rs-coming h3 { font-size: 1.8rem; font-weight: 800; color: #0f1f14; margin-bottom: 14px; }
.rs-coming p { font-size: 16px; color: #6c757d; line-height: 1.75; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .rs-hero { padding: 70px 0 50px; }
  .rs-intro { padding: 40px 0 0; }
  .rs-intro-card { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .rs-section { padding: 40px 0 56px; }
  .rs-card-body { padding: 18px; }
}

/* ════════════════════════════════════════════════
   HERITAGE PAGE – REDESIGN
════════════════════════════════════════════════ */

/* ── Hero ── */
.hh-hero {
  position: relative; padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #3d0a0a 0%, #7b1a1a 40%, #035835 100%);
}
.hh-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 8% 85%, rgba(3,88,53,.5) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 92% 12%, rgba(180,30,30,.3) 0%, transparent 50%);
}
.hh-hero-shape { position: absolute; border-radius: 50% 0 50% 0; opacity: .07; pointer-events: none; }
.hh-shape-1 { width:340px; height:340px; background:#fff; top:-60px; right:-40px; transform:rotate(18deg); }
.hh-shape-2 { width:210px; height:210px; background:#fff; bottom:-35px; left:-15px; transform:rotate(-12deg); }

.hh-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); padding: 7px 20px; border-radius: 30px;
  margin-bottom: 22px; backdrop-filter: blur(8px);
}
.hh-hero-title {
  font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 18px; letter-spacing: -.8px;
}
.hh-hero-lead {
  font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.85;
  max-width: 620px; margin: 0 auto;
}

/* ── Pillars strip ── */
.hh-strip { background: #fff; border-bottom: 1px solid rgba(3,88,53,.08); box-shadow: 0 4px 20px rgba(3,88,53,.06); }
.hh-strip-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; padding: 0 12px; }
.hh-pillar {
  display: flex; align-items: center; gap: 12px;
  padding: 24px 28px; flex: 1; min-width: 160px;
  font-size: 14px; font-weight: 700; color: #1a2e1f;
}
.hh-pillar-sep { width:1px; height:40px; background:rgba(3,88,53,.1); flex-shrink:0; }
.hh-pillar-icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(3,88,53,.25); flex-shrink: 0;
}
.hh-pillar-icon i { color: #fff; font-size: 18px; }

/* ── Main section ── */
.hh-section { padding: 80px 0 72px; background: #f8f9fb; }

.hh-section-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: #035835; background: rgba(3,88,53,.07);
  border: 1px solid rgba(3,88,53,.18); padding: 5px 16px; border-radius: 30px; margin-bottom: 14px;
}
.hh-section-title {
  font-size: clamp(1.5rem,2.8vw,2rem); font-weight: 800; color: #0f1f14;
  margin-bottom: 28px; line-height: 1.25;
}

/* Story blocks */
.hh-story-block {
  display: flex; align-items: flex-start; gap: 18px;
  border-radius: 18px; padding: 24px 26px; margin-bottom: 20px;
  border: 1px solid transparent;
  transition: transform .3s, box-shadow .3s;
}
.hh-story-block:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(3,88,53,.1); }
.hh-story-green { background: rgba(3,88,53,.05); border-color: rgba(3,88,53,.12); }
.hh-story-blue  { background: rgba(1,55,140,.05); border-color: rgba(1,55,140,.12); }
.hh-story-teal  { background: rgba(26,107,74,.05); border-color: rgba(26,107,74,.12); }

.hh-story-icon {
  width: 46px; height: 46px; min-width: 46px; border-radius: 12px;
  background: linear-gradient(135deg,#035835,#01378C);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(3,88,53,.25); flex-shrink: 0;
}
.hh-story-blue .hh-story-icon  { background: linear-gradient(135deg,#01378C,#1a5cb5); }
.hh-story-teal .hh-story-icon  { background: linear-gradient(135deg,#1a6b4a,#01378C); }
.hh-story-icon i { color: #fff; font-size: 19px; }
.hh-story-block h5 { font-size: 16px; font-weight: 700; color: #0f1f14; margin-bottom: 8px; }
.hh-story-block p  { font-size: 15px; line-height: 1.8; color: #4a5568; margin: 0; }

.hh-fb-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1877f2; color: #fff; border-radius: 50px;
  padding: 10px 22px; font-size: 14px; font-weight: 700;
  text-decoration: none; margin-top: 14px;
  box-shadow: 0 4px 16px rgba(24,119,242,.35);
  transition: all .25s;
}
.hh-fb-btn:hover { background: #1464d8; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24,119,242,.45); }

/* Values card */
.hh-values-card {
  background: linear-gradient(160deg,#071810 0%,#0b2a4a 100%);
  border-radius: 24px; padding: 32px 28px;
  box-shadow: 0 20px 56px rgba(3,88,53,.2);
  position: relative; overflow: hidden;
}
.hh-values-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg,#035835,#01378C,#4ade80);
}
.hh-values-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.hh-values-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hh-values-icon i { color: #fff; font-size: 20px; }
.hh-values-header h4 { font-size: 17px; font-weight: 800; color: #fff; margin: 0; }

.hh-value-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.hh-value-item:last-child { border-bottom: none; padding-bottom: 0; }
.hh-value-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(3,88,53,.3); flex-shrink: 0;
}
.hh-value-icon i { color: #fff; font-size: 17px; }
.hh-value-body { display: flex; flex-direction: column; gap: 2px; }
.hh-value-body strong { font-size: 14.5px; font-weight: 700; color: #fff; }
.hh-value-body span   { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .hh-hero { padding: 70px 0 50px; }
  .hh-section { padding: 52px 0 48px; }
  .hh-strip-inner { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; padding: 0 16px; }
  .hh-strip-inner::-webkit-scrollbar { display: none; }
  .hh-pillar { min-width: 140px; flex: 0 0 auto; }
  .hh-pillar-sep { display: none; }
  .hh-story-block { flex-direction: column; gap: 12px; }
  .hh-values-card { padding: 24px 20px; }
}

/* ════════════════════════════════════════════════
   CONTACT PAGE – REDESIGN
════════════════════════════════════════════════ */

/* ── Hero ── */
.ct-hero {
  position: relative; padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #01205a 0%, #01378C 50%, #035835 100%);
}
.ct-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 8% 85%, rgba(3,88,53,.45) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 92% 12%, rgba(1,55,140,.35) 0%, transparent 50%);
}
.ct-hero-shape { position: absolute; border-radius: 50% 0 50% 0; opacity: .07; pointer-events: none; }
.ct-shape-1 { width:340px; height:340px; background:#fff; top:-60px; right:-40px; transform:rotate(18deg); }
.ct-shape-2 { width:210px; height:210px; background:#fff; bottom:-35px; left:-15px; transform:rotate(-12deg); }

.ct-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); padding: 7px 20px; border-radius: 30px;
  margin-bottom: 22px; backdrop-filter: blur(8px);
}
.ct-hero-title {
  font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 18px; letter-spacing: -.8px;
}
.ct-hero-lead {
  font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.85;
  max-width: 600px; margin: 0 auto;
}

/* ── Section ── */
.ct-section { padding: 72px 0; background: #f8f9fb; }

/* Info card */
.ct-info-card {
  background: linear-gradient(160deg,#071810 0%,#0b2a4a 100%);
  border-radius: 24px; padding: 30px 26px;
  box-shadow: 0 20px 56px rgba(3,88,53,.2);
  position: relative; overflow: hidden;
}
.ct-info-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg,#035835,#01378C,#4ade80);
}
.ct-info-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px; padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ct-info-photo {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.3);
}
.ct-info-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.ct-info-header h4 { font-size: 17px; font-weight: 800; color: #fff; margin: 0 0 2px; }
.ct-info-header p  { font-size: 12px; color: rgba(255,255,255,.6); margin: 0; line-height: 1.4; }

.ct-info-intro {
  font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.68);
  margin-bottom: 22px;
}

.ct-info-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.ct-info-item { display: flex; align-items: center; gap: 13px; }
.ct-info-icon {
  width: 38px; height: 38px; min-width: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(3,88,53,.25); flex-shrink: 0;
}
.ct-info-icon i { color: #fff; font-size: 15px; }
.ct-info-item > div:last-child { display: flex; flex-direction: column; gap: 1px; }
.ct-info-lbl { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.45); }
.ct-info-val { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.88); }
.ct-info-val a { color: rgba(255,255,255,.88); text-decoration: none; transition: color .2s; }
.ct-info-val a:hover { color: #4ade80; }

.ct-social { display: flex; gap: 10px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.ct-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; text-decoration: none;
  transition: background .2s;
}
.ct-social a:hover { background: rgba(255,255,255,.22); }

/* Form card */
.ct-form-card {
  background: #fff; border-radius: 24px; padding: 36px 38px;
  border: 1px solid rgba(3,88,53,.08);
  box-shadow: 0 8px 36px rgba(1,55,140,.08);
  position: relative; overflow: hidden;
}
.ct-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg,#01378C,#035835);
}
.ct-form-header {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px;
}
.ct-form-icon {
  width: 52px; height: 52px; min-width: 52px; border-radius: 14px;
  background: linear-gradient(135deg,#01378C,#035835);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(1,55,140,.25); flex-shrink: 0;
}
.ct-form-icon i { color: #fff; font-size: 22px; }
.ct-form-header h3 { font-size: 20px; font-weight: 800; color: #0f1f14; margin: 0 0 6px; }
.ct-form-header p  { font-size: 14.5px; color: #6c757d; margin: 0; line-height: 1.6; }

.ct-form label {
  display: block; font-size: 13px; font-weight: 700;
  color: #1a2e1f; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px;
}
.ct-input-wrap, .ct-textarea-wrap {
  position: relative;
}
.ct-input-wrap > i, .ct-textarea-wrap > i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #035835; font-size: 15px; pointer-events: none;
}
.ct-textarea-wrap > i { top: 16px; transform: none; }
.ct-input-wrap input, .ct-textarea-wrap textarea {
  width: 100%; padding: 12px 14px 12px 40px;
  background: #f8f9fb; border: 1.5px solid rgba(3,88,53,.15);
  border-radius: 12px; font-size: 15px; color: #1a2e1f;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.ct-input-wrap input:focus, .ct-textarea-wrap textarea:focus {
  border-color: #035835;
  box-shadow: 0 0 0 3px rgba(3,88,53,.1);
  background: #fff;
}
.ct-textarea-wrap textarea { resize: vertical; }

.ct-submit-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg,#035835,#01378C); color: #fff;
  border: none; border-radius: 50px; padding: 14px 36px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  box-shadow: 0 6px 22px rgba(3,88,53,.35);
  transition: all .25s;
}
.ct-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(3,88,53,.45); }

/* Newsletter */
.ct-newsletter {
  background: linear-gradient(135deg,#022e1c 0%,#035835 50%,#01378C 100%);
  border-radius: 24px; padding: 36px 40px; margin-top: 48px;
  box-shadow: 0 12px 40px rgba(3,88,53,.2);
  position: relative; overflow: hidden;
}
.ct-newsletter::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(1,55,140,.25) 0%, transparent 60%);
}
.ct-nl-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.ct-nl-icon i { color: #fff; font-size: 28px; }
.ct-newsletter h4 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.ct-newsletter p  { font-size: 14.5px; color: rgba(255,255,255,.72); line-height: 1.7; margin: 0; }
.ct-nl-form { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.ct-nl-form .ct-input-wrap input {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2);
  color: #fff;
}
.ct-nl-form .ct-input-wrap input::placeholder { color: rgba(255,255,255,.5); }
.ct-nl-form .ct-input-wrap input:focus { border-color: rgba(255,255,255,.5); box-shadow: none; background: rgba(255,255,255,.18); }
.ct-nl-form .ct-input-wrap > i { color: rgba(255,255,255,.6); }
.ct-nl-form button {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: #fff; color: #035835; border: none; border-radius: 50px;
  padding: 12px 24px; font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all .25s;
}
.ct-nl-form button:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .ct-section { padding: 52px 0; }
  .ct-form-card { padding: 28px 24px; }
  .ct-newsletter { padding: 28px 24px; }
}
@media (max-width: 767px) {
  .ct-hero { padding: 70px 0 50px; }
  .ct-form-card { padding: 22px 18px; }
  .ct-newsletter { padding: 22px 18px; }
  .ct-nl-icon { width: 52px; height: 52px; }
}

/* ── Contact form feedback ── */
.ct-feedback {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 600; margin-bottom: 14px;
}
.ct-feedback-loading { background: rgba(1,55,140,.08); color: #01378C; border: 1px solid rgba(1,55,140,.2); }
.ct-feedback-success { background: rgba(3,88,53,.08); color: #035835; border: 1px solid rgba(3,88,53,.2); }
.ct-feedback-error   { background: rgba(220,38,38,.07); color: #dc2626; border: 1px solid rgba(220,38,38,.2); }

/* ── Newsletter feedback ── */
.ct-nl-feedback { font-size: 13px; font-weight: 600; padding: 8px 12px; border-radius: 8px; margin-bottom: 8px; }
.ct-nl-success  { background: rgba(74,222,128,.15); color: #4ade80; }
.ct-nl-error    { background: rgba(252,165,165,.15); color: #fca5a5; }
.ct-nl-info     { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); }

/* ════════════════════════════════════════════════
   FOOTER – REDESIGN
════════════════════════════════════════════════ */
.ft-footer {
  background: linear-gradient(160deg, #071810 0%, #0b1e30 60%, #071018 100%);
  color: rgba(255,255,255,.7);
  padding: 0 0 0;
  position: relative;
}

/* Top accent bar */
.ft-top-bar {
  height: 4px;
  background: linear-gradient(90deg, #216649, #2e8b5c, #216649, #1a5238, #216649);
  background-size: 200% 100%;
  animation: ft-bar-slide 6s linear infinite;
}
@keyframes ft-bar-slide { to { background-position: 200% 0; } }

.ft-footer .container { padding-top: 64px; }

/* ── Main grid ── */
.ft-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Brand column */
.ft-brand-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-bottom: 14px;
}
.ft-brand-logo img {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; object-position: center 20%;
  border: 2px solid rgba(255,255,255,.25);
}
.ft-brand-logo span {
  font-size: 17px; font-weight: 800; color: #fff;
  font-family: var(--heading-font);
}
.ft-brand-tagline {
  font-size: 13px; color: rgba(255,255,255,.5);
  margin-bottom: 16px; line-height: 1.6;
}
.ft-brand-quote {
  font-size: 13.5px; font-style: italic;
  color: rgba(255,255,255,.6); line-height: 1.7;
  border-left: 3px solid #035835;
  padding-left: 14px; margin: 0 0 22px;
}
.ft-social { display: flex; gap: 10px; }
.ft-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center;
  font-size: 15px; text-decoration: none; transition: all .2s;
}
.ft-social a:hover { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.3); transform: translateY(-2px); }

/* Nav columns */
.ft-col-title {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: #035835; margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.ft-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ft-nav-list a {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: rgba(255,255,255,.6); text-decoration: none;
  transition: color .2s, gap .2s;
}
.ft-nav-list a i { font-size: 13px; color: rgba(255,255,255,.3); flex-shrink: 0; transition: color .2s; }
.ft-nav-list a:hover { color: #fff; gap: 13px; }
.ft-nav-list a:hover i { color: #035835; }

/* Contact column */
.ft-contact-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 12px; }
.ft-contact-list li { display: flex; align-items: center; gap: 11px; }
.ft-ci-icon {
  width: 32px; height: 32px; min-width: 32px; border-radius: 8px;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ft-ci-icon i { font-size: 13px; color: #035835; font-weight: 900; }
.ft-contact-list li span,
.ft-contact-list li a {
  font-size: 13.5px; color: rgba(255,255,255,.65); text-decoration: none; line-height: 1.4;
}
.ft-contact-list li a:hover { color: #fff; }

/* Footer newsletter */
.ft-nl h6 { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; color: #035835; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.ft-nl h6 i { font-size: 13px; }
.ft-nl-form { display: flex; flex-direction: column; gap: 5px; }
.ft-nl-form .ft-nl-row { display: flex; gap: 5px; }
.ft-nl-form .ft-nl-row input { flex: 1; min-width: 0; }
.ft-nl-form input {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px; padding: 6px 10px; font-size: 12px;
  color: #fff; outline: none; width: 100%; transition: border-color .2s;
}
.ft-nl-form input::placeholder { color: rgba(255,255,255,.35); }
.ft-nl-form input:focus { border-color: rgba(74,222,128,.5); }
.ft-nl-form button {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#035835,#01378C); color: #fff; border: none;
  border-radius: 6px; padding: 7px 12px; font-size: 14px;
  cursor: pointer; transition: opacity .2s; white-space: nowrap;
}
.ft-nl-form button:hover { opacity: .85; }
.ft-nl-feedback { font-size: 11.5px; font-weight: 600; padding: 6px 10px; border-radius: 7px; margin-top: 4px; }
.ft-nl-ok   { background: rgba(74,222,128,.15); color: #4ade80; }
.ft-nl-err  { background: rgba(252,165,165,.15); color: #fca5a5; }
.ft-nl-info { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); }

/* ── Affiliations strip ── */
.ft-affil-strip {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.ft-affil-label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,.35); flex-shrink: 0;
  margin-right: 4px;
}
.ft-affil-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.ft-affil-chip {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  padding: 4px 14px; border-radius: 20px; text-decoration: none;
  transition: all .2s;
}
.ft-affil-chip:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); }

/* ── Bottom bar ── */
.ft-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; padding: 20px 0 28px;
}
.ft-copy { font-size: 13px; color: rgba(255,255,255,.4); margin: 0; }
.ft-copy strong { color: rgba(255,255,255,.7); }
.ft-bottom-links { display: flex; gap: 20px; }
.ft-bottom-links a {
  font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s;
}
.ft-bottom-links a:hover { color: #fff; }
.ft-lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  padding: 6px 16px; border-radius: 20px; text-decoration: none; transition: all .2s;
}
.ft-lang-btn:hover { background: rgba(255,255,255,.14); color: #fff; }

/* ── Responsive ── */
@media (max-width: 1199px) {
  .ft-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .ft-contact-col { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
  .ft-contact-col .ft-col-title { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ft-brand { grid-column: 1 / -1; }
  .ft-contact-col { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .ft-bottom-links { justify-content: center; }
  .ft-affil-strip { justify-content: center; }
  .ft-affil-label { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .ft-grid { grid-template-columns: 1fr; }
}

/* ── Cloudflare Turnstile ── */
.cf-turnstile { margin-bottom: 4px; }

/* ── Newsletter one-row layout (contact page) ── */
.ct-nl-row {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.ct-nl-row .ct-input-wrap { flex: 1; min-width: 140px; }
.ct-nl-btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 4px;
  background: #fff; color: #035835;
  border: none; border-radius: 50px;
  padding: 11px 22px; font-size: 14px; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: all .25s;
}
.ct-nl-btn:hover { background: rgba(255,255,255,.88); }

/* ════════════════════════════════════════════════
   GALLERY PAGE
════════════════════════════════════════════════ */

/* ── Hero ── */
.gl-hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: #07101a;
}
.gl-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 80%, rgba(3,88,53,.45) 0%, transparent 55%),
    radial-gradient(ellipse 65% 55% at 90% 15%, rgba(1,55,140,.5) 0%, transparent 50%),
    linear-gradient(150deg, #07101a 0%, #0b1a2e 55%, #071810 100%);
}
.gl-hero-shape {
  position: absolute; border-radius: 50% 0 50% 0;
  opacity: .05; pointer-events: none;
}
.gl-shape-1 { width:380px; height:380px; background:#01378C; top:-70px; right:-50px; transform:rotate(20deg); }
.gl-shape-2 { width:240px; height:240px; background:#035835; bottom:-40px; left:-20px; transform:rotate(-10deg); }

.gl-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05); padding: 7px 20px; border-radius: 30px;
  margin-bottom: 28px; backdrop-filter: blur(8px);
}
.gl-eyebrow i { color: #4ade80; font-size: 13px; }
.gl-hero-title {
  font-size: clamp(2.8rem,6vw,4rem); font-weight: 900; color: #fff;
  line-height: 1.05; margin-bottom: 20px; letter-spacing: -1px;
}
.gl-hero-lead {
  font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.85;
  max-width: 580px; margin: 0 auto;
}

/* ── Filters bar ── */
.gl-filters-bar {
  background: #fff;
  border-bottom: 1px solid rgba(3,88,53,.08);
  padding: 20px 0;
  position: sticky;
  top: 60px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(3,88,53,.06);
}
.gl-filters-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gl-filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.gl-filter-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6c757d;
  min-width: 80px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gl-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.gl-chip {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 600;
  padding: 5px 16px; border-radius: 30px;
  background: #f1f5f9;
  color: #4a5568;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all .2s;
}
.gl-chip:hover { background: rgba(3,88,53,.07); color: #035835; border-color: rgba(3,88,53,.2); }
.gl-chip.active { background: #035835; color: #fff; border-color: #035835; }

/* ── Gallery section ── */
.gl-section { padding: 60px 0 80px; background: #f8f9fb; }

/* Year block */
.gl-year-block { margin-bottom: 60px; }
.gl-year-block:last-child { margin-bottom: 0; }

.gl-year-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.gl-year-badge {
  font-size: 18px; font-weight: 900; color: #fff;
  background: linear-gradient(135deg, #035835, #01378C);
  padding: 8px 22px; border-radius: 50px;
  box-shadow: 0 6px 20px rgba(3,88,53,.3);
  white-space: nowrap;
}
.gl-year-line {
  flex: 1; height: 2px;
  background: linear-gradient(to right, rgba(3,88,53,.3), transparent);
  border-radius: 2px;
}
.gl-year-count {
  font-size: 13px; font-weight: 600; color: #94a3b8;
  white-space: nowrap;
}

/* Photo grid — responsive masonry-style */
.gl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1199px) { .gl-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .gl-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
@media (max-width: 480px)  { .gl-grid { grid-template-columns: 1fr 1fr; gap: 8px; } }

/* Make every 7th item span 2 columns for visual variety */
.gl-item:nth-child(7n+1) { grid-column: span 2; }
@media (max-width: 767px) { .gl-item:nth-child(7n+1) { grid-column: span 2; } }
@media (max-width: 480px) { .gl-item:nth-child(7n+1) { grid-column: span 1; } }

.gl-item a { display: block; text-decoration: none; }

.gl-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #071810, #0b2a4a);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gl-item:nth-child(7n+1) .gl-photo-wrap { aspect-ratio: 16/9; }

.gl-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  display: block;
}
.gl-item:hover .gl-photo-wrap img { transform: scale(1.07); }

.gl-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,16,26,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.gl-item:hover .gl-photo-overlay { opacity: 1; }

.gl-photo-info { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; }
.gl-photo-cat {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #4ade80; display: block;
}
.gl-photo-title {
  font-size: 13px; font-weight: 700; color: #fff;
  margin: 0; line-height: 1.3;
}
.gl-zoom-icon {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
  transition: background .2s;
}
.gl-item:hover .gl-zoom-icon { background: rgba(3,88,53,.8); }

/* ── Empty states ── */
.gl-empty, .gl-empty-section .container {
  text-align: center;
  padding: 80px 0 40px;
}
.gl-empty-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #035835, #01378C);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 32px rgba(3,88,53,.3);
}
.gl-empty-icon i { font-size: 2rem; color: #fff; }
.gl-empty h3, .gl-empty-section h2 { font-size: 1.8rem; font-weight: 800; color: #0f1f14; margin-bottom: 12px; }
.gl-empty p, .gl-empty-section p { font-size: 16px; color: #6c757d; max-width: 480px; margin: 0 auto 24px; line-height: 1.7; }
.gl-empty-section { padding: 100px 0; background: #f8f9fb; }

.gl-btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: #035835;
  border: 2px solid #035835; border-radius: 50px;
  padding: 10px 24px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all .25s;
}
.gl-btn-outline:hover { background: #035835; color: #fff; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .gl-hero { padding: 80px 0 60px; }
  .gl-section { padding: 44px 0 60px; }
  .gl-filters-bar { position: static; }
}
@media (max-width: 767px) {
  .gl-hero { padding: 70px 0 50px; }
  .gl-filter-group { gap: 6px; }
  .gl-filter-label { min-width: 60px; font-size: 11px; }
  .gl-chip { font-size: 12px; padding: 4px 12px; }
  .gl-year-header { gap: 10px; }
  .gl-year-badge { font-size: 15px; padding: 6px 16px; }
}

/* ════════════════════════════════════════════════
   GALLERY PAGE — SIDEBAR LAYOUT
════════════════════════════════════════════════ */

/* ── Hero ── */
.gl-hero {
  position: relative; padding: 120px 0 100px;
  overflow: hidden; background: #07101a;
}
.gl-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 80%, rgba(3,88,53,.45) 0%, transparent 55%),
    radial-gradient(ellipse 65% 55% at 90% 15%, rgba(1,55,140,.5) 0%, transparent 50%),
    linear-gradient(150deg, #07101a 0%, #0b1a2e 55%, #071810 100%);
}
.gl-hero-shape { position: absolute; border-radius: 50% 0 50% 0; opacity: .05; pointer-events: none; }
.gl-shape-1 { width:380px; height:380px; background:#01378C; top:-70px; right:-50px; transform:rotate(20deg); }
.gl-shape-2 { width:240px; height:240px; background:#035835; bottom:-40px; left:-20px; transform:rotate(-10deg); }
.gl-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05); padding: 7px 20px; border-radius: 30px;
  margin-bottom: 28px; backdrop-filter: blur(8px);
}
.gl-eyebrow i { color: #4ade80; font-size: 13px; }
.gl-hero-title {
  font-size: clamp(2.8rem,6vw,4rem); font-weight: 900; color: #fff;
  line-height: 1.05; margin-bottom: 20px; letter-spacing: -1px;
}
.gl-hero-lead {
  font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.85;
  max-width: 580px; margin: 0 auto;
}

/* ── Main section ── */
.gl-section { padding: 60px 0 80px; background: #f8f9fb; }

/* ── Layout: sidebar + main ── */
.gl-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}

/* ── Sidebar ── */
.gl-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gl-sidebar-block {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(3,88,53,.08);
  padding: 20px;
  box-shadow: 0 2px 12px rgba(1,55,140,.05);
}
.gl-sidebar-title {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: #035835;
  margin: 0 0 14px; display: flex; align-items: center; gap: 7px;
}

/* Active filter block */
.gl-active-filter-block {
  background: linear-gradient(135deg, rgba(3,88,53,.06), rgba(1,55,140,.06));
  border-color: rgba(3,88,53,.15);
}
.gl-active-filter-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: #035835;
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 10px;
}
.gl-active-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: #035835; color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 8px; margin-right: 4px;
}
.gl-clear-btn {
  display: inline-flex; align-items: center; gap: 5px;
  color: #dc2626; font-size: 12px; font-weight: 600;
  text-decoration: none; margin-top: 6px;
  transition: opacity .2s;
}
.gl-clear-btn:hover { opacity: .75; color: #dc2626; }

/* Year cards */
.gl-year-cards {
  display: flex; flex-direction: column; gap: 6px;
}
.gl-year-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px; border-radius: 10px;
  text-decoration: none; transition: all .18s;
  border: 1.5px solid transparent;
  background: #f8f9fb;
}
.gl-year-card:hover { background: rgba(3,88,53,.07); border-color: rgba(3,88,53,.2); }
.gl-year-card.active {
  background: #035835; border-color: #035835;
}
.gl-year-card-val {
  font-size: 15px; font-weight: 800; color: #1a2e1f;
  transition: color .18s;
}
.gl-year-card.active .gl-year-card-val { color: #fff; }
.gl-year-card-count {
  font-size: 11px; font-weight: 700;
  background: rgba(3,88,53,.1); color: #035835;
  padding: 2px 8px; border-radius: 20px;
  transition: all .18s;
}
.gl-year-card.active .gl-year-card-count { background: rgba(255,255,255,.25); color: #fff; }

/* Category list */
.gl-cat-list { display: flex; flex-direction: column; gap: 4px; }
.gl-cat-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 10px;
  text-decoration: none; transition: all .18s;
  border: 1.5px solid transparent;
}
.gl-cat-item:hover { background: rgba(3,88,53,.07); border-color: rgba(3,88,53,.15); }
.gl-cat-item.active { background: rgba(3,88,53,.08); border-color: rgba(3,88,53,.25); }
.gl-cat-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #035835; flex-shrink: 0;
  transition: transform .18s;
}
.gl-cat-item.active .gl-cat-dot { transform: scale(1.4); }
.gl-cat-name {
  font-size: 14px; font-weight: 600; color: #1a2e1f;
  flex: 1; transition: color .18s;
}
.gl-cat-item.active .gl-cat-name { color: #035835; font-weight: 700; }
.gl-cat-count {
  font-size: 11px; font-weight: 700;
  background: rgba(3,88,53,.08); color: #035835;
  padding: 2px 8px; border-radius: 20px; flex-shrink: 0;
}

/* ── Year block in main ── */
.gl-year-block { margin-bottom: 52px; }
.gl-year-block:last-child { margin-bottom: 0; }
.gl-year-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.gl-year-badge {
  font-size: 16px; font-weight: 900; color: #fff;
  background: linear-gradient(135deg, #035835, #01378C);
  padding: 6px 20px; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(3,88,53,.3);
  white-space: nowrap;
}
.gl-year-line {
  flex: 1; height: 2px;
  background: linear-gradient(to right, rgba(3,88,53,.25), transparent);
}
.gl-year-count { font-size: 12px; font-weight: 600; color: #94a3b8; white-space: nowrap; }

/* ── Photo grid ── */
.gl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gl-item:nth-child(7n+1) { grid-column: span 2; }
.gl-item a { display: block; text-decoration: none; }
.gl-photo-wrap {
  position: relative; overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #071810, #0b2a4a);
  aspect-ratio: 4/3; cursor: pointer;
}
.gl-item:nth-child(7n+1) .gl-photo-wrap { aspect-ratio: 16/9; }
.gl-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1); display: block;
}
.gl-item:hover .gl-photo-wrap img { transform: scale(1.07); }
.gl-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,16,26,.75) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
}
.gl-item:hover .gl-photo-overlay { opacity: 1; }
.gl-photo-info { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 3px; }
.gl-photo-cat {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #4ade80; display: block;
}
.gl-photo-title { font-size: 12px; font-weight: 700; color: #fff; margin: 0; line-height: 1.3; }
.gl-zoom-icon {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; transition: background .2s;
}
.gl-item:hover .gl-zoom-icon { background: rgba(3,88,53,.8); }

/* ── Empty states ── */
.gl-empty { text-align: center; padding: 60px 0 40px; }
.gl-empty-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #035835, #01378C);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 10px 28px rgba(3,88,53,.25);
}
.gl-empty-icon i { font-size: 1.8rem; color: #fff; }
.gl-empty h2, .gl-empty h3 { font-size: 1.6rem; font-weight: 800; color: #0f1f14; margin-bottom: 10px; }
.gl-empty p { font-size: 15px; color: #6c757d; max-width: 400px; margin: 0 auto 20px; line-height: 1.7; }
.gl-empty-section { padding: 100px 0; background: #f8f9fb; text-align: center; }
.gl-btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: #035835;
  border: 2px solid #035835; border-radius: 50px;
  padding: 9px 22px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all .25s;
}
.gl-btn-outline:hover { background: #035835; color: #fff; }

/* ── Responsive ── */
@media (max-width: 1199px) {
  .gl-layout { grid-template-columns: 230px 1fr; gap: 24px; }
}
@media (max-width: 991px) {
  .gl-hero { padding: 80px 0 60px; }
  .gl-section { padding: 44px 0 60px; }
  .gl-layout { grid-template-columns: 1fr; }
  .gl-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .gl-sidebar-block { flex: 1; min-width: 200px; }
  .gl-year-cards { flex-direction: row; flex-wrap: wrap; }
  .gl-year-card { flex: 0 0 auto; }
  .gl-cat-list { flex-direction: row; flex-wrap: wrap; }
  .gl-cat-item { flex: 0 0 auto; }
  .gl-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .gl-hero { padding: 70px 0 50px; }
  .gl-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gl-item:nth-child(7n+1) { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gl-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .gl-item:nth-child(7n+1) { grid-column: span 1; }
}

/* ════════════════════════════════════════════════
   BLOG DETAIL PAGE (pd-) + TRAVELOGUE DETAIL
════════════════════════════════════════════════ */

/* ── Hero ── */
.pd-hero {
  position: relative;
  padding: 100px 0 72px;
  overflow: hidden;
  background: linear-gradient(135deg, #07101a 0%, #0b1a2e 55%, #071810 100%);
}
.tv-detail-hero {
  background: linear-gradient(135deg, #07101a 0%, #0b2a4a 55%, #071810 100%);
}
.pd-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 10% 80%, rgba(3,88,53,.4) 0%, transparent 55%),
    radial-gradient(ellipse 60% 55% at 90% 15%, rgba(1,55,140,.45) 0%, transparent 50%);
}

/* Breadcrumb */
.pd-breadcrumb {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.pd-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.pd-breadcrumb a:hover { color: #fff; }
.pd-breadcrumb i { font-size: 10px; color: rgba(255,255,255,.3); }
.pd-breadcrumb span { color: rgba(255,255,255,.4); }

/* Hero meta */
.pd-hero-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 18px;
}
.pd-cat {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: #4ade80;
  background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.25);
  padding: 4px 13px; border-radius: 20px;
}
.tv-detail-cat { color: #60a5fa; background: rgba(96,165,250,.12); border-color: rgba(96,165,250,.25); }
.tv-detail-region { color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); font-size: 11px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; padding: 4px 13px; border-radius: 20px; border: 1px solid; }
.pd-date {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.45);
}
.pd-date i { font-size: 12px; }

.pd-hero-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 900; color: #fff;
  line-height: 1.15; margin-bottom: 18px; letter-spacing: -.5px;
}
.pd-hero-excerpt {
  font-size: 17px; color: rgba(255,255,255,.62); line-height: 1.8;
  max-width: 680px; margin: 0 auto;
}

/* ── Featured image ── */
.pd-featured-img-wrap { background: #f8f9fb; padding: 0 0 0; }
.pd-featured-img {
  border-radius: 20px; overflow: hidden;
  max-height: 480px; box-shadow: 0 16px 48px rgba(1,55,140,.14);
  margin-top: -32px; position: relative; z-index: 2;
}
.pd-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Cuba map banner */
.tv-detail-map-banner {
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(155deg, #071810 0%, #0b2a4a 100%);
  box-shadow: 0 16px 48px rgba(1,55,140,.2);
  margin-top: -32px; position: relative; z-index: 2;
  padding: 40px 48px;
}
.tv-detail-map-inner {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.tv-detail-map-inner > i {
  font-size: 3.5rem; color: #60a5fa;
  filter: drop-shadow(0 4px 16px rgba(96,165,250,.4));
  flex-shrink: 0;
}
.tv-detail-map-country {
  display: block; font-size: 2rem; font-weight: 900; color: #fff; line-height: 1;
}
.tv-detail-map-sub {
  display: block; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px;
}
.tv-detail-map-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-left: auto;
}
.tv-detail-map-tags span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px; border-radius: 20px;
}
.tv-detail-map-tags span i { font-size: 11px; }

/* ── Content + Sidebar layout ── */
.pd-section { padding: 56px 0 80px; background: #f8f9fb; }

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* ── Article ── */
.pd-article {
  background: #fff; border-radius: 20px;
  border: 1px solid rgba(3,88,53,.08);
  box-shadow: 0 4px 24px rgba(1,55,140,.07);
  padding: 44px 48px;
}

.pd-content {
  font-size: 16px; line-height: 1.9; color: #334155;
  margin-bottom: 36px;
}
.pd-content h2, .pd-content h3 {
  font-size: 1.2rem; font-weight: 800; color: #0f1f14;
  margin: 32px 0 12px; line-height: 1.3;
}
.pd-content h4 { font-size: 1.05rem; font-weight: 700; color: #035835; margin: 24px 0 8px; }
.pd-content p { margin-bottom: 18px; }
.pd-content ul, .pd-content ol { padding-left: 22px; margin-bottom: 18px; }
.pd-content li { margin-bottom: 6px; }
.pd-content hr { border: none; border-top: 1px solid rgba(3,88,53,.1); margin: 32px 0; }
.pd-content a { color: #01378C; font-weight: 600; text-decoration: none; }
.pd-content a:hover { color: #035835; text-decoration: underline; }
.pd-content blockquote {
  border-left: 4px solid #035835; padding: 12px 0 12px 20px;
  margin: 24px 0; font-style: italic; color: #4a5568;
  background: rgba(3,88,53,.04); border-radius: 0 10px 10px 0;
}

/* Tags */
.pd-tags {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  padding: 20px 0; border-top: 1px solid rgba(3,88,53,.08);
  margin-bottom: 24px;
}
.pd-tag-label { font-size: 13px; font-weight: 700; color: #6c757d; }
.pd-tag {
  display: inline-block; font-size: 12.5px; font-weight: 600;
  color: #035835; background: rgba(3,88,53,.07);
  border: 1px solid rgba(3,88,53,.18); border-radius: 20px;
  padding: 4px 14px; text-decoration: none; transition: all .2s;
}
.pd-tag:hover { background: #035835; color: #fff; border-color: #035835; }

/* Share */
.pd-share {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 0; border-top: 1px solid rgba(3,88,53,.08);
  margin-bottom: 24px;
}
.pd-share-label { font-size: 13px; font-weight: 700; color: #6c757d; margin-right: 4px; }
.pd-share-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; text-decoration: none; color: #fff;
  transition: transform .2s, box-shadow .2s;
}
.pd-share-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.2); color: #fff; }
.pd-share-fb { background: #1877f2; }
.pd-share-li { background: #0a66c2; }
.pd-share-tw { background: #000; }

/* Prev / Next */
.pd-nav-posts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding: 24px 0; border-top: 1px solid rgba(3,88,53,.08);
  margin-bottom: 24px;
}
.pd-nav-post a {
  display: flex; flex-direction: column; gap: 5px;
  text-decoration: none; padding: 14px 16px;
  background: #f8f9fb; border: 1px solid rgba(3,88,53,.08);
  border-radius: 12px; transition: all .2s;
}
.pd-nav-post a:hover { background: rgba(3,88,53,.06); border-color: rgba(3,88,53,.2); }
.pd-nav-dir {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: #035835;
  display: flex; align-items: center; gap: 5px;
}
.pd-nav-next .pd-nav-dir { justify-content: flex-end; }
.pd-nav-title { font-size: 13.5px; font-weight: 600; color: #1a2e1f; line-height: 1.4; }
.pd-nav-next { text-align: right; }

/* Back button */
.pd-back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(3,88,53,.07); color: #035835;
  border: 1.5px solid rgba(3,88,53,.2); border-radius: 50px;
  padding: 10px 22px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all .25s;
}
.pd-back-btn:hover { background: #035835; color: #fff; border-color: #035835; }

/* ── Sidebar ── */
.pd-sidebar {
  position: sticky; top: 90px;
  display: flex; flex-direction: column; gap: 20px;
}

.pd-sidebar-card {
  background: #fff; border-radius: 16px;
  border: 1px solid rgba(3,88,53,.08);
  box-shadow: 0 2px 14px rgba(1,55,140,.06);
  padding: 22px;
}

.pd-sidebar-title {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: #035835;
  margin: 0 0 16px; display: flex; align-items: center; gap: 7px;
}

/* Author card */
.pd-author-card {
  text-align: center;
  background: linear-gradient(160deg, #071810 0%, #0b2a4a 100%);
  border-color: transparent;
  position: relative; overflow: hidden;
}
.pd-author-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, #035835, #01378C, #60a5fa);
}
.pd-author-img {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  border: 2.5px solid rgba(255,255,255,.3); margin-bottom: 12px;
}
.pd-author-name { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.pd-author-role { font-size: 12.5px; color: rgba(255,255,255,.6); line-height: 1.5; margin-bottom: 14px; }
.pd-author-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; color: #4ade80;
  text-decoration: none; transition: gap .2s;
}
.pd-author-link:hover { gap: 8px; color: #4ade80; }

/* Destination card (travelogue) */
.tv-sidebar-destination { }
.tv-dest-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.tv-dest-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: #1a2e1f;
}
.tv-dest-row i { color: #035835; font-size: 14px; flex-shrink: 0; width: 16px; }
.tv-sidebar-source-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #01378C;
  background: rgba(1,55,140,.06); border: 1px solid rgba(1,55,140,.15);
  border-radius: 10px; padding: 9px 14px; text-decoration: none;
  transition: all .2s;
}
.tv-sidebar-source-link:hover { background: rgba(1,55,140,.12); color: #01378C; }
.tv-sidebar-source-link i:last-child { margin-left: auto; font-size: 11px; }

/* Recent list */
.pd-recent-list { display: flex; flex-direction: column; gap: 12px; }
.pd-recent-item {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; padding: 8px; border-radius: 10px;
  transition: background .2s;
}
.pd-recent-item:hover { background: rgba(3,88,53,.05); }
.pd-recent-thumb {
  width: 52px; height: 52px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
}
.pd-recent-thumb-placeholder {
  width: 52px; height: 52px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, #071810, #0b2a4a);
  display: flex; align-items: center; justify-content: center;
}
.pd-recent-thumb-placeholder i { color: rgba(255,255,255,.4); font-size: 18px; }
.pd-recent-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.pd-recent-cat {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: #035835;
}
.pd-recent-title {
  font-size: 13px; font-weight: 700; color: #1a2e1f;
  line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pd-recent-date {
  font-size: 11.5px; color: #94a3b8; font-weight: 600;
  display: flex; align-items: center; gap: 4px;
}
.pd-recent-date i { font-size: 10px; }

/* Category chips */
.pd-cat-list { display: flex; flex-wrap: wrap; gap: 7px; }
.pd-cat-chip {
  display: inline-block; font-size: 12.5px; font-weight: 600;
  color: #035835; background: rgba(3,88,53,.07);
  border: 1px solid rgba(3,88,53,.18); border-radius: 20px;
  padding: 5px 14px; text-decoration: none; transition: all .2s;
}
.pd-cat-chip:hover { background: #035835; color: #fff; border-color: #035835; }

/* CTA card */
.pd-sidebar-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(3,88,53,.06), rgba(1,55,140,.06));
  border-color: rgba(3,88,53,.15);
}
.tv-sidebar-cta { background: linear-gradient(135deg, rgba(1,55,140,.06), rgba(3,88,53,.06)); }
.pd-sidebar-cta > i { font-size: 2rem; color: #035835; margin-bottom: 10px; display: block; }
.tv-sidebar-cta > i { color: #01378C; }
.pd-sidebar-cta p { font-size: 14px; color: #4a5568; line-height: 1.6; margin-bottom: 14px; }
.pd-cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #035835, #01378C); color: #fff;
  border-radius: 50px; padding: 10px 22px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all .25s;
  box-shadow: 0 4px 14px rgba(3,88,53,.3);
}
.pd-cta-btn:hover { box-shadow: 0 8px 22px rgba(3,88,53,.4); color: #fff; transform: translateY(-1px); }

/* "Read full story" button on travelogues listing */
.tv-read-detail-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #035835, #01378C); color: #fff;
  border-radius: 50px; padding: 11px 24px; font-size: 14.5px; font-weight: 700;
  text-decoration: none; box-shadow: 0 4px 16px rgba(3,88,53,.3);
  transition: all .25s;
}
.tv-read-detail-btn:hover { box-shadow: 0 8px 24px rgba(3,88,53,.4); color: #fff; gap: 12px; }

/* ── Responsive ── */
@media (max-width: 1199px) {
  .pd-layout { grid-template-columns: 1fr 280px; gap: 28px; }
}
@media (max-width: 991px) {
  .pd-layout { grid-template-columns: 1fr; }
  .pd-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .pd-author-card { grid-column: 1 / -1; }
  .pd-article { padding: 32px 28px; }
  .tv-detail-map-banner { padding: 28px 28px; }
}
@media (max-width: 767px) {
  .pd-hero { padding: 80px 0 52px; }
  .pd-article { padding: 24px 20px; }
  .pd-sidebar { grid-template-columns: 1fr; }
  .pd-nav-posts { grid-template-columns: 1fr; }
  .tv-detail-map-banner { padding: 22px 20px; }
  .tv-detail-map-inner { gap: 16px; }
  .tv-detail-map-inner > i { font-size: 2.5rem; }
  .tv-detail-map-country { font-size: 1.5rem; }
  .tv-detail-map-tags { margin-left: 0; }
}

/* ════════════════════════════════════════════════
   BLOG – CATEGORY FILTER BAR + PAGINATION
════════════════════════════════════════════════ */

/* ── Filter bar ── */
.bl-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(3,88,53,.08);
  box-shadow: 0 2px 12px rgba(1,55,140,.05);
}

.bl-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 30px;
  background: #f1f5f9;
  color: #4a5568;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all .2s;
}
.bl-filter-chip i { font-size: 13px; }
.bl-filter-chip:hover {
  background: rgba(3,88,53,.07);
  color: #035835;
  border-color: rgba(3,88,53,.2);
}
.bl-filter-chip.active {
  background: #035835;
  color: #fff;
  border-color: #035835;
  box-shadow: 0 4px 14px rgba(3,88,53,.3);
}
.bl-filter-count {
  font-size: 11px;
  font-weight: 700;
  background: rgba(0,0,0,.1);
  padding: 1px 7px;
  border-radius: 20px;
  line-height: 1.6;
}
.bl-filter-chip.active .bl-filter-count { background: rgba(255,255,255,.25); }

/* ── Pagination ── */
.bl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.bl-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .2s;
  border: 1.5px solid rgba(3,88,53,.2);
  color: #035835;
  background: #fff;
}
.bl-page-btn:hover:not(.disabled) {
  background: #035835;
  color: #fff;
  border-color: #035835;
}
.bl-page-btn.disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.bl-page-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bl-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #4a5568;
  background: #fff;
  border: 1.5px solid rgba(3,88,53,.12);
  transition: all .2s;
}
.bl-page-num:hover { background: rgba(3,88,53,.07); color: #035835; border-color: rgba(3,88,53,.25); }
.bl-page-num.active {
  background: #035835;
  color: #fff;
  border-color: #035835;
  box-shadow: 0 4px 14px rgba(3,88,53,.3);
}

.bl-page-ellipsis {
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  padding: 0 4px;
}

@media (max-width: 576px) {
  .bl-filter-bar { padding: 14px 16px; gap: 6px; }
  .bl-filter-chip { font-size: 12.5px; padding: 6px 12px; }
  .bl-pagination { gap: 6px; margin-top: 40px; }
  .bl-page-btn { padding: 8px 14px; font-size: 13px; }
  .bl-page-num { width: 36px; height: 36px; font-size: 13px; }
}

/* ════════════════════════════════════════════════
   ACCESSIBILITY – LARGER FONT SIZES
   Improves readability for visually impaired users
════════════════════════════════════════════════ */

/* ── SERVICES PAGE ── */
/* Hero */
.sv-hero-lead { font-size: 18.5px; }
.sv-hero-tags span { font-size: 13.5px; }
/* Stats strip */
.sv-stat-val { font-size: 28px; }
.sv-stat-lbl { font-size: 13.5px; }
/* Intro cards */
.sv-intro-card--dark h3,
.sv-intro-card--light h3 { font-size: 20px; }
.sv-intro-card--dark p,
.sv-intro-card--light p { font-size: 16.5px; }
.sv-method-chip { font-size: 15px; }
.sv-regions span { font-size: 14px; }
/* Service cards */
.sv-section-header h2 { font-size: clamp(1.9rem, 3vw, 2.4rem); }
.sv-section-header p { font-size: 17px; }
.sv-card-body h4 { font-size: 18.5px; }
.sv-card-body p { font-size: 16px; }
.sv-card-tags span { font-size: 13px; }
/* CTA */
.sv-cta-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.sv-cta-text { font-size: 17.5px; }
.sv-cta-btn { font-size: 17px; }

/* ── CONTACT PAGE ── */
/* Hero */
.ct-hero-lead { font-size: 18.5px; }
/* Info card */
.ct-info-header h4 { font-size: 18.5px; }
.ct-info-header p { font-size: 13.5px; }
.ct-info-intro { font-size: 15.5px; }
.ct-info-lbl { font-size: 12px; }
.ct-info-val { font-size: 15.5px; }
/* Form card */
.ct-form-header h3 { font-size: 22px; }
.ct-form-header p { font-size: 16px; }
.ct-form label { font-size: 14px; }
.ct-input-wrap input,
.ct-textarea-wrap textarea { font-size: 16px; }
.ct-submit-btn { font-size: 17.5px; }
/* Newsletter */
.ct-newsletter h4 { font-size: 22px; }
.ct-newsletter p { font-size: 16px; }
.ct-nl-btn { font-size: 16px; }

/* ── BLOG PAGE ── */
/* Hero */
.bl-hero-lead { font-size: 18.5px; }
/* Filter bar */
.bl-filter-chip { font-size: 14.5px; }
/* Featured card */
.bl-featured-title { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.bl-featured-excerpt { font-size: 17px; }
.bl-read-btn { font-size: 16px; }
/* Grid cards */
.bl-post-body h3 { font-size: 19px; }
.bl-post-body p { font-size: 16px; }
.bl-read-more { font-size: 15px; }
.bl-date { font-size: 13.5px; }
.bl-cat { font-size: 12px; }
/* Pagination */
.bl-page-btn { font-size: 15.5px; }
.bl-page-num { font-size: 15.5px; }
/* Empty state */
.bl-empty h2 { font-size: 2.2rem; }
.bl-empty p { font-size: 18px; }

/* ── KITCHEN PAGE ── */
/* Hero */
.kc-hero-lead { font-size: 19px; }
/* Pillars strip */
.kc-pillar-item { font-size: 15.5px; }
/* About / Philosophy */
.kc-about-title { font-size: clamp(1.8rem, 3vw, 2.3rem); }
.kc-about-p { font-size: 17.5px; }
/* Quote card */
.kc-quote-text { font-size: 18.5px; }
.kc-quote-cite { font-size: 15px; }
.kc-principles li { font-size: 16px; }
/* Accent banner */
.kc-accent-item h4 { font-size: 17px; }
.kc-accent-item p { font-size: 15px; }
/* Recipes section */
.kc-section-header h2 { font-size: clamp(1.9rem, 3vw, 2.4rem); }
.kc-section-header p { font-size: 17px; }
.kc-recipe-body h3 { font-size: 20px; }
.kc-recipe-body > p { font-size: 16px; }
.kc-meta-label { font-size: 11.5px; }
.kc-meta-val { font-size: 14.5px; }
.kc-recipe-btn { font-size: 15.5px; }
/* Modal */
.kc-modal-inner h2 { font-size: 1.6rem; }
.kc-recipe-content { font-size: 16.5px; }
/* Coming soon */
.kc-coming-soon h2 { font-size: 2.2rem; }
.kc-coming-soon p { font-size: 18px; }

/* ── TRAVELOGUES PAGE ── */
/* Hero */
.tv-hero-lead { font-size: 19px; }
/* Featured card */
.tv-featured-title { font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
.tv-featured-text { font-size: 17.5px; }
.tv-featured-source { font-size: 15px; }
.tv-featured-source a { font-size: 15px; }
.tv-read-detail-btn { font-size: 16px; }
/* Posts grid */
.tv-section-header h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); }
.tv-post-body h3 { font-size: 19px; }
.tv-post-body p { font-size: 16px; }
.tv-read-more { font-size: 15px; }
.tv-post-date { font-size: 13.5px; }
.tv-post-cat { font-size: 12px; }

/* ── FOOTER ── */
/* Brand column */
.ft-brand-logo span { font-size: 19px; }
.ft-brand-tagline { font-size: 14.5px; }
.ft-brand-quote { font-size: 15px; }
/* Social icons */
.ft-social a { font-size: 17px; }
/* Column headings */
.ft-col-title { font-size: 14px; }
/* Nav links */
.ft-nav-list a { font-size: 15.5px; }
.ft-nav-list a i { font-size: 14.5px; }
/* Contact list */
.ft-contact-list li span,
.ft-contact-list li a { font-size: 15px; }
/* Newsletter */
.ft-nl h6 { font-size: 12.5px; }
.ft-nl-form input { font-size: 13.5px; }
.ft-nl-feedback { font-size: 13px; }
/* Affiliations strip */
.ft-affil-label { font-size: 12px; }
.ft-affil-chip { font-size: 13.5px; }
/* Bottom bar */
.ft-copy { font-size: 14.5px; }
.ft-bottom-links a { font-size: 14.5px; }
.ft-lang-btn { font-size: 14px; }
