/* ============================================================
   FARMVET CENTRE OF EXCELLENCE — Master Stylesheet
   Colors: White (#FFFFFF) · Forest Green (#1B4332) · Gold (#C8941A)
   ============================================================ */

:root {
  --green:       #1B4332;
  --green-dark:  #0D2218;
  --green-light: #2D6A4F;
  --gold:        #C8941A;
  --gold-light:  #E6A820;
  --white:       #FFFFFF;
  --off-white:   #F7F9F7;
  --light-gray:  #EFF3EF;
  --text-dark:   #0C1A12;
  --text-body:   #374151;
  --text-muted:  #6B7280;
  --border:      #E0E8E0;
  --shadow-xs:   0 1px 4px rgba(27,67,50,0.06);
  --shadow-sm:   0 2px 12px rgba(27,67,50,0.08);
  --shadow-md:   0 8px 32px rgba(27,67,50,0.12);
  --shadow-lg:   0 24px 60px rgba(27,67,50,0.16);
  --r-xs:        4px;
  --r-sm:        8px;
  --r-md:        14px;
  --r-lg:        22px;
  --r-xl:        36px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --trans:       all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-h:      'Playfair Display', Georgia, serif;
  --font-b:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); color: var(--text-body); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { font-family: var(--font-b); cursor: pointer; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); color: var(--text-dark); line-height: 1.2; }
::selection { background: var(--gold); color: var(--white); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
#announcementBar {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 10px 48px 10px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  position: relative;
  z-index: 1100;
  letter-spacing: 0.01em;
}
#announcementBar .ann-highlight { color: var(--gold); font-weight: 700; }
#annClose {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.1rem;
  line-height: 1; cursor: pointer; transition: color 0.2s;
}
#annClose:hover { color: var(--white); }

/* ============================================================
   NAVBAR
   ============================================================ */
.fv-nav {
  background: var(--white);
  box-shadow: var(--shadow-xs);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow 0.3s var(--ease);
}
.fv-nav.scrolled { box-shadow: var(--shadow-md); }

.navbar-brand-fv {
  display: flex; align-items: center; gap: 12px; padding: 14px 0;
}
.nav-logo-box {
  width: 46px; height: 46px; background: var(--green);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; color: var(--gold); font-size: 1.35rem; flex-shrink: 0;
}
.nav-brand-text .brand-name {
  font-family: var(--font-h); font-size: 1.05rem; font-weight: 700;
  color: var(--green); display: block; line-height: 1.1;
}
.nav-brand-text .brand-tag {
  font-size: 0.62rem; color: var(--gold); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; display: block;
}

.fv-nav .nav-link {
  font-size: 0.85rem; font-weight: 500; color: var(--text-dark) !important;
  padding: 26px 15px !important; position: relative; transition: color 0.25s;
  letter-spacing: 0.02em;
}
.fv-nav .nav-link::after {
  content: ''; position: absolute; bottom: 18px; left: 15px; right: 15px;
  height: 2px; background: var(--gold); border-radius: 1px;
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.28s var(--ease);
}
.fv-nav .nav-link:hover { color: var(--green) !important; }
.fv-nav .nav-link:hover::after,
.fv-nav .nav-link.active-link::after { transform: scaleX(1); }
.fv-nav .nav-link.active-link { color: var(--green) !important; }

.btn-nav-cta {
  background: var(--gold); color: var(--white) !important;
  border-radius: var(--r-xs); padding: 9px 20px !important;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; margin-left: 6px; align-self: center;
  transition: var(--trans); border: 2px solid var(--gold);
}
.btn-nav-cta:hover { background: var(--green) !important; border-color: var(--green) !important; color: var(--white) !important; transform: translateY(-1px); }
.btn-nav-cta::after { display: none !important; }

.navbar-toggler {
  border: 2px solid var(--green); border-radius: var(--r-xs);
  padding: 6px 10px; background: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231B4332' stroke-linecap='round' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white); border-top: 1px solid var(--border);
    padding: 12px 8px 20px; margin-top: 0;
  }
  .fv-nav .nav-link { padding: 11px 8px !important; }
  .fv-nav .nav-link::after { display: none; }
  .btn-nav-cta { margin: 10px 8px 0; display: block; text-align: center; padding: 12px 20px !important; }
}

/* ============================================================
   HERO — SWIPER SLIDER
   ============================================================ */
.hero-section {
  position: relative; height: calc(100vh - 88px);
  min-height: 580px; max-height: 880px; overflow: hidden;
}
.hero-swiper { width: 100%; height: 100%; }

/* IMAGE PLACEHOLDER for Hero Slides */
.slide-bg {
  position: absolute; inset: 0;
  background: var(--off-white);
  border: 3px dashed var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
}
.slide-bg .ph-icon { font-size: 3.5rem; color: var(--green); opacity: 0.25; }
.slide-bg .ph-label {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xs); padding: 8px 20px;
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  text-align: center; max-width: 300px;
}
/* When real image is placed: set it as background-image on .slide-bg and remove border */

.slide-overlay {
  position: absolute; inset: 0;
  background: rgba(12, 26, 18, 0.62);
  z-index: 2;
}
.hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: center;
  padding: 0 5%;
}
.hero-inner { max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 100px; margin-bottom: 22px;
  animation: fadeSlideDown 0.7s var(--ease) both;
}
.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3.8rem);
  font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 18px;
  animation: fadeSlideUp 0.7s 0.15s var(--ease) both;
}
.hero-title .gold-text { color: var(--gold); }
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.88); font-weight: 300; line-height: 1.75;
  margin-bottom: 38px; max-width: 520px;
  animation: fadeSlideUp 0.7s 0.3s var(--ease) both;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeSlideUp 0.7s 0.45s var(--ease) both;
}
@keyframes fadeSlideUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeSlideDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }

/* Hero Swiper Controls */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 48px; height: 48px; background: rgba(255,255,255,0.12);
  border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px); transition: var(--trans);
  color: var(--white);
}
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover { background: var(--gold); border-color: var(--gold); }
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after { font-size: 0.9rem; font-weight: 700; }
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.45); width: 9px; height: 9px; }
.hero-swiper .swiper-pagination-bullet-active { background: var(--gold); width: 28px; border-radius: 5px; transition: width 0.3s; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.6); font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-hint i { font-size: 1rem; }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   BUTTONS (Global)
   ============================================================ */
.btn-fv-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--white);
  border: 2px solid var(--gold); border-radius: var(--r-xs);
  padding: 13px 26px; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: var(--trans); white-space: nowrap; cursor: pointer;
}
.btn-fv-gold:hover { background: transparent; color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(200,148,26,0.3); }

.btn-fv-white {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.55); border-radius: var(--r-xs);
  padding: 13px 26px; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: var(--trans); white-space: nowrap; cursor: pointer;
}
.btn-fv-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); transform: translateY(-2px); }

.btn-fv-green {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green); color: var(--white);
  border: 2px solid var(--green); border-radius: var(--r-xs);
  padding: 13px 26px; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: var(--trans); white-space: nowrap; cursor: pointer;
}
.btn-fv-green:hover { background: transparent; color: var(--green); transform: translateY(-2px); }

.btn-fv-outline-green {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--green);
  border: 2px solid var(--green); border-radius: var(--r-xs);
  padding: 13px 26px; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: var(--trans); white-space: nowrap; cursor: pointer;
}
.btn-fv-outline-green:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 96px 0; }
.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.sec-label::before { content:''; display:block; width:26px; height:2px; background:var(--gold); border-radius:1px; flex-shrink:0; }
.sec-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 18px;
}
.sec-sub {
  font-size: 1.0rem; color: var(--text-muted);
  max-width: 580px; line-height: 1.8;
}
.gold-bar { width: 52px; height: 3px; background: var(--gold); border-radius: 2px; margin: 14px 0 22px; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--green); padding: 56px 0;
}
.stat-cell {
  text-align: center; padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-h); font-size: clamp(2.4rem,4vw,3.6rem);
  font-weight: 800; color: var(--gold); display: block; line-height: 1;
}
.stat-lbl {
  font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-top: 8px;
}
@media (max-width:767px) { .stat-cell { border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); } .stat-cell:last-child { border-bottom:none; } }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-section { background: var(--white); }
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 28px;
  height: 100%; transition: var(--trans); position: relative; overflow: hidden;
}
.svc-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:3px; background:var(--gold);
  transform:scaleX(0); transition:transform 0.3s var(--ease);
}
.svc-card:hover::after { transform:scaleX(1); }
.svc-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:transparent; }
.svc-icon {
  width: 62px; height: 62px; background: var(--off-white);
  border-radius: var(--r-md); display: flex; align-items: center;
  justify-content: center; font-size: 1.7rem; color: var(--green);
  margin-bottom: 22px; transition: var(--trans);
}
.svc-card:hover .svc-icon { background: var(--green); color: var(--gold); }
.svc-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.svc-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green); font-weight: 600; font-size: 0.82rem;
  transition: var(--trans); letter-spacing: 0.03em;
}
.svc-link:hover { gap: 14px; color: var(--gold); }

/* ============================================================
   CALL-A-VET FEATURE SECTION
   ============================================================ */
.callvet-section { background: var(--off-white); overflow: hidden; }
.callvet-img-wrap {
  background: var(--light-gray); border: 3px dashed var(--border);
  border-radius: var(--r-xl); min-height: 440px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; overflow: hidden;
}
.callvet-img-wrap .ph-icon { font-size: 3rem; color: var(--green); opacity: 0.25; }
.callvet-img-wrap .ph-label {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xs); padding: 8px 20px;
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-align: center;
}
.feat-list { list-style:none; padding:0; margin:0 0 30px; display:flex; flex-direction:column; gap:14px; }
.feat-list li { display:flex; align-items:flex-start; gap:14px; font-size:0.92rem; color:var(--text-body); }
.feat-dot { width:26px; height:26px; background:var(--green); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:0.65rem; flex-shrink:0; margin-top:1px; }

/* ============================================================
   AGRITOURISM
   ============================================================ */
.agri-section { background: var(--white); }
.agri-card {
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--border); transition: var(--trans);
}
.agri-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:transparent; }
.agri-ph {
  background: var(--light-gray); border-bottom: 2px dashed var(--border);
  height: 200px; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:8px;
}
.agri-ph i { font-size:2.2rem; color:var(--green); opacity:0.35; }
.agri-ph span { font-size:0.72rem; color:var(--text-muted); font-weight:600; text-align:center; padding:0 12px; background:var(--white); padding:5px 14px; border-radius:var(--r-xs); border:1px solid var(--border); }
.agri-body { padding:20px 22px; }
.agri-body h4 { font-size:1rem; font-weight:700; margin-bottom:6px; }
.agri-body p { font-size:0.85rem; color:var(--text-muted); line-height:1.65; }

/* ============================================================
   SHOP PREVIEW
   ============================================================ */
.shop-section { background: var(--off-white); }
.prod-card {
  background: var(--white); border-radius: var(--r-md);
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--trans); height: 100%;
}
.prod-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-lg); border-color:transparent; }
.prod-ph {
  height: 220px; background: var(--light-gray); border-bottom: 2px dashed var(--border);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px; position:relative;
}
.prod-ph i { font-size:2.6rem; color:var(--green); opacity:0.3; }
.prod-ph .ph-tag { font-size:0.7rem; color:var(--text-muted); font-weight:600; background:var(--white); padding:5px 12px; border-radius:var(--r-xs); border:1px solid var(--border); text-align:center; }
.prod-badge { position:absolute; top:12px; left:12px; background:var(--green); color:var(--white); font-size:0.62rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; padding:4px 10px; border-radius:100px; }
.prod-body { padding:20px; }
.prod-cat { font-size:0.67rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); margin-bottom:5px; }
.prod-name { font-size:0.97rem; font-weight:700; color:var(--text-dark); margin-bottom:7px; }
.prod-desc { font-size:0.82rem; color:var(--text-muted); line-height:1.65; margin-bottom:14px; }
.prod-price { font-size:0.97rem; font-weight:700; color:var(--green); margin-bottom:14px; }
.btn-cart {
  width:100%; background:var(--green); color:var(--white); border:none;
  border-radius:var(--r-xs); padding:10px; font-size:0.78rem; font-weight:700;
  letter-spacing:0.06em; text-transform:uppercase; transition:var(--trans);
  display:flex; align-items:center; justify-content:center; gap:7px;
}
.btn-cart:hover { background:var(--gold); }

/* ============================================================
   SUPPORT SECTION
   ============================================================ */
.support-section { background: var(--green); padding: 100px 0; position:relative; overflow:hidden; }
.support-section::before { content:''; position:absolute; top:-30%; right:-8%; width:550px; height:550px; background:rgba(255,255,255,0.03); border-radius:50%; pointer-events:none; }
.support-section .sec-label { color:var(--gold); }
.support-section .sec-label::before { background:var(--gold); }
.support-section .sec-title { color:var(--white); }
.support-section .sec-sub { color:rgba(255,255,255,0.72); max-width:540px; }
.sponsor-row {
  display:flex; align-items:flex-start; gap:16px;
  padding:18px 20px; background:rgba(255,255,255,0.06);
  border-radius:var(--r-md); border:1px solid rgba(255,255,255,0.1);
  transition:var(--trans); margin-bottom:12px;
}
.sponsor-row:hover { background:rgba(255,255,255,0.1); border-color:var(--gold); }
.sp-ico { width:42px; height:42px; background:var(--gold); border-radius:var(--r-xs); display:flex; align-items:center; justify-content:center; color:var(--white); font-size:1rem; flex-shrink:0; }
.sp-txt h5 { font-family:var(--font-b); font-size:0.9rem; font-weight:700; color:var(--white); margin:0 0 3px; }
.sp-txt p { font-size:0.8rem; color:rgba(255,255,255,0.62); margin:0; line-height:1.55; }
.support-ph {
  background:rgba(255,255,255,0.07); border:2px dashed rgba(255,255,255,0.2);
  border-radius:var(--r-xl); min-height:480px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px;
}
.support-ph i { font-size:3rem; color:rgba(255,255,255,0.25); }
.support-ph p { font-size:0.82rem; color:rgba(255,255,255,0.45); text-align:center; padding:7px 18px; border:1px solid rgba(255,255,255,0.2); border-radius:var(--r-xs); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { background: var(--white); }
.testi-card {
  background: var(--off-white); border-radius: var(--r-lg);
  padding: 34px; position:relative; height:100%;
}
.testi-card::before { content:'"'; font-family:var(--font-h); font-size:6rem; color:var(--gold); opacity:0.18; position:absolute; top:-8px; left:22px; line-height:1; pointer-events:none; }
.testi-stars { color:var(--gold); font-size:0.85rem; margin-bottom:14px; }
.testi-text { font-size:0.92rem; color:var(--text-body); line-height:1.85; font-style:italic; margin-bottom:22px; }
.testi-author { display:flex; align-items:center; gap:13px; }
.testi-av { width:46px; height:46px; background:var(--light-gray); border:2px dashed var(--border); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1.15rem; color:var(--text-muted); }
.testi-info h6 { font-family:var(--font-b); font-size:0.9rem; font-weight:700; color:var(--text-dark); margin:0; }
.testi-info span { font-size:0.78rem; color:var(--text-muted); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-section { background: var(--off-white); padding: 56px 0; }
.partner-box {
  height: 62px; background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); display:flex; align-items:center; justify-content:center;
  padding:10px 22px; transition:var(--trans);
  font-size:0.75rem; color:var(--text-muted); font-weight:700;
  letter-spacing:0.05em; text-align:center;
}
.partner-box:hover { border-color:var(--green); color:var(--green); box-shadow:var(--shadow-sm); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #091A10; padding: 80px 0 0; }
.footer-brand-wrap { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.footer-logo-box { width:46px; height:46px; background:var(--gold); border-radius:var(--r-xs); display:flex; align-items:center; justify-content:center; color:var(--white); font-size:1.35rem; }
.footer-brand-name { font-family:var(--font-h); font-size:1.05rem; font-weight:700; color:var(--white); display:block; line-height:1.1; }
.footer-brand-tag { font-size:0.62rem; color:var(--gold); text-transform:uppercase; letter-spacing:0.1em; font-weight:700; }
.footer-desc { font-size:0.85rem; color:rgba(255,255,255,0.55); line-height:1.8; margin-bottom:22px; }
.socials { display:flex; gap:9px; }
.soc-btn { width:36px; height:36px; border-radius:var(--r-xs); border:1px solid rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.55); transition:var(--trans); font-size:0.85rem; }
.soc-btn:hover { background:var(--gold); border-color:var(--gold); color:var(--white); }
.footer-heading { font-family:var(--font-b); font-size:0.75rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--white); margin-bottom:18px; }
.footer-links { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.footer-links a { color:rgba(255,255,255,0.55); font-size:0.85rem; transition:var(--trans); display:flex; align-items:center; gap:7px; }
.footer-links a:hover { color:var(--gold); padding-left:4px; }
.footer-links a i { font-size:0.7rem; color:var(--gold); }
.fc-item { display:flex; align-items:flex-start; gap:12px; margin-bottom:14px; }
.fc-item i { color:var(--gold); font-size:0.9rem; flex-shrink:0; margin-top:2px; }
.fc-item span { font-size:0.85rem; color:rgba(255,255,255,0.55); line-height:1.65; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.09);
  padding:22px 0; margin-top:56px;
  display:flex; flex-wrap:wrap; align-items:center;
  justify-content:space-between; gap:12px;
}
.footer-bottom p { font-size:0.78rem; color:rgba(255,255,255,0.35); margin:0; }
.footer-bottom a { color:var(--gold); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:998;
  width:58px; height:58px; background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:1.55rem;
  box-shadow:0 4px 18px rgba(37,211,102,0.45);
  animation:waPulse 2.5s ease-in-out infinite;
  transition:transform 0.25s var(--ease);
}
.wa-float:hover { color:var(--white); transform:scale(1.14); }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 18px rgba(37,211,102,0.45);} 50%{box-shadow:0 4px 36px rgba(37,211,102,0.7);} }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero { background:var(--green); padding:76px 0 56px; position:relative; overflow:hidden; }
.page-hero::after { content:''; position:absolute; bottom:-28px; left:0; right:0; height:56px; background:var(--white); clip-path:ellipse(55% 100% at 50% 100%); }
.page-hero .sec-label { color:var(--gold); }
.page-hero .sec-label::before { background:var(--gold); }
.page-hero h1 { color:var(--white); font-size:clamp(2rem,4vw,3.1rem); }
.page-hero p { color:rgba(255,255,255,0.72); font-size:1.05rem; }
.breadcrumb-fv { display:flex; align-items:center; gap:8px; list-style:none; padding:0; margin:0 0 18px; flex-wrap:wrap; }
.breadcrumb-fv li { font-size:0.78rem; color:rgba(255,255,255,0.48); }
.breadcrumb-fv li a { color:var(--gold); }
.breadcrumb-fv li.sep { color:rgba(255,255,255,0.28); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.value-card { text-align:center; padding:34px 22px; border:1px solid var(--border); border-radius:var(--r-lg); transition:var(--trans); }
.value-card:hover { box-shadow:var(--shadow-md); border-color:var(--gold); transform:translateY(-5px); }
.val-icon { width:70px; height:70px; background:var(--off-white); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.7rem; color:var(--green); margin:0 auto 18px; transition:var(--trans); }
.value-card:hover .val-icon { background:var(--green); color:var(--gold); }
.value-card h4 { font-size:1.05rem; font-weight:700; margin-bottom:8px; }
.value-card p { font-size:0.85rem; color:var(--text-muted); line-height:1.7; }
.team-card { text-align:center; transition:var(--trans); }
.team-card:hover { transform:translateY(-6px); }
.team-ph { width:140px; height:140px; border-radius:50%; background:var(--light-gray); border:3px dashed var(--border); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; font-size:2.6rem; color:var(--text-muted); opacity:0.55; overflow:hidden; }
.team-name { font-size:1.1rem; font-weight:700; margin-bottom:3px; }
.team-role { font-size:0.72rem; color:var(--gold); font-weight:700; text-transform:uppercase; letter-spacing:0.1em; margin-bottom:10px; display:block; }
.team-bio { font-size:0.85rem; color:var(--text-muted); line-height:1.7; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-detail-block { margin-bottom:56px; }
.svc-det-ph {
  background:var(--light-gray); border:3px dashed var(--border);
  border-radius:var(--r-lg); min-height:360px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
}
.svc-det-ph i { font-size:3.5rem; color:var(--green); opacity:0.28; }
.svc-det-ph .ph-label { background:var(--white); border:1px solid var(--border); border-radius:var(--r-xs); padding:8px 20px; font-size:0.8rem; font-weight:600; color:var(--text-muted); text-align:center; max-width:280px; }
.svc-tag { display:inline-block; background:var(--off-white); color:var(--green); font-size:0.68rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; padding:5px 14px; border-radius:100px; margin-bottom:14px; border:1px solid var(--border); }
.svc-feats { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin:20px 0 28px; }
.svc-feat { display:flex; align-items:center; gap:9px; font-size:0.85rem; color:var(--text-body); }
.svc-feat i { color:var(--gold); flex-shrink:0; }
@media (max-width:576px) { .svc-feats { grid-template-columns:1fr; } }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.filter-strip { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:36px; }
.f-btn { padding:8px 20px; border:1.5px solid var(--border); border-radius:100px; background:var(--white); color:var(--text-body); font-size:0.8rem; font-weight:600; cursor:pointer; transition:var(--trans); }
.f-btn:hover,.f-btn.active { background:var(--green); color:var(--white); border-color:var(--green); }

/* ============================================================
   SUPPORT / DONATE PAGE
   ============================================================ */
.impact-box { text-align:center; padding:34px 20px; background:var(--off-white); border-radius:var(--r-lg); border:1px solid var(--border); }
.imp-num { font-family:var(--font-h); font-size:2.6rem; font-weight:800; color:var(--green); display:block; }
.imp-lbl { font-size:0.82rem; color:var(--text-muted); font-weight:500; margin-top:7px; display:block; }
.donate-card { border:2px solid var(--border); border-radius:var(--r-lg); padding:30px 24px; text-align:center; transition:var(--trans); height:100%; }
.donate-card:hover,.donate-card.featured { border-color:var(--gold); box-shadow:var(--shadow-md); }
.donate-card.featured { position:relative; }
.donate-card.featured::before { content:'Most Popular'; position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--gold); color:var(--white); font-size:0.68rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; padding:4px 14px; border-radius:100px; white-space:nowrap; }
.donate-amt { font-family:var(--font-h); font-size:2rem; font-weight:800; color:var(--green); display:block; margin-bottom:10px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card { background:var(--off-white); border-radius:var(--r-lg); padding:38px; }
.ci-icon { width:54px; height:54px; background:var(--green); border-radius:var(--r-md); display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:1.3rem; margin-bottom:18px; }
.fv-label { font-size:0.78rem; font-weight:700; letter-spacing:0.05em; color:var(--text-dark); margin-bottom:7px; display:block; }
.fv-input {
  width:100%; border:1.5px solid var(--border); border-radius:var(--r-xs);
  padding:13px 16px; font-family:var(--font-b); font-size:0.9rem;
  color:var(--text-dark); background:var(--white); transition:var(--trans);
}
.fv-input:focus { outline:none; border-color:var(--green); box-shadow:0 0 0 3px rgba(27,67,50,0.08); }
.fv-textarea { resize:vertical; min-height:130px; }
.map-ph { background:var(--light-gray); border:3px dashed var(--border); border-radius:var(--r-lg); min-height:360px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; }
.map-ph i { font-size:3rem; color:var(--green); opacity:0.3; }
.map-ph p { font-size:0.85rem; color:var(--text-muted); font-weight:500; text-align:center; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-green { color:var(--green) !important; }
.text-gold { color:var(--gold) !important; }
.bg-green { background:var(--green) !important; }
.bg-gold { background:var(--gold) !important; }
.bg-off-white { background:var(--off-white) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1199px) { section { padding:80px 0; } }
@media (max-width:991px)  { section { padding:68px 0; } .hero-section { height:82vh; } }
@media (max-width:767px)  {
  section { padding:56px 0; }
  .hero-section { height:auto; min-height:100svh; }
  .hero-content { padding:70px 20px 40px; position:relative; inset:auto; display:flex; align-items:flex-start; }
  .hero-btns { flex-direction:column; }
  .hero-btns a,.hero-btns button { text-align:center; justify-content:center; }
  .scroll-hint { display:none; }
  .footer-bottom { flex-direction:column; text-align:center; }
}
@media (max-width:480px) {
  .hero-title { font-size:1.7rem; }
  .sec-title { font-size:1.6rem; }
  .wa-float { bottom:18px; right:18px; width:52px; height:52px; font-size:1.4rem; }
}
