:root {
  --navy: #0d1b3e;
  --navy-mid: #152347;
  --navy-light: #1e3060;
  --green: #3a7d2c;
  --green-bright: #4caf35;
  --green-light: #5ec940;
  --green-dark: #2d5a1e;
  --white: #ffffff;
  --off-white: #f4f7f2;
  --gray: #8a9ab0;
  --text-dark: #0d1b3e;
  --card-bg: #ffffff;
  --border: rgba(58, 125, 44, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ========================================
   CUSTOM SCROLLBAR STYLES
   ======================================== */

/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  border-radius: 10px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  cursor: pointer;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--green-bright) #f1f1f1;
}

/* Modal scrollbar */
.service-modal-body::-webkit-scrollbar {
  width: 6px;
}

.service-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.service-modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  border-radius: 10px;
}

.service-modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

.service-modal-body {
  scrollbar-width: thin;
  scrollbar-color: var(--green-bright) #f1f1f1;
}

/* Dark mode scrollbar */
@media (prefers-color-scheme: dark) {
  ::-webkit-scrollbar-track {
    background: #1a1a1a;
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--green-bright), var(--green));
  }
}

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}
.loader-logo span {
  color: var(--green-bright);
}
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  border-radius: 2px;
  animation: load 1.8s ease forwards;
}
@keyframes load {
  to { width: 100%; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 16px;
  left: 5%;
  right: 5%;
  z-index: 1000;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 60px;
  box-shadow: 0 4px 24px rgba(13, 27, 62, 0.08);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  padding: 0 5%;
}
nav.nav-hide {
  transform: translateY(-100%);
}
nav.nav-show {
  transform: translateY(0);
}

/* Navbar Logo Styles */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 45px;
  width: 45px;
  object-fit: contain;
  border-radius: 50%;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-text .brand {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 1px;
}
.nav-logo-text .brand span {
  color: var(--green-bright);
}
.nav-logo-text .motto {
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-bright);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 8px 22px !important;
  border-radius: 40px;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
}
.nav-phone {
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  padding: 100px 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transform: translateX(-30px);
  opacity: 0;
  transition: all 0.3s ease;
  display: block;
}
.mobile-menu.open a {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu a:hover {
  color: var(--green-bright);
  padding-left: 15px;
  border-bottom-color: var(--green-bright);
}

/* Hamburger animation */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0);
}
.mobile-menu.open .mobile-menu-close {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}
.mobile-menu-close:hover {
  background: var(--green-bright);
  transform: rotate(90deg);
}
.mobile-menu-close span {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}

/* HERO SECTION */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
  gap: 2rem;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 175, 53, 0.15);
  border: 1px solid rgba(76, 175, 53, 0.4);
  color: var(--green-bright);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--green-bright);
  display: inline-block;
}
.hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
}
.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.hero-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy);
  overflow: hidden;
  cursor: pointer;
}
.hero-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hero-card-thumb:hover img {
  transform: scale(1.05);
}
.hero-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero-card-thumb:hover .hero-play {
  opacity: 1;
}
.hero-play span {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
}
.hero-book {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  padding: 16px;
  font-weight: 700;
  transition: background 0.3s ease;
}
.hero-book:hover {
  background: var(--green);
  color: var(--white);
}

/* STATS SECTION */
#stats {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding: 0 5% 60px;
}
.stats-inner {
  background: rgba(13, 27, 62, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 48px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  border-top: 3px solid var(--green-bright);
  padding-top: 1.2rem;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: bold;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 8px;
}

/* SECTION STYLES */
section {
  padding: 50px 5%;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--green);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mission Vision Section */
.mission-vision-inline {
  display: flex;
  width: 100%;
  margin-top: 3rem;
}
.mission-box,
.vision-box {
  flex: 0 0 50%;
  width: 50%;
  padding: 2.5rem 5%;
}
.mission-icon img,
.vision-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.mission-box {
  background: linear-gradient(160deg, #1c1c1e 0%, #2c2c2e 50%, #1a1a1c 100%);
  position: relative;
}
.vision-box {
  background: linear-gradient(160deg, #2a2a2c 0%, #323234 50%, #222224 100%);
}
.mission-box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 3px;
  background: linear-gradient(135deg, var(--green-bright), var(--white));
  opacity: 0.5;
}
.mission-content,
.vision-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.mission-box h4,
.vision-box h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.mission-box p,
.vision-box p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.9rem;
  text-align: center;
}

/* ABOUT SECTION */
/* ABOUT SECTION */
#about {
  background: rgba(0, 0, 0, 0.082);
}

/* Top Section - Image Left, Text Right */
.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

/* Bottom Section - Text Left, Image Right */
.about-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

/* Reorder for bottom section - text first, image second */
.about-bottom .about-content {
  order: 1;
}

.about-bottom .about-visual-bottom {
  order: 2;
}

.about-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/4;
  background: #f5f5f5;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-visual-bottom {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/4;
  background: #f5f5f5;
}

.about-visual-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  display: flex;
  flex-direction: column;
}

/* Pillars Section */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(58, 125, 44, 0.1);
  border-color: var(--green);
}

.pillar-icon {
  width: 45px;
  height: 45px;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(40%) sepia(60%) saturate(800%) hue-rotate(70deg) brightness(85%) contrast(90%);
  transition: all 0.3s ease;
}

.pillar:hover .pillar-icon img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(50%) saturate(600%) hue-rotate(70deg) brightness(80%) contrast(85%);
  transform: scale(1.05);
}

.pillar h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.pillar p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.4;
  margin: 0;
}

/* Mission Vision Section */
.mission-vision-inline {
  display: flex;
  width: 100%;
  margin-top: 3rem;
}

.mission-box,
.vision-box {
  flex: 0 0 50%;
  width: 50%;
  padding: 2.5rem 5%;
}

.mission-icon img,
.vision-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.mission-box {
  background: linear-gradient(160deg, #1c1c1e 0%, #2c2c2e 50%, #1a1a1c 100%);
  position: relative;
}

.vision-box {
  background: linear-gradient(160deg, #2a2a2c 0%, #323234 50%, #222224 100%);
}

.mission-box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 3px;
  background: linear-gradient(135deg, var(--green-bright), var(--white));
  opacity: 0.5;
}

.mission-content,
.vision-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.mission-box h4,
.vision-box h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.mission-box p,
.vision-box p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.9rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .about-top,
  .about-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .about-bottom .about-content,
  .about-bottom .about-visual-bottom {
    order: unset;
  }
  
  .about-visual,
  .about-visual-bottom {
    aspect-ratio: 3/4;
  }
  
  .mission-vision-inline {
    flex-direction: column;
  }
  
  .mission-box,
  .vision-box {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .mission-box::after {
    display: none;
  }
}

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

@media (max-width: 600px) {
  .about-visual,
  .about-visual-bottom {
    aspect-ratio: 4/3;
  }
}

/* SERVICES SECTION - FIXED FOR MOBILE */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  contain: layout style;
}
.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(58, 125, 44, 0.12);
  border-color: var(--green);
}
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.card-img-top {
  height: 200px;
  object-fit: cover;
}
.card-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.card-text {
  flex-shrink: 0;
  margin-bottom: 1rem;
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.9rem;
}
.service-list {
  flex: 1;
  margin-bottom: 1rem;
  padding: 0;
  list-style: none;
}
.service-list li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.4;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: bold;
}
.service-list.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 0.75rem;
}
.btn-primary {
  background: var(--green);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 40px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
}

/* SUPPORT SECTION */
#support {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("meet.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
#support .section-title,
#support .section-sub {
  color: var(--white);
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}
.support-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.support-card:hover {
  background: rgba(76, 175, 53, 0.1);
  transform: translateY(-5px);
  border-color: rgba(76, 175, 53, 0.3);
}
.support-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 175, 53, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.support-card:hover .support-icon {
  background: rgba(76, 175, 53, 0.2);
  transform: scale(1.05);
}
.support-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(45%) sepia(40%) saturate(600%) hue-rotate(70deg) brightness(100%) contrast(95%);
  transition: all 0.3s ease;
}
.support-card:hover .support-icon img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(60%) saturate(800%) hue-rotate(70deg) brightness(85%) contrast(90%);
  transform: scale(1.05);
}
.support-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.support-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* WHY US SECTION */
#why {
  background: var(--off-white);
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.why-card:hover {
  transform: translateX(5px);
  border-color: var(--green);
  box-shadow: 0 8px 25px rgba(58, 125, 44, 0.1);
}
.why-check {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
}
.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}
.why-supporting {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(76, 175, 53, 0.05) 0%, rgba(58, 125, 44, 0.05) 100%);
  border-radius: 16px;
  text-align: center;
  border-left: 4px solid var(--green-bright);
}
.why-supporting p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 800px;
}

/* CONTACT CTA */
#contact-cta {
  background-image: linear-gradient(135deg, rgba(13, 27, 62, 0.685) 0%, rgba(2, 7, 4, 0.726) 100%), url("https://img.magnific.com/free-photo/firm-handshake_1098-16548.jpg?semt=ais_hybrid&w=740&q=80");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
}
#contact-cta .section-title {
  color: var(--white);
}
#contact-cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin: 1rem auto 2.5rem;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btns .btn-primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  padding: 14px 35px;
  font-size: 1rem;
}
.cta-btns .btn-outline {
  display: inline-block;
  padding: 14px 35px;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid white;
  transition: all 0.3s ease;
}
.cta-btns .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: var(--green-bright);
  color: var(--green-bright);
}

/* FOOTER */
footer {
  background: #0a0f1a;
  padding: 60px 5% 30px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  contain: layout style;
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo span {
  color: var(--green-bright);
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--green-bright);
  color: var(--green-bright);
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: var(--green-bright);
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  align-items: flex-start;
}
.footer-contact-item .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-contact-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(52%) sepia(89%) saturate(600%) hue-rotate(70deg) brightness(95%) contrast(92%);
  transition: all 0.3s ease;
}
.footer-contact-item:hover .icon img {
  filter: brightness(0) saturate(100%) invert(40%) sepia(60%) saturate(800%) hue-rotate(70deg) brightness(85%) contrast(90%);
  transform: scale(1.1);
}
.footer-contact-item span {
  word-wrap: break-word;
  word-break: break-word;
  flex: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-tagline {
  color: var(--green-bright);
  font-weight: 600;
  font-size: 0.8rem;
}

/* MODAL STYLES */
.service-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}
.service-modal-content {
  background: var(--white);
  margin: 3% auto;
  width: 90%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.4s ease;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.service-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 2px solid var(--green);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
}
.service-modal-header h3 {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin: 0;
}
.service-modal-close {
  color: var(--white);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}
.service-modal-close:hover {
  color: var(--green-bright);
  transform: scale(1.1);
}
.service-modal-body {
  padding: 25px;
  overflow-y: auto;
  flex: 1;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group.full-width {
  grid-column: span 2;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
}
.form-group label .required {
  color: #e74c3c;
  margin-left: 3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(76, 175, 53, 0.1);
}
.form-group input[readonly] {
  background: #f8f9fa;
  border-color: #dee2e6;
  color: #495057;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-weight: normal !important;
  font-size: 0.85rem;
  line-height: 1.4;
}
.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: white;
  border: none;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(58, 125, 44, 0.3);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.success-message {
  text-align: center;
  padding: 30px 20px;
}
.success-message .success-icon {
  width: 70px;
  height: 70px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-message .success-icon span {
  font-size: 35px;
  color: white;
}
.success-message h3 {
  color: var(--green);
  margin-bottom: 10px;
  font-size: 1.5rem;
}
.success-message p {
  color: var(--gray);
  margin-bottom: 25px;
  line-height: 1.6;
}
.success-message .close-success {
  background: var(--green);
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.success-message .close-success:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
}
.confirm-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.confirm-modal-content {
  background: var(--white);
  max-width: 450px;
  width: 90%;
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  animation: slideIn 0.4s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.confirm-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirm-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  animation: pulse 0.5s ease;
}
@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.confirm-modal-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.confirm-modal-content p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 25px;
}
.confirm-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.confirm-cancel,
.confirm-ok {
  padding: 10px 25px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.9rem;
}
.confirm-cancel {
  background: #e0e0e0;
  color: #666;
}
.confirm-cancel:hover {
  background: #d0d0d0;
  transform: translateY(-2px);
}
.confirm-ok {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: white;
}
.confirm-ok:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(58, 125, 44, 0.3);
}
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--green);
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10002;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transform: translateX(400px);
  transition: transform 0.3s ease;
}
.toast-notification.show {
  transform: translateX(0);
}
.toast-notification .toast-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toast-notification span {
  font-size: 0.9rem;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 900px) {
  .nav-links,
  .nav-phone {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-logo-text .brand {
    font-size: 1.2rem;
  }
  .nav-logo-text .motto {
    font-size: 0.6rem;
  }
  .nav-logo img {
    height: 35px;
    width: 35px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-card {
    width: 100%;
    max-width: 350px;
  }
  .mission-vision-inline {
    flex-direction: column;
  }
  .mission-box,
  .vision-box {
    flex: 0 0 100%;
    width: 100%;
  }
  .mission-box::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .pillars {
    grid-template-columns: 1fr;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .card {
    height: auto;
  }
  .card-body {
    padding: 1.25rem;
  }
  .service-list.two-columns {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .service-list li {
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
  }
  .about-visual {
    aspect-ratio: 3/4;
  }
  .why-supporting {
    padding: 1.5rem;
  }
  .why-supporting p {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-logo-text .brand {
    font-size: 1rem;
  }
  .nav-logo-text .motto {
    display: none;
  }
  .service-modal-content {
    width: 95%;
    margin: 10% auto;
    max-height: 85vh;
  }
  .service-modal-header h3 {
    font-size: 1.1rem;
  }
  .service-modal-body {
    padding: 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .submit-btn {
    padding: 10px;
  }
}