/* =========================================================
   POINT OF GROWTH — BRAND TOKENS
   Palette carried over from existing brand, tuned for depth.
   ========================================================= */
:root{
  --pog-teal-deep:   #0A362E;   /* darkest teal, footer/topbar */
  --pog-teal:        #0F4C42;   /* primary teal */
  --pog-teal-light:  #146357;   /* hover/mid teal */
  --pog-green:       #1F8C6E;   /* growth accent */
  --pog-green-light: #4FCBA0;   /* icon accent, footer dots */
  --pog-orange:      #EF7D31;   /* Sankofa/POG orange */
  --pog-orange-dark: #D9631A;
  --pog-orange-light:#FFA05C;
  --pog-sand:        #FBF6EE;   /* warm off-white section bg */
  --pog-sand-dark:   #F2E9D8;
  --pog-ink:         #172420;   /* body text */
  --pog-ink-soft:    #4B5A55;
  --pog-white:       #FFFFFF;
  --pog-charcoal: #14201B;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 50px -20px rgba(10, 54, 46, 0.35);
  --shadow-card: 0 12px 30px -14px rgba(23, 36, 32, 0.25);
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--pog-ink);
  background: var(--pog-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pog-teal-deep);
  letter-spacing: -0.01em;
}

.eyebrow{
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pog-orange);
}

a{ text-decoration: none; }

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

::selection{ background: var(--pog-orange); color: #fff; }

.section{ padding: 6.5rem 0; }
@media (max-width: 767.98px){ .section{ padding: 4rem 0; } }

.section-tight{ padding: 4.5rem 0; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-pog-cta{
  background: var(--pog-orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.72rem 1.6rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  transition: all .25s ease;
  box-shadow: 0 10px 24px -10px rgba(239,125,49,0.65);
}
.btn-pog-cta:hover{
  background: var(--pog-orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(239,125,49,0.75);
}
.btn-pog-cta i{ transition: transform .25s ease; }
.btn-pog-cta:hover i{ transform: translate(3px,-3px); }

.btn-pog-outline{
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.55rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all .25s ease;
}
.btn-pog-outline:hover{
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

.btn-pog-teal{
  background: var(--pog-teal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.72rem 1.6rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  transition: all .25s ease;
}
.btn-pog-teal:hover{
  background: var(--pog-teal-light);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
.topbar{
  background: var(--pog-teal-deep);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 0.5rem 0;
}
.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.topbar-contact{ display:flex; align-items:center; gap:1.4rem; flex-wrap:wrap; }
.topbar-contact a{ color: rgba(255,255,255,0.85); display:inline-flex; align-items:center; gap:0.45rem; }
.topbar-contact a:hover{ color: var(--pog-orange-light); }
.topbar-social{ display:flex; align-items:center; gap:0.9rem; }
.topbar-social a{ color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.topbar-social a:hover{ color: var(--pog-orange-light); }

/* =========================================================
   MAIN NAV
   ========================================================= */
.site-header{
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 1px 0 rgba(23,36,32,0.06);
}
.navbar{ padding: 0.85rem 0; }
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.05;
  color: var(--pog-teal-deep);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.brand-mark{ flex-shrink:0; }

.navbar-nav .nav-link{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--pog-ink);
  padding: 0.55rem 1rem !important;
  position: relative;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover{ color: var(--pog-orange); }
.navbar-nav .nav-link.active::after{
  content:"";
  position:absolute;
  left: 1rem; right: 1rem; bottom: 0.25rem;
  height: 2px;
  background: var(--pog-orange);
  border-radius: 2px;
}
.dropdown-menu{
  border: none;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
}
.dropdown-item{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
}
.dropdown-item:hover{ background: var(--pog-sand); color: var(--pog-orange-dark); }
.navbar-toggler{ border:none; font-size:1.6rem; color: var(--pog-teal-deep); }
.navbar-toggler:focus{ box-shadow:none; }

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero-slider{
  position: relative;
  overflow: hidden;
}
.hero-slide{
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-slide::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(10,54,46,0.92) 0%, rgba(10,54,46,0.72) 42%, rgba(10,54,46,0.35) 68%, rgba(10,54,46,0.15) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  max-width: 720px;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:0.6rem;
  font-family: var(--font-mono);
  color: var(--pog-orange-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.hero-eyebrow::before{
  content:"";
  width: 34px; height: 2px;
  background: var(--pog-orange);
  display:inline-block;
}
.hero-title{
  color: #fff;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}
.hero-title .accent{
  position: relative;
  color: var(--pog-orange-light);
  font-style: italic;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}
.hero-sub{
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 2.2rem;
}
.hero-actions{ display:flex; gap:1rem; flex-wrap:wrap; }

/* carousel controls */
.hero-slider .carousel-indicators{
  bottom: 2.2rem;
  z-index: 3;
  justify-content: flex-start;
  margin-left: max(1.5rem, calc((100% - 1140px)/2 + 0.75rem));
  gap: 0.4rem;
}
.hero-slider .carousel-indicators [data-bs-target]{
  width: 34px; height: 4px;
  border-radius: 4px;
  background-color: rgba(255,255,255,0.4);
  border: none;
  opacity: 1;
}
.hero-slider .carousel-indicators .active{ background-color: var(--pog-orange); }

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next{
  width: 3.4rem; height: 3.4rem;
  top: 50%; transform: translateY(-50%);
  bottom: auto;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  opacity: 0.85;
}
.hero-slider .carousel-control-prev{ left: 1.5rem; }
.hero-slider .carousel-control-next{ right: 1.5rem; }
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover{ background: rgba(255,255,255,0.25); opacity:1; }
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon{ width: 1.1rem; height: 1.1rem; }

@media (max-width: 767.98px){
  .hero-slide{ min-height: 80vh; }
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next{ display:none; }
}

/* wave shape at hero base, echoes the pool/swim programme */
.hero-wave{
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg{ width: 100%; height: 70px; display:block; }
.hero-wave path{ fill: var(--pog-sand); }

/* =========================================================
   WHO WE ARE
   ========================================================= */
.who-section{
  background: var(--pog-sand);
  padding-top: 5.5rem;
}
.who-media{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}
.who-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,54,46,0) 40%, rgba(10,54,46,0.55) 100%);
}
.who-media-badge{
  position: absolute;
  bottom: 1.4rem; left: 1.4rem;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-card);
}
.who-media-badge .num{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--pog-orange);
  line-height: 1;
}
.who-media-badge .label{
  font-size: 0.78rem;
  color: var(--pog-ink-soft);
  font-weight: 600;
  line-height: 1.2;
}
.who-copy .eyebrow{ margin-bottom: 0.9rem; display:block; }
.who-copy h2{
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1.3rem;
}
.who-copy p{
  color: var(--pog-ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}
.who-pillars{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.who-pillar{
  display:flex; align-items:flex-start; gap:0.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pog-teal-deep);
}
.who-pillar i{
  color: var(--pog-green);
  font-size: 1.15rem;
  margin-top: 0.1rem;
}

/* =========================================================
   DID YOU KNOW (stat) SECTION
   ========================================================= */
.stat-section{
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.stat-section::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(10,54,46,0.88) 0%, rgba(10,54,46,0.55) 48%, rgba(10,54,46,0.15) 100%);
}
.stat-content{ position:relative; z-index:2; max-width: 620px; }
.stat-content h2{
  color: var(--pog-green-light);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  margin-bottom: 1.6rem;
}
.stat-card{
  background: rgba(255,255,255,0.97);
  border-left: 5px solid var(--pog-orange);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-card);
}
.stat-card p{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--pog-teal-deep);
  margin: 0;
  line-height: 1.45;
}
.stat-card small{
  display:block;
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pog-ink-soft);
}

/* =========================================================
   JOIN US CARD
   ========================================================= */
.join-section{
  background: var(--pog-sand);
  position: relative;
}
.join-wrap{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.join-wrap::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(10,54,46,0.15) 0%, rgba(10,54,46,0.05) 100%);
}
.join-card{
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.6rem 2.4rem;
  max-width: 480px;
  margin: 2.5rem;
  box-shadow: var(--shadow-card);
}
.join-icon{
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--pog-sand);
  border: 1px solid var(--pog-sand-dark);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 1rem;
}
.join-icon i{ font-size: 1.6rem; color: var(--pog-green); }
.join-ribbon{
  display: inline-block;
  background: var(--pog-teal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 4px 4px 4px 0;
  margin-bottom: 1.1rem;
}
.join-card p{ color: var(--pog-ink-soft); margin-bottom: 1.6rem; }

/* =========================================================
   THREE-UP CTA CARDS (Give a Hand / Programmes / Volunteer)
   ========================================================= */
.cta-strip{ background: #fff; }
.cta-card{
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  height: 100%;
  border: 1px solid var(--pog-sand-dark);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.cta-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.cta-card .cta-icon{
  width: 56px; height:56px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 1.3rem;
  font-size: 1.4rem;
  color: #fff;
}
.cta-card.orange .cta-icon{ background: var(--pog-orange); }
.cta-card.teal .cta-icon{ background: var(--pog-teal); }
.cta-card.green .cta-icon{ background: var(--pog-green); }
.cta-card h4{ font-size: 1.25rem; margin-bottom: 0.7rem; }
.cta-card p{ color: var(--pog-ink-soft); font-size: 0.95rem; margin-bottom: 1.3rem; }
.cta-card a.card-link{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--pog-teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.cta-card a.card-link i{ transition: transform .2s ease; }
.cta-card:hover a.card-link i{ transform: translate(3px,-3px); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--pog-teal-deep);
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-top: 1rem;
}
.footer-wave{ line-height:0; margin-top:-1px; }
.footer-wave svg{ width:100%; height:60px; }
.footer-wave path{ fill: var(--pog-sand); }
.footer-main{ padding: 3.5rem 0 3rem; }
.footer-brand{
  display:flex; align-items:center; gap:0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.footer-tagline{ font-size: 0.9rem; max-width: 300px; margin-bottom: 1.4rem; }
.footer-social{ display:flex; gap:0.7rem; }
.footer-social a{
  width: 36px; height:36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display:flex; align-items:center; justify-content:center;
  color: #fff;
  transition: all .2s ease;
}
.footer-social a:hover{ background: var(--pog-orange); border-color: var(--pog-orange); }
.footer-heading{
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: 0.7rem;
}
.footer-heading::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width: 30px; height:2px;
  background: var(--pog-orange);
}
.footer-mission{ font-size: 0.88rem; line-height:1.6; }
.footer-links{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:0.7rem; }
.footer-links a{ color: rgba(255,255,255,0.75); font-size: 0.9rem; display:flex; align-items:center; gap:0.5rem; }
.footer-links a i{ color: var(--pog-orange); font-size: 0.8rem; }
.footer-links a:hover{ color: #fff; }
.footer-contact{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:0.9rem; }
.footer-contact li{ display:flex; align-items:flex-start; gap:0.7rem; font-size: 0.9rem; }
.footer-contact i{ color: var(--pog-orange); margin-top: 0.2rem; }
.footer-contact a{ color: rgba(255,255,255,0.75); }
.footer-contact a:hover{ color:#fff; }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,0.12); padding: 1.2rem 0; }
.footer-bottom-inner{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:0.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}

.back-to-top{
  position: fixed;
  right: 1.5rem; bottom: 1.5rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--pog-orange);
  color: #fff;
  display: flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 24px -8px rgba(239,125,49,0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 1040;
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background: var(--pog-orange-dark); color:#fff; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
[data-reveal]{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible{ opacity:1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */
@media (max-width: 991.98px){
  .navbar-collapse{
    background:#fff;
    margin-top: 1rem;
    padding: 1rem 0.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
  }
  .navbar-nav .nav-link.active::after{ display:none; }
  .btn-pog-cta.d-lg-inline-flex{ display:inline-flex !important; margin-top: 0.5rem; margin-left: 0.5rem;}
  .who-pillars{ grid-template-columns: 1fr; }
  .join-card{ margin: 1.2rem; padding: 1.8rem; }
}


/* =========================================================
   PAGE BANNER (inner pages)
   ========================================================= */
.page-banner{
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-banner::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(10,54,46,0.93) 0%, rgba(10,54,46,0.75) 45%, rgba(10,54,46,0.35) 100%);
}
.page-banner .container{ position:relative; z-index:2; }
.page-banner h1{
  color:#fff;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: 0;
}
.page-banner .eyebrow{ color: var(--pog-orange-light); display:block; margin-bottom:0.8rem; }
.page-banner-badge{
  position:absolute;
  left: 2rem; bottom: 1.6rem;
  z-index:2;
  width:52px; height:52px;
  border-radius:50%;
  background: rgba(255,255,255,0.1);
  border:1.5px solid rgba(255,255,255,0.4);
  display:flex; align-items:center; justify-content:center;
}
.page-banner-badge svg{ width:26px; height:26px; }

/* breadcrumb-ish trail under title */
.page-banner-trail{
  color: rgba(255,255,255,0.75);
  font-size:0.9rem;
  margin-top:0.9rem;
  display:flex; align-items:center; gap:0.5rem;
}
.page-banner-trail a{ color:#fff; }
.page-banner-trail i{ font-size:0.7rem; }

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-media{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}
.about-copy .eyebrow{ display:block; margin-bottom:0.7rem; }
.about-copy h2{ font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 1.1rem; }
.about-copy > p{ color: var(--pog-ink-soft); font-size: 1.02rem; margin-bottom: 1.8rem; }

.about-features{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}
.about-feature{ display:flex; gap:0.9rem; align-items:flex-start; }
.about-feature .icon{
  width:44px; height:44px; flex-shrink:0;
  border-radius:50%;
  background: var(--pog-sand);
  display:flex; align-items:center; justify-content:center;
  color: var(--pog-orange);
  font-size:1.15rem;
}
.about-feature h6{ font-size:0.98rem; margin-bottom:0.25rem; color: var(--pog-teal-deep); }
.about-feature p{ font-size:0.86rem; color: var(--pog-ink-soft); margin:0; }

.about-checklist{
  display:flex; align-items:flex-start; gap:0.8rem;
  background: var(--pog-sand);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.8rem;
}
.about-checklist .check{
  width:24px; height:24px; flex-shrink:0;
  border-radius:50%;
  background: var(--pog-green);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:0.75rem;
  margin-top:0.15rem;
}
.about-checklist p{ margin:0; font-size:0.92rem; color: var(--pog-ink-soft); }

.about-actions{ display:flex; align-items:center; gap:1.6rem; flex-wrap:wrap; }
.phone-inline{ display:flex; align-items:center; gap:0.8rem; }
.phone-inline .icon{
  width:44px; height:44px; border-radius:50%;
  background: var(--pog-sand);
  display:flex; align-items:center; justify-content:center;
  color: var(--pog-orange); font-size:1.1rem;
}
.phone-inline small{ display:block; font-size:0.75rem; color: var(--pog-ink-soft); }
.phone-inline strong{ font-family: var(--font-display); color: var(--pog-teal-deep); font-size:1.02rem; }

/* =========================================================
   MISSION SECTION
   ========================================================= */
.mission-icon-badge{
  width:52px; height:52px;
  border-radius:50%;
  background: var(--pog-sand);
  display:flex; align-items:center; justify-content:center;
  color: var(--pog-green);
  font-size:1.3rem;
  margin-bottom:1.2rem;
}
.mission-media{
  border-radius: var(--radius-lg);
  overflow:hidden;
  min-height: 380px;
  background-size:cover;
  background-position:center;
  box-shadow: var(--shadow-soft);
}
.goals-card{
  background:#fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1.8rem;
  margin-top: -3.5rem;
  margin-left: 1.5rem;
  position: relative;
  z-index: 2;
  max-width: 380px;
}
.goals-card h5{
  font-size:1rem;
  margin-bottom:1rem;
  padding-bottom:0.8rem;
  border-bottom: 2px solid var(--pog-sand);
}
.goals-card ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:0.9rem; }
.goals-card li{ display:flex; gap:0.7rem; align-items:flex-start; font-size:0.9rem; color: var(--pog-ink-soft); }
.goals-card li i{ color: var(--pog-orange); margin-top:0.2rem; }
@media (max-width: 991.98px){
  .goals-card{ margin-left:0; margin-top:1.5rem; max-width:none; }
}

/* =========================================================
   DUAL CARDS (Join Us / Trusted Community)
   ========================================================= */
.dual-card-wrap{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display:flex;
  align-items:center;
  box-shadow: var(--shadow-soft);
}
.dual-card-wrap::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,54,46,0.05) 0%, rgba(10,54,46,0.1) 100%);
}
.dual-cards-row{
  position: relative;
  z-index: 2;
  display:flex;
  gap:1.5rem;
  flex-wrap:wrap;
  padding: 2.5rem;
}
.mini-card{
  background:#fff;
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  width: 280px;
  box-shadow: var(--shadow-card);
}
.mini-icon{
  width:56px; height:56px;
  border-radius:50%;
  background: var(--pog-sand);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 0.9rem;
  color: var(--pog-green);
  font-size:1.3rem;
}
.mini-ribbon{
  display:inline-block;
  background: var(--pog-teal);
  color:#fff;
  font-family: var(--font-display);
  font-weight:700;
  font-size:0.82rem;
  padding:0.32rem 0.9rem;
  border-radius: 4px 4px 4px 0;
  margin-bottom: 0.9rem;
}
.mini-card p{ font-size:0.88rem; color: var(--pog-ink-soft); margin:0; }

/* =========================================================
   CORE VALUES
   ========================================================= */
.values-header{ text-align:center; max-width:640px; margin:0 auto 3rem; }
.values-header .eyebrow-title{
  color: var(--pog-orange);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom:0.6rem;
}
.values-header p{ color: var(--pog-ink-soft); }
.value-card{ text-align:center; padding: 0 1rem; }
.value-icon{
  width:70px; height:70px;
  border-radius:50%;
  background: var(--pog-teal);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem;
  margin: 0 auto 1.3rem;
}
.value-card h5{ font-size:1.1rem; margin-bottom:0.8rem; }
.value-card p{ font-size:0.9rem; color: var(--pog-ink-soft); }

.nav-arrows{ display:flex; justify-content:center; gap:0.8rem; margin-top:2.5rem; }
.nav-arrows a{
  width:44px; height:44px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  transition: all .2s ease;
}
.nav-arrows a.prev{ background: var(--pog-teal); }
.nav-arrows a.next{ background: var(--pog-orange); }
.nav-arrows a:hover{ transform: translateY(-3px); }

/* =========================================================
   EXECUTIVES
   ========================================================= */
.exec-card{
  text-align:center;
  background:#fff;
  border: 1px solid var(--pog-sand-dark);
  border-radius: var(--radius-md);
  padding: 2rem 1.2rem;
  height:100%;
  transition: all .3s ease;
}
.exec-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); border-color:transparent; }
.exec-avatar{
  width:84px; height:84px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--pog-teal), var(--pog-green));
  color:#fff;
  font-family: var(--font-display);
  font-weight:700;
  font-size:1.4rem;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 1.1rem;
}
.exec-card h5{ font-size:1.05rem; margin-bottom:0.3rem; }
.exec-card .role{
  font-family: var(--font-mono);
  font-size:0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pog-orange);
  font-weight:700;
}



/* =========================================================
   QUOTE BAR
   ========================================================= */
.quote-section{ text-align:center; padding: 3.2rem 0 2.6rem; }
.quote-section blockquote{
  font-family: var(--font-display);
  font-weight:600;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--pog-teal-deep);
  max-width: 820px;
  margin: 0 auto 1.4rem;
  line-height: 1.5;
}
.quote-author{ display:flex; align-items:center; justify-content:center; gap:0.9rem; }
.quote-avatar{
  width:46px; height:46px; border-radius:50%;
  background: linear-gradient(135deg, var(--pog-teal), var(--pog-green));
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; font-size:0.9rem; flex-shrink:0;
}
.quote-author-text{ text-align:left; }
.quote-author-text strong{ display:block; color: var(--pog-orange); font-family: var(--font-display); font-size:0.92rem; }
.quote-author-text span{ font-size:0.8rem; color: var(--pog-ink-soft); }

/* =========================================================
   VOLUNTEER SPLIT — collage + form
   ========================================================= */
.vs-collage{
  display:grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.2rem;
  height: 100%;
  min-height: 480px;
}
.vs-collage .vs-img{
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow:hidden;
}
.vs-collage .vs-img::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(10,54,46,0.35), transparent 55%);
}

.vs-panel{
  background: var(--pog-teal);
  border-radius: var(--radius-lg);
  padding: 3rem 2.6rem;
  color:#fff;
  height:100%;
  position:relative;
  overflow:hidden;
}
.vs-panel::before{
  content:"";
  position:absolute; top:-60px; right:-60px;
  width:220px; height:220px; border-radius:50%;
  background: rgba(255,255,255,0.05);
}
.vs-kicker{
  position:relative; z-index:1;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--pog-orange-light);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  display:flex; align-items:center; gap:0.6rem;
}
.vs-panel h2{ position:relative; z-index:1; color:#fff; margin-bottom:1.8rem; }

.vs-form-card{
  position:relative; z-index:1;
  background:#fff;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
}
.vs-form-card label{
  font-family: var(--font-display);
  font-weight:600;
  font-size:0.85rem;
  color: var(--pog-teal-deep);
  margin-bottom:0.4rem;
  display:block;
}
.vs-form-card .form-control{
  border-radius: 10px;
  border: 1.5px solid var(--pog-sand-dark);
  padding: 0.72rem 1rem;
  font-size:0.92rem;
  margin-bottom: 1.15rem;
}
.vs-form-card .form-control:focus{
  border-color: var(--pog-green);
  box-shadow: 0 0 0 3px rgba(31,140,110,0.15);
}
.vs-form-card button{ width:100%; justify-content:center; border:none; }

/* =========================================================
   TEAM GRID (dark)
   ========================================================= */
.team-section{ background: var(--pog-charcoal); }
.team-header{ text-align:center; max-width:680px; margin:0 auto 3rem; }
.team-header .eyebrow{ display:block; margin-bottom:0.6rem; }
.team-header h2{ color:#fff; font-size: clamp(1.8rem, 3vw, 2.3rem); }

.team-card{
  border-radius: var(--radius-md);
  overflow:hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all .3s ease;
  height:100%;
}
.team-card:hover{ transform: translateY(-5px); border-color: rgba(255,255,255,0.18); }
.team-photo{
  aspect-ratio: 1/1;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display);
  font-weight:700;
  font-size: 1.7rem;
  color:#fff;
  position: relative;
}
.team-photo .plus{
  position:absolute; right:0.7rem; bottom:0.7rem;
  width:32px; height:32px; border-radius:50%;
  background:#fff; color: var(--pog-teal-deep);
  display:flex; align-items:center; justify-content:center;
  font-size:0.95rem;
  box-shadow: var(--shadow-card);
}
.team-info{ padding: 1rem 1.1rem 1.2rem; }
.team-info h6{ color:#fff; font-size:0.95rem; margin-bottom:0.2rem; }
.team-info .role{
  font-family: var(--font-mono);
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.05em;
  color: var(--pog-orange);
}

.team-cta-card{
  background: linear-gradient(135deg, var(--pog-orange), var(--pog-orange-dark));
  border-radius: var(--radius-md);
  height:100%;
  min-height: 100%;
  display:flex; flex-direction:column; align-items:flex-start; justify-content:center;
  padding: 2rem 1.6rem;
  color:#fff;
}
.team-cta-card .icon-ring{
  width:50px; height:50px; border-radius:50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.1rem;
  font-size:1.2rem;
}
.team-cta-card h5{ color:#fff; font-size:1.15rem; margin-bottom:0.6rem; }
.team-cta-card p{ font-size:0.86rem; color: rgba(255,255,255,0.85); margin-bottom:1.4rem; }
.team-cta-card .btn-pog-outline{ border-color: rgba(255,255,255,0.7); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-header{ text-align:center; margin-bottom: 2.6rem; }
.testimonial-card{
  background:#fff;
  border: 1px solid var(--pog-sand-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  height:100%;
  position:relative;
}
.testimonial-card .quote-mark{
  position:absolute; top:1.6rem; right:1.8rem;
  font-size:2rem; color: var(--pog-sand-dark);
  font-family: Georgia, serif;
  line-height:1;
}
.testimonial-stars{ color: var(--pog-orange); font-size:0.95rem; margin-bottom:1rem; letter-spacing:0.15em; }
.testimonial-card p.quote-text{ color: var(--pog-ink-soft); font-size:0.98rem; margin-bottom:1.4rem; }
.testimonial-person{ display:flex; align-items:center; gap:0.8rem; padding-top:1.1rem; border-top: 2px solid var(--pog-sand); }
.testimonial-avatar{
  width:42px; height:42px; border-radius:50%;
  background: var(--pog-sand);
  color: var(--pog-teal);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; font-size:0.85rem;
  flex-shrink:0;
}
.testimonial-person strong{ display:block; color: var(--pog-teal-deep); font-size:0.92rem; }
.testimonial-person span{ font-size:0.78rem; color: var(--pog-ink-soft); }

.testimonial-nav{ display:flex; justify-content:center; gap:0.8rem; margin-top:2.2rem; }
.testimonial-nav button{
  width:44px; height:44px; border-radius:50%;
  border:none; display:flex; align-items:center; justify-content:center;
  color:#fff; transition: all .2s ease;
}
.testimonial-nav button.prev{ background: var(--pog-teal); }
.testimonial-nav button.next{ background: var(--pog-orange); }
.testimonial-nav button:hover{ transform: translateY(-3px); }

/* =========================================================
   PARTNERS STRIP
   ========================================================= */
.partners-strip{ padding: 1rem 0 4.5rem; }
.partners-strip .label{
  text-align:center;
  font-family: var(--font-mono);
  font-size:0.72rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color: var(--pog-ink-soft);
  margin-bottom: 1.8rem;
}
.partners-row{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap: 2.6rem 3.2rem;
}
.partner-badge{
  font-family: var(--font-display);
  font-weight:700;
  font-size:1.05rem;
  color: var(--pog-ink-soft);
  opacity:0.75;
  transition: opacity .2s ease;
  text-align:center;
  line-height:1.2;
}
.partner-badge small{ display:block; font-family: var(--font-body); font-weight:500; font-size:0.68rem; letter-spacing:0.05em; text-transform:uppercase; }
.partner-badge:hover{ opacity:1; }

@media (max-width: 991.98px){
  .vs-panel{ margin-top:1.5rem; padding: 2.2rem 1.6rem; }
  .vs-collage{ min-height: 380px; }
}

/* =========================================================
   DONATE PAGE
   ========================================================= */
.donate-wrap{ max-width: 720px; margin: -4.5rem auto 0; position: relative; z-index: 3; }

.donate-header-card{
  background: linear-gradient(135deg, var(--pog-teal), var(--pog-teal-deep));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 3rem 2.5rem 2.6rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.donate-header-card::before{
  content:"";
  position:absolute; top:-70px; left:-70px;
  width:220px; height:220px; border-radius:50%;
  background: rgba(255,255,255,0.05);
}
.donate-header-card h2{ color:#fff; font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 0.8rem; position:relative; z-index:1; }
.donate-header-card p{ color: rgba(255,255,255,0.85); max-width: 460px; margin: 0 auto 1.4rem; font-size: 0.95rem; position:relative; z-index:1; }
.secure-badge{
  display:inline-flex; align-items:center; gap:0.5rem;
  background:#fff; color: var(--pog-teal-deep);
  font-family: var(--font-display); font-weight:700; font-size:0.82rem;
  padding: 0.5rem 1.1rem; border-radius: 100px;
  position:relative; z-index:1;
}
.secure-badge i{ color: var(--pog-green); }

.donate-body{
  background:#fff;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 2.8rem 2.5rem 3rem;
  border: 1px solid var(--pog-sand-dark);
  border-top: none;
}
.donate-section-title{ font-size: 1.15rem; margin-bottom: 0.35rem; }
.donate-section-sub{ color: var(--pog-ink-soft); font-size: 0.9rem; margin-bottom: 1.5rem; }
.donate-label-row{ display:flex; align-items:center; justify-content:space-between; margin-bottom:0.9rem; }
.donate-label-row label{ font-family: var(--font-display); font-weight:600; font-size:0.92rem; color: var(--pog-teal-deep); }
.donate-label-row label .req{ color: var(--pog-orange); }
.currency-pill{
  font-family: var(--font-mono); font-size:0.75rem; font-weight:700;
  background: var(--pog-sand); color: var(--pog-ink-soft);
  padding: 0.3rem 0.7rem; border-radius: 6px;
}

.amount-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin-bottom: 1rem;
}
.amount-option{ position:relative; }
.amount-option input{ position:absolute; opacity:0; width:0; height:0; }
.amount-option label{
  display:flex; align-items:center; justify-content:center;
  border: 1.5px solid var(--pog-sand-dark);
  border-radius: 12px;
  padding: 0.9rem 0.5rem;
  font-family: var(--font-display); font-weight:700; font-size:1rem;
  color: var(--pog-teal-deep);
  cursor: pointer;
  transition: all .2s ease;
  margin:0;
}
.amount-option input:checked + label{
  background: var(--pog-teal);
  border-color: var(--pog-teal);
  color:#fff;
}
.amount-option label:hover{ border-color: var(--pog-teal); }

.custom-amount-wrap{ position:relative; margin-bottom: 2rem; }
.custom-amount-wrap span{
  position:absolute; left:1rem; top:50%; transform:translateY(-50%);
  color: var(--pog-ink-soft); font-weight:700; pointer-events:none;
}
.custom-amount-wrap input{
  width:100%;
  border: 1.5px solid var(--pog-sand-dark);
  border-radius: 12px;
  padding: 0.9rem 1rem 0.9rem 2rem;
  font-size:0.95rem;
  transition: all .2s ease;
}
.custom-amount-wrap input:focus{
  outline:none; border-color: var(--pog-green);
  box-shadow: 0 0 0 3px rgba(31,140,110,0.15);
}

.donate-input-row{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1.15rem; }
.donate-field label{ font-size:0.85rem; font-weight:600; color: var(--pog-teal-deep); margin-bottom:0.4rem; display:block; }
.donate-field label .req{ color: var(--pog-orange); }
.donate-field .form-control{
  border-radius: 10px; border: 1.5px solid var(--pog-sand-dark);
  padding: 0.75rem 1rem; font-size:0.92rem;
}
.donate-field .form-control:focus{
  border-color: var(--pog-green); box-shadow: 0 0 0 3px rgba(31,140,110,0.15);
}

.anon-check{ display:flex; align-items:flex-start; gap:0.7rem; margin: 0.4rem 0 2.2rem; }
.anon-check input{ margin-top:0.3rem; accent-color: var(--pog-green); width:16px; height:16px; }
.anon-check strong{ display:block; font-size:0.92rem; color: var(--pog-teal-deep); }
.anon-check span{ font-size:0.82rem; color: var(--pog-ink-soft); }

.pay-methods{ display:grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.8rem; }
.pay-option{ position:relative; }
.pay-option input{ position:absolute; opacity:0; width:0; height:0; }
.pay-option label{
  display:flex; align-items:center; gap:0.8rem;
  border: 1.5px solid var(--pog-sand-dark);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  cursor:pointer;
  transition: all .2s ease;
  margin:0;
}
.pay-option input:checked + label{ border-color: var(--pog-green); background: rgba(31,140,110,0.05); }
.pay-option .pm-icon{
  width:38px; height:38px; border-radius:50%;
  background: var(--pog-sand); display:flex; align-items:center; justify-content:center;
  color: var(--pog-teal); font-size:1.05rem; flex-shrink:0;
}
.pay-option strong{ display:block; font-size:0.9rem; color: var(--pog-teal-deep); }
.pay-option span{ font-size:0.76rem; color: var(--pog-ink-soft); }

.summary-box{
  background: var(--pog-sand);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.5rem;
}
.summary-box h6{ font-size:0.98rem; margin-bottom:1.1rem; color: var(--pog-teal-deep); }
.summary-row{ display:flex; justify-content:space-between; font-size:0.9rem; color: var(--pog-ink-soft); padding: 0.55rem 0; }
.summary-row.total{
  border-top: 1.5px solid var(--pog-sand-dark);
  margin-top:0.5rem; padding-top:0.9rem;
  font-family: var(--font-display); font-weight:700; font-size:1.02rem; color: var(--pog-teal-deep);
}
.summary-row.total span:last-child{ color: var(--pog-orange); }

.test-notice{
  display:flex; align-items:center; gap:0.7rem;
  border: 1.5px solid var(--pog-orange-light);
  background: rgba(239,125,49,0.06);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  font-size:0.85rem;
  color: var(--pog-ink-soft);
  margin-bottom: 1.6rem;
}
.test-notice i{ color: var(--pog-orange); font-size:1.05rem; flex-shrink:0; }
.test-notice strong{ color: var(--pog-teal-deep); }

.donate-submit{
  width:100%; justify-content:center; border:none;
  font-size:1rem; padding: 1rem;
}

@media (max-width: 767.98px){
  .donate-wrap{ margin-top: -3rem; padding: 0 0.8rem; }
  .amount-grid{ grid-template-columns: repeat(2, 1fr); }
  .donate-input-row, .pay-methods{ grid-template-columns: 1fr; }
  .donate-body{ padding: 2rem 1.4rem 2.4rem; }
}

/* =========================================================
   PROGRAMME DETAIL PAGE
   ========================================================= */
.programme-overview{ padding-top: 5.5rem; }
.programme-media{
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}
.programme-copy .eyebrow{ display:block; margin-bottom:0.6rem; }
.programme-copy h2{ font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 1.2rem; color: var(--pog-orange); }
.programme-copy p{ color: var(--pog-ink-soft); font-size: 1rem; margin-bottom: 1.6rem; }
.programme-meta{
  display:flex; flex-wrap:wrap; gap: 1.6rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--pog-sand-dark);
}
.programme-meta-item{ display:flex; align-items:center; gap:0.6rem; }
.programme-meta-item i{ color: var(--pog-green); font-size:1.1rem; }
.programme-meta-item strong{ display:block; font-size:0.88rem; color: var(--pog-teal-deep); }
.programme-meta-item span{ font-size:0.78rem; color: var(--pog-ink-soft); }
.programme-actions{ display:flex; gap:1rem; flex-wrap:wrap; }

/* ---- Placeholder media tiles (for assets not yet uploaded) ---- */
.placeholder-media{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: repeating-linear-gradient(135deg, var(--pog-sand) 0px, var(--pog-sand) 12px, var(--pog-sand-dark) 12px, var(--pog-sand-dark) 24px);
  border: 1.5px dashed var(--pog-teal-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  transition: all .25s ease;
}
.placeholder-media:hover{ border-color: var(--pog-orange); }
.placeholder-media i{
  font-size: 1.9rem;
  color: var(--pog-teal-light);
  margin-bottom: 0.6rem;
}
.placeholder-media span{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--pog-teal-deep);
  line-height: 1.3;
}
.placeholder-media small{
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pog-ink-soft);
  margin-top: 0.35rem;
}

.gallery-header{ display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:1rem; margin-bottom: 2rem; }
.gallery-header h3{ font-size:1.5rem; margin-bottom:0.35rem; }
.gallery-header p{ color: var(--pog-ink-soft); font-size:0.92rem; margin:0; max-width:520px; }
.gallery-count-pill{
  font-family: var(--font-mono);
  font-size:0.72rem; font-weight:700;
  background: var(--pog-sand);
  color: var(--pog-ink-soft);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}

/* ---- PDF download card ---- */
.pdf-card{
  display:flex; align-items:center; gap:1.3rem;
  background: var(--pog-sand);
  border: 1.5px solid var(--pog-sand-dark);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.8rem;
  transition: all .25s ease;
}
.pdf-card:hover{ border-color: var(--pog-orange); box-shadow: var(--shadow-card); }
.pdf-icon{
  width: 58px; height: 58px; flex-shrink:0;
  border-radius: var(--radius-sm);
  background: var(--pog-orange);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.5rem;
}
.pdf-info{ flex: 1; min-width: 0; }
.pdf-info h6{ font-size:1rem; margin-bottom:0.2rem; color: var(--pog-teal-deep); }
.pdf-info span{ font-size:0.82rem; color: var(--pog-ink-soft); }
.pdf-download-btn{
  flex-shrink:0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--pog-teal);
  color: #fff;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.05rem;
  transition: all .25s ease;
}
.pdf-download-btn:hover{ background: var(--pog-teal-light); color:#fff; transform: translateY(-2px); }

@media (max-width: 575.98px){
  .pdf-card{ flex-wrap: wrap; }
  .pdf-download-btn{ margin-left: auto; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-info-strip{ margin-top: -4.5rem; position: relative; z-index: 3; }
.contact-info-card{
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.9rem 1.6rem;
  height: 100%;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--pog-sand-dark);
  transition: all .25s ease;
}
.contact-info-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.contact-info-icon{
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1.1rem;
}
.contact-info-card.orange .contact-info-icon{ background: var(--pog-orange); }
.contact-info-card.teal .contact-info-icon{ background: var(--pog-teal); }
.contact-info-card.green .contact-info-icon{ background: var(--pog-green); }
.contact-info-card h6{ font-size: 0.95rem; margin-bottom: 0.5rem; }
.contact-info-card p{ font-size: 0.9rem; color: var(--pog-ink-soft); margin: 0; }
.contact-info-card a{ color: var(--pog-ink-soft); }
.contact-info-card a:hover{ color: var(--pog-orange); }

/* form + map split */
.contact-panel{
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--pog-sand-dark);
  overflow: hidden;
}
.contact-form-side{ padding: 3rem 2.6rem; }
.contact-form-side .eyebrow{ display:block; margin-bottom:0.6rem; }
.contact-form-side h2{ font-size: clamp(1.7rem, 2.6vw, 2.15rem); margin-bottom: 0.7rem; }
.contact-form-side > p{ color: var(--pog-ink-soft); font-size: 0.95rem; margin-bottom: 2rem; }

.contact-field{ margin-bottom: 1.3rem; }
.contact-field label{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--pog-teal-deep);
  margin-bottom: 0.45rem;
  display: block;
}
.contact-field label .req{ color: var(--pog-orange); }
.contact-field .form-control,
.contact-field .form-select{
  border-radius: 10px;
  border: 1.5px solid var(--pog-sand-dark);
  padding: 0.78rem 1rem;
  font-size: 0.92rem;
}
.contact-field .form-control:focus,
.contact-field .form-select:focus{
  border-color: var(--pog-green);
  box-shadow: 0 0 0 3px rgba(31,140,110,0.15);
}
.contact-field textarea.form-control{ min-height: 130px; resize: vertical; }
.contact-submit{ border: none; width: 100%; justify-content: center; }

@media (min-width: 576px){
  .contact-row-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
}

/* map side */
.contact-map-side{
  min-height: 100%;
  background: var(--pog-teal-deep);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.contact-map-frame{
  flex: 1;
  min-height: 320px;
  position: relative;
}
.contact-map-frame iframe{ width:100%; height:100%; border:0; display:block; filter: grayscale(0.15) contrast(1.05); }
.contact-map-pin{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  color: var(--pog-orange);
  font-size: 2.2rem;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.3));
  pointer-events: none;
}
.contact-map-details{
  padding: 1.8rem 2rem;
  background: var(--pog-teal-deep);
  color: rgba(255,255,255,0.85);
}
.contact-map-details h6{ color:#fff; font-size:0.95rem; margin-bottom:1rem; }
.contact-map-details ul{ list-style:none; padding:0; margin:0 0 1.3rem; display:flex; flex-direction:column; gap:0.85rem; }
.contact-map-details li{ display:flex; align-items:flex-start; gap:0.7rem; font-size:0.88rem; }
.contact-map-details li i{ color: var(--pog-orange); margin-top:0.15rem; }
.contact-map-details .contact-socials{ display:flex; gap:0.7rem; }
.contact-map-details .contact-socials a{
  width: 36px; height: 36px; border-radius:50%;
  border: 1px solid rgba(255,255,255,0.3);
  display:flex; align-items:center; justify-content:center;
  color:#fff; transition: all .2s ease;
}
.contact-map-details .contact-socials a:hover{ background: var(--pog-orange); border-color: var(--pog-orange); }

@media (max-width: 991.98px){
  .contact-info-strip{ margin-top: -2.5rem; }
  .contact-form-side{ padding: 2.2rem 1.6rem; }
  .contact-map-frame{ min-height: 260px; }
}

/* =========================================================
   FAQ ACCORDION (contact page)
   ========================================================= */
.faq-accordion .accordion-item{
  border: 1px solid var(--pog-sand-dark);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-accordion .accordion-button{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--pog-teal-deep);
  padding: 1.1rem 1.4rem;
  background: #fff;
}
.faq-accordion .accordion-button:not(.collapsed){
  background: var(--pog-sand);
  color: var(--pog-orange-dark);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus{ box-shadow: none; }
.faq-accordion .accordion-button::after{ flex-shrink: 0; }
.faq-accordion .accordion-body{
  padding: 0.2rem 1.4rem 1.4rem;
  color: var(--pog-ink-soft);
  font-size: 0.92rem;
}