/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #374151;
  overflow-x: hidden;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(2px, 2px) !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* Color Variables */
:root {
  --olive-500: #6d7c4e;
  --olive-600: #5a683f;
  --olive-700: #4d5734;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-xl:
    0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.mobile-close {
  display: none;
  text-align: right;
  padding: 12px 16px;
}

.has-submenu {
  position: relative;
}

/* Icon */
.submenu-icon {
  font-size: 18px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

/* Submenu hidden */
.submenu {
  display: none;
  flex-direction: column;
  background: white;
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Show submenu */
.has-submenu.open .submenu {
  display: block;
}

/* Rotate icon when open */
.has-submenu.open .submenu-icon {
  transform: rotate(45deg); /* + becomes × */
}

/* Desktop hover support */
@media (min-width: 992px) {
  .has-submenu:hover .submenu {
    display: block;
  }

  .has-submenu:hover .submenu-icon {
    transform: rotate(45deg);
  }
}

.has-submenu.open .submenu-icon {
  transform: rotate(180deg);
}

/* Top Bar */
.top-bar {
  background: var(--olive-500);
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.7rem;
  color: #ffffff;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.top-bar-left {
  display: inline-block;
  gap: 1rem;
}

.top-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 50;
  padding: 1rem 0;
}

.navbar .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.logo {
  width: 10rem;
  height: auto;
}

.brand-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.brand-text p {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
}

.nav-menu a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--olive-500);
}

.cta-btn {
  background: var(--olive-500);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-btn:hover {
  background: var(--olive-600);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.25rem;
}

.mobile-toggle span {
  width: 1.5rem;
  height: 2px;
  background: var(--gray-700);
  transition: 0.2s;
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  height: clamp(500px, 50vw, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      135deg,
      hsla(68, 35%, 25%, 0.85) 0%,
      hsla(220, 15%, 20%, 0.75) 100%
    ),
    url("https://yellowheadeast.webserver9.com/assets/Images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--white);
  max-width: 768px;
  text-align: center;
}

.hero-content p:first-child {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content > p:last-of-type {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  background: var(--olive-500);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header.centered p {
  max-width: 40rem;
  margin: 0 auto;
}

.section-header h3,
.section-header h4 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.section-header.centered h3 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
}

.divider {
  width: 4rem;
  height: 4px;
  background: var(--olive-500);
  margin: 0.5rem auto 0;
}

/* Help Categories */
.help-categories {
  padding: 5rem 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.card {
  cursor: pointer;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  border: solid 1px #cbd0c2;
}

.card-image {
  height: 16rem;
  overflow: hidden;
}

.card-image img {
  height: 100%;
  transition: transform 0.5s;
}

.card h5 {
  padding: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  transition: color 0.2s;
}

/* Region Info */
.region-info {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: #6d7c4e;
}

.region-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.region-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.region-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.region-text {
  color: var(--white);
}

.region-text h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.region-text p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-size: 1.125rem;
}

.region-cta {
  display: inline-block;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.region-cta:hover {
  background: var(--white);
  color: var(--gray-900);
}

.region-image {
  position: relative;
}

.region-image img {
  border: 8px solid rgba(109, 124, 78, 0.3);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
}

/* Partners */
.partners {
  padding: 5rem 0 0;
  background: var(--gray-50);
}

.partners-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.partners-text span {
  display: inline-block;
  color: var(--olive-500);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partners-text h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}

.partners-text p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.partners-cta {
  display: inline-block;
  color: var(--olive-500);
  border: 1px solid var(--olive-500);
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.partners-cta:hover {
  background: var(--olive-500);
  color: var(--white);
}

.partners-content img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
  .partners-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* FAQ */
.faq {
  padding: 5rem 0;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 0.5rem;
  background: #ffffff;
  transition: all 0.25s ease;
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.5rem;
  font-weight: 600;
  background: #f9fafb;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
}
.faq-content {
  padding: 10px 0;
  border-top: 1px solid #eef2f6;
  margin: 20px 10px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* CTA Section */
.cta-section {
  background: var(--olive-500);
  padding: 3rem 0;
  color: var(--white);
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.cta-content h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-content p {
  opacity: 0.9;
}

.cta-btn-large {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 0.875rem 2.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.cta-btn-large:hover {
  background: var(--white);
  color: var(--olive-500);
}

@media (max-width: 768px) {
  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Footer */
.footer {
  background: #2c343f;
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-col h6 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.footer-col p {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.8;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--olive-500);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  font-size: 1.25rem;
}

.span-2 {
  grid-column: span 2;
}

.flag {
  height: 2rem;
  opacity: 0.5;
  transition: all 0.2s;
  margin-top: 1.5rem;
}

.flag:hover {
  opacity: 1;
  filter: grayscale(0);
}

.footer-bottom {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  opacity: 0.5;
  text-align: center;
}

/* ============================
   PREMIUM ANIMATION ENHANCEMENTS
   (Non-breaking)
============================ */

/* Smooth global motion */
* {
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Glass blur navbar on scroll */
.navbar.scrolled {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Hero fade + zoom */
.hero-bg img {
  transform: scale(1.08);
  transition: transform 1.5s ease;
}

.hero:hover .hero-bg img {
  transform: scale(1.15);
}

/* Premium card hover lift */
.card:hover {
  transform: translateY(-12px) scale(1.03);
  background: #6d7c4e;
  color: #fff;
}

a.partners-btn.btn-primary {
  margin-top: 20px;
  display: inline-block;
}

/* Services hover glow */
.service-card:hover {
  box-shadow: 0 15px 40px rgba(109, 124, 78, 0.35);
}

/* CTA pulse */
.hero-cta {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Soft section reveal */

/* Floating apply button */
.floating-apply {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--olive-500);
  color: white;
  padding: 14px 22px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 999;
  animation: float 2.5s ease infinite;
}

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

/* Subtle image zoom */
img {
  transition: transform 0.5s ease;
}

img:hover {
  transform: scale(1.03);
}

.floating-apply {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--olive-500);
  color: white;
  padding: 14px 22px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  z-index: 999;
  animation: float 2.5s infinite ease;
}

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

.loan-calculator {
  padding: 5rem 0;
  background: #f9fafb;
}

.loan-box {
  max-width: 650px;
  margin: auto;
  padding: 2rem 2.5rem;
  border-radius: 18px;
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 12px;
}

.loan-box label {
  font-weight: 600;
}

.loan-box input {
  width: 100%;
}

.loan-box h2 {
  color: var(--olive-500);
  font-size: 2rem;
}

/* Move navigation menu to the right */

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Push menu to right */
.nav-menu {
  margin-left: auto;
}

.communities-modern {
  padding: 5.5rem 0;
  background: #fbfbf7;
  text-align: center;
}

.section-pill {
  display: inline-block;
  background: #eef2e6;
  color: var(--olive-600);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.communities-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.communities-heading span {
  color: var(--olive-500);
}

.communities-subtext {
  max-width: 720px;
  margin: 0 auto 3rem;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

.communities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.community-item {
  background: white;
  border: 1px solid #e6e8dd;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  font-weight: 600;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.community-item:hover {
  transform: translateY(-4px);
  border-color: var(--olive-500);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

a.cta-btn {
  color: #fff;
}
a.cta-btn:hover {
  color: var(--olive-500);
  background: #fff;
  border: 1px solid;
  outline: none;
}
a.top-link:hover {
  color: #fff;
}
.service-pillars {
  padding: 6rem 0 0;
  background: #fbfbf8;
}

.section-badge {
  display: inline-block;
  background: rgba(109, 124, 78, 0.15);
  color: #6d7c4e;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pillar-card {
  background: white;
  padding: 2.5rem 2.2rem;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.pillar-card.highlight {
  background: linear-gradient(145deg, #6d7c4e, #4d5734);
  color: white;
}

.pillar-icon {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.pillar-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.pillar-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.9;
}

.pillar-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-weight: 600;
  color: #6d7c4e;
  text-decoration: none;
  border: solid 2px #6d7c4e;
  padding: 5px 10px;
  border-radius: 5px;
}

.pillar-card.highlight .pillar-link {
  color: #525c38;
  background: #fbfbf9;
}

.pillar-link:hover {
  text-decoration: underline;
}
.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 99;
}

.submenu li {
  list-style: none;
}

.submenu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  transition: 0.2s;
}

.submenu a:hover {
  background: #f9fafb;
  color: var(--olive-500);
}

/* Desktop Hover */
.has-submenu:hover .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Mobile Friendly */
@media (max-width: 1024px) {
  .submenu {
    position: static;
    opacity: 1;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 10px;
  }

  .has-submenu.active .submenu {
    display: block;
  }
}

/* ABOUT HERO */
.about-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.45));
}

.about-hero-content {
  position: relative;
  color: white;
  max-width: 900px;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: var(--olive-600);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ABOUT SECTIONS */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 5rem 0;
}

.about-grid.reverse {
  direction: rtl;
}
.about-grid.reverse > * {
  direction: ltr;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--olive-500);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1.75rem;
  box-shadow: var(--shadow-xl);
}

/* PILLARS */
.about-pillars {
  background: #f9fafb;
  padding: 5rem 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.pillar h3 {
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.pillar ul {
  padding-left: 1rem;
}

/* IMPACT */
.about-impact {
  background: #0f172a;
  color: white;
  padding: 5rem 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.impact-text h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.impact-text p {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.impact-stats {
  display: grid;
  gap: 1.5rem;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 1.25rem;
}

.stat strong {
  font-size: 2rem;
  display: block;
}

/* TEAM */
.about-team {
  padding: 5rem 0;
}

.team-layout {
  display: grid;
  gap: 2.5rem;
}

.team-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.team-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 1.75rem;
  box-shadow: var(--shadow-xl);
}

.team-content h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.team-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* CTA */
.about-cta {
  padding: 5rem 0;
  text-align: center;
}

.about-cta-box {
  background: var(--olive-500);
  color: white;
  padding: 3.5rem;
  border-radius: 2.5rem;
}

.btn-primary.large {
  margin-top: 1.5rem;
  display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid,
  .pillars-grid,
  .impact-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-image img,
  .team-image img {
    height: 280px;
  }
}
.team-highlight {
  padding: 5rem 0px;
  background: rgb(255, 255, 255);
}
.team-header {
  text-align: center;
  max-width: 820px;
  margin: 0px auto 3.5rem;
}
.team-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--gray-900);
}
.team-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.team-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--olive-500);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}
.btn-outline {
  border: 2px solid var(--olive-500);
  color: var(--olive-500);
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}
.stat strong {
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #6b7a46; /* olive brand */
  color: white;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

#backToTop:hover {
  background: #4f5e2f;
  transform: scale(1.08);
}

/* Show when active */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.footer-links a {
  color: #fff;
  text-decoration: none;
}

.enterprise-hero {
  background: linear-gradient(135deg, #1f2a44, #34465f);
  color: white;
  padding: 140px 20px;
}

.enterprise-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  font-weight: 900;
  max-width: 980px;
}

.enterprise-hero p {
  font-size: 1.25rem;
  max-width: 760px;
  opacity: 0.92;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: -60px;
}

.value-card {
  background: white;
  border-radius: 22px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #6d7c4e;
}

/* Video Section */
.video-section {
  padding: 96px 20px;
  background: #ffffff;
}

.video-section .container {
  max-width: 1200px;
  margin: auto;
}

.video-header {
  text-align: center;
  margin-bottom: 48px;
}

.video-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.video-header p {
  color: #6b7280;
  font-style: italic;
  font-size: 1.05rem;
}

/* Video Container */
.video-wrapper {
  max-width: 960px;
  margin: auto;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
  background: #000;
}

/* Maintain 16:9 Aspect Ratio */
.video-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

/* Vimeo iframe full cover */
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Text */
@media (max-width: 768px) {
  .video-header h2 {
    font-size: 1.6rem;
  }
}

/* ===========================
   SELL / EXIT PROGRAM CARD
=========================== */

.sell-program {
  padding: 48px 20px;
  background: #f9fafb;
}

.sell-program .container {
  max-width: 1200px;
  margin: auto;
}

.sell-program-card {
  max-width: 960px;
  margin: auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: 0.3s ease;
}

.sell-program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.sell-program-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.sell-program-card ul {
  list-style: none;
  padding: 0;
}

.sell-program-card li {
  color: #6d7c4e;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sell-program-card button {
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  background: #f3f4f6;
  color: #374151;
  cursor: pointer;
  transition: 0.25s ease;
}

.sell-program-card button:hover {
  background: #e5e7eb;
}
/* ===========================
   PARTNERS SECTION
=========================== */

.partners-section {
  padding: 96px 20px;
  background: #ffffff;
}

.partners-section .container {
  max-width: 1200px;
  margin: auto;
}

.partners-grid {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

.partners-grid .partners-image,
.partners-grid .partners-text-block {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .partners-grid {
    gap: 3rem;
    flex-direction: row;
  }

  .partners-grid .partners-image,
  .partners-grid .partners-text-block {
    width: calc(50% - 24px);
  }
}

.partners-image {
  position: relative;
}

.partners-image img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  object-fit: cover;
}

.partners-image::before {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  background: rgba(109, 124, 78, 0.12);
  border-radius: 50%;
  top: -24px;
  left: -24px;
  z-index: -1;
}

.partners-content span {
  display: inline-block;
  color: #6d7c4e;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.partners-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.35;
  margin-top: 12px;
}

.partners-divider {
  width: 64px;
  height: 4px;
  background: #6d7c4e;
  border-radius: 999px;
  margin: 14px 0;
}

.partners-content p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.8;
}

.partners-content button {
  margin-top: 18px;
  padding: 12px 32px;
  border-radius: 999px;
  border: 2px solid #6d7c4e;
  background: transparent;
  color: #6d7c4e;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;
}

.partners-content button:hover {
  background: #6d7c4e;
  color: white;
  transform: translateY(-2px);
}
/* ===========================
   EXIT STRATEGIES CARD
=========================== */

.exit-program-section {
  padding: 48px 20px;
  background: #f9fafb;
}

.exit-program-container {
  max-width: 1200px;
  margin: auto;
}

.exit-program-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 36px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.exit-program-card:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* TEXT BLOCK */

.exit-program-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.exit-program-link {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #6d7c4e;
}

/* BUTTON */

.exit-program-btn {
  background: #f3f4f6;
  border: none;
  color: #374151;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
}

.exit-program-btn:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

/* ==============================
   GLOBAL PARTNERS PAGE BASE
============================== */

.text-olive {
  color: #6d7c4e;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #6d7c4e;
  line-height: 1.25;
}

.section-title-2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6d7c4e;
  display: block;
  margin-bottom: 0.5rem;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: #fff;
  margin: 1rem auto 0;
  border-radius: 99px;
}

.section-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1rem;
}

.btn-primary {
  background: #6d7c4e;
  color: white;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary:hover {
  background: #5a683f;
  transform: translateY(-2px);
}

/* ==============================
   HERO
============================== */

.partners-hero {
  height: 420px;
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(120deg, #0f172a, #1e293b);
  color: white;
}

.partners-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.partners-hero-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

/* ==============================
   WHY PARTNER WITH US
============================== */

.partners-benefits {
  padding: 6rem 0;
}

.partners-benefits-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.partners-benefits-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.partners-benefits-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.partners-benefit-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.partners-benefit-item i {
  color: #6d7c4e;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

/* Images */
.partners-benefits-media {
  display: grid;
  gap: 1.2rem;
}

.partners-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* ==============================
   PARTNER TYPES
============================== */

.partner-types {
  padding: 6rem 0;
  background: #0f172a;
  color: white;
}

.partner-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.partner-type-card {
  padding: 2.5rem;
  border: 1px solid rgb(109 124 78);
  border-radius: 1.5rem;
  text-align: center;
  transition: 0.3s ease;
}

.partner-type-card:hover {
  background: #6d7c4e;
  transform: translateY(-6px);
}

.partner-type-card h3 {
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Icon circle */
.icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.partner-type-card:hover .icon-circle {
  background: white;
  color: #6d7c4e;
}

/* ==============================
   PARTNER DIRECTORY
============================== */

.partner-directory {
  padding: 6rem 0;
  background: #f9fafb;
}

.partner-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.directory-item {
  background: white;
  padding: 1.4rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  transition: 0.2s ease;
}

.directory-item:hover {
  border-color: #6d7c4e;
  transform: translateY(-3px);
}

/* ==============================
   DIVERSIFICATION
============================== */

.partners-diversification {
  padding: 6rem 0;
}

.partners-diversification-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ==============================
   BUSINESS ACQUISITION
============================== */

.business-acquisition {
  padding: 6rem 0;
  background: #f9fafb;
}

.business-acquisition-card {
  background: white;
  padding: 3.5rem;
  border-radius: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.business-acquisition-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.business-acquisition-text {
  text-align: center;
  color: #4b5563;
  margin-bottom: 2rem;
}

.business-acquisition-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.business-step {
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1024px) {
  .partners-benefits-grid,
  .partners-diversification-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .partners-hero {
    height: 320px;
  }

  .business-acquisition-card {
    padding: 2rem;
  }
}

/* ===========================
   FAQ SECTION — ENTERPRISE
=========================== */

.partners-faq {
  padding: 6rem 1.5rem;
  background: #ffffff;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 3rem;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FAQ Card */

.faq-item:hover {
  border-color: #6d7c4e;
}

/* Open State */
.faq-item[open] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Question Row */
.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  color: #111827;
  gap: 12px;
}

/* Remove default marker */
.faq-question::-webkit-details-marker {
  display: none;
}

/* Icon */
.faq-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  color: #6d7c4e;
}

/* Rotate icon when open */
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

/* Answer */
.faq-answer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.98rem;
}
i.fa-solid {
  font-size: 35px;
}

.partner-type-grid .partner-type-card h3 {
  margin: 1rem 0;
  font-weight: 700;
  font-size: 1.5rem;
}

/* HERO */
.news-hero-modern {
  background: linear-gradient(135deg, #1f2937, #111827);
  padding: 120px 0 90px;
  text-align: center;
  color: #fff;
}

.news-hero-modern h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 12px;
}

.news-hero-modern p {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.85;
}

/* NEWS GRID */
.news-modern {
  padding: 100px 0;
  background: #f9fafb;
}

.news-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* CARD */
.news-modern-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.news-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.news-image {
  height: 220px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-modern-card:hover .news-image img {
  transform: scale(1.08);
}

/* CONTENT */
.news-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-date {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #6d7c4e;
  margin-bottom: 8px;
}

.news-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.news-content p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

/* LINK */
.news-readmore {
  margin-top: 20px;
  font-weight: 700;
  color: #6d7c4e;
  text-decoration: none;
  align-self: flex-start;
}

.news-readmore::after {
  content: " →";
  transition: margin-left 0.3s ease;
}

.news-readmore:hover::after {
  margin-left: 6px;
}

/* CTA */
.news-cta-modern {
  background: #6d7c4e;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.news-cta-modern h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.news-cta-modern p {
  font-size: 18px;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 42px;
  background: #fff;
  color: #6d7c4e;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
}

.news-hero {
  background: linear-gradient(135deg, #1f2937, #111827);
  padding: 120px 0 80px;
  text-align: center;
  color: white;
}

.news-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.news-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
}

.news-section {
  padding: 100px 0;
  background: #f9fafb;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

/* FEATURED NEWS */
.featured-news {
  padding: 40px 0 20px;
  background: #ffffff;
}
@media screen and (min-width: 786px) {
  .featured-news {
    padding: 110px 0 80px;
  }
}

.featured-news-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: #f9fafb;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.featured-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 50px 80px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.featured-news-image {
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}

.featured-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* CONTENT */
.featured-news-content {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge {
  display: inline-block;
  background: #6d7c4e;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}

.featured-date {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 16px;
}

.featured-news-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  color: #111827;
  margin-bottom: 18px;
}

.featured-news-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 32px;
  max-width: 520px;
}

/* LINK */
.featured-readmore {
  font-weight: 800;
  color: #6d7c4e;
  text-decoration: none;
  font-size: 16px;
}

.featured-readmore::after {
  content: " →";
  transition: margin-left 0.3s ease;
}

.featured-readmore:hover::after {
  margin-left: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .featured-news-card {
    grid-template-columns: 1fr;
  }

  .featured-news-image {
    min-height: 300px;
  }

  .featured-news-content {
    padding: 36px;
  }
}

.featured-news-grid {
  display: grid;
  gap: 48px;
}

/* ===============================
   NEWS PAGINATION
================================ */

.news-pagination {
  margin: 4rem auto 2rem;
  display: flex;
  justify-content: center;
}

.pagination-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-item a,
.pagination-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  transition: all 0.25s ease;
}

/* Hover */
.pagination-item a:hover {
  background: #6d7c4e; /* olive */
  color: #ffffff;
  border-color: #6d7c4e;
}

/* Active page */
.pagination-item.active a {
  background: #6d7c4e;
  color: #ffffff;
  border-color: #6d7c4e;
  pointer-events: none;
}

/* Disabled */
.pagination-item.disabled span {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Ellipsis */
.pagination-item .ellipsis {
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: default;
}

/* Mobile optimization */
@media (max-width: 640px) {
  .pagination-list {
    gap: 0.5rem;
  }

  .pagination-item a,
  .pagination-item span {
    min-width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
}

/* ===============================
   NEWS CATEGORY FILTER
================================ */

.news-filters {
  padding: 2.5rem 0 1.5rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  background: #f3f4f6;
}

.filter-btn.active {
  background: #6d7c4e; /* olive */
  color: #ffffff;
  border-color: #6d7c4e;
}

/* Smooth hide/show animation */
.featured-news-card {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.featured-news-card.hidden {
  opacity: 0;
  transform: scale(0.97);
  pointer-events: none;
  position: absolute;
}

/* ===============================
   SPLIT CONTACT LAYOUT
================================ */

.contact-split {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 6rem 1.5rem;
}

.contact-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

/* ===============================
   LEFT PANEL
================================ */

.contact-panel {
  color: #ffffff;
}

.contact-panel h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.contact-intro {
  font-size: 1.125rem;
  color: #cbd5f5;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}

.contact-points li {
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.contact-details > div {
  margin-bottom: 1.75rem;
}

.contact-details strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: #e5e7eb;
  line-height: 1.6;
}

/* ===============================
   FORM CARD
================================ */

.contact-form-wrap {
  display: flex;
  align-items: center;
}

.contact-form {
  background: #ffffff;
  padding: 3rem;
  border-radius: 1.75rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
  width: 100%;
}

.contact-form h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6d7c4e;
}

.checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-weight: 500;
}

.privacy-note {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 1.25rem 0 2rem;
}

.contact-form button {
  background: #6d7c4e;
  color: #fff;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(109, 124, 78, 0.4);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .contact-split-inner {
    grid-template-columns: 1fr;
  }

  .contact-panel h1 {
    font-size: 2.25rem;
  }
}
/* ===============================
   CONTACT INTRO
================================ */

.contact-intro {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1600");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.contact-intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.75),
    rgba(17, 24, 39, 0.65)
  );
  z-index: 1;
}

/* Center content */
.contact-intro-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}
.contact-intro-header {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.contact-intro-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-intro-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.contact-intro-note {
  font-size: 0.95rem;
  font-weight: 600;
  color: #c7d2a1; /* olive tint */
  letter-spacing: 0.04em;
}

/* ===============================
   OPTIONS BLOCK
================================ */

.contact-intro-options {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-intro-note {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d7c4e;
  margin-bottom: 1rem;
}

.contact-intro-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-weight: 500;
  color: #374151;
}

.contact-intro-list li {
  position: relative;
  padding-left: 1.25rem;
}

.contact-intro-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #6d7c4e;
  font-weight: 700;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .contact-intro {
    min-height: 360px;
  }

  .contact-intro-header h2 {
    font-size: 2rem;
  }

  .contact-intro-lead {
    font-size: 1rem;
  }
}

.contact-form input[type="checkbox"] {
  width: auto;
}

/* ===============================
   CONTACT DETAILS
================================ */

.contact-details {
  display: grid;
  gap: 2rem;
}

.contact-details strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6d7c4e; /* olive */
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
}

.contact-details a:hover {
  color: #6d7c4e;
}

/* ===============================
   SOCIAL ICONS
================================ */

.contact-social .social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.contact-social .social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.contact-social .social-icons a:hover {
  background: #6d7c4e;
  color: #ffffff;
  transform: translateY(-2px);
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

.region-content .region-text,
.region-content .region-image {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .region-content {
    gap: 3rem;
    flex-direction: row;
  }

  .region-content .region-text,
  .region-content .region-image {
    width: calc(50% - 24px);
  }
}

/* Mobile Responsive Header */
.nav-menu.active {
  display: block;
  position: absolute;
  left: 0;
  top: 70px;
  right: 0;
  padding: 30px 20px;
  background: #fbfbf7;
}

.nav-menu.active li {
  margin-bottom: 6px;
}

.nav-menu.active li.has-submenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-menu.active > li:last-child {
  margin-top: 30px;
}

ul.submenu.active {
  display: block;
  width: 100%;
  margin-top: 10px;
}
