/* Modern CSS Reset & Variables */
html {
  scroll-behavior: smooth;
}

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

:root {
  --font-family: 'Be Vietnam Pro', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --header-bg: #ffffff;
  --text-color: #000000;
  --text-hover-opacity: 0.6;
}

body {
  font-family: var(--font-family);
  background-color: #ffffff;
  color: var(--text-color);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Sticky Header */
.main-header {
  display: block;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--header-bg);
}

/* Container Styling */
.header-container,
.page-container {
  max-width: 1152px;
  margin: 0 auto;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Logo Styles */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.left-logo .logo-img {
  height: 75px;
  width: auto;
  display: block;
}

.right-logo .logo-img {
  height: 75px;
  width: auto;
  display: block;
}

/* Navigation */
.nav-menu {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  opacity: var(--text-hover-opacity);
}

/* More Dropdown Menu Styling */
.more-item {
  position: relative;
}

.more-btn {
  background: none;
  border: none;
  font-family: var(--font-family);
  font-size: 20px;
  cursor: pointer;
  padding: 8px 12px;
  color: var(--text-color);
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.more-btn:hover {
  opacity: var(--text-hover-opacity);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  z-index: 1001;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  width: 100%;
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.dropdown-link:hover {
  background-color: #f5f5f5;
  opacity: var(--text-hover-opacity);
}

/* Hero Section */
.hero-section {
  width: 100%;
  aspect-ratio: 2053 / 1141; /* Matches the exact aspect ratio of the hero background asset */
  background-image: url('assets/hero image background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Philosophical Foundation Section */
.philosophical-section {
  width: 100%;
  min-height: 480px; /* Maintained minimum height between desktop to mobile */
  background-image: url('assets/bg-philosophical-foundation.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  margin-top: 24px;
  color: #ffffff;
  padding: 40px 0;
}

.philosophical-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  /* Solid retro spread shadow for a premium neo-brutalist look */
  text-shadow: 
    1px 1px 0 #000000,
    2px 2px 0 #000000,
    3px 3px 0 #000000,
    4px 4px 0 #000000;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.philosophical-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.philosophical-item {
  font-family: var(--font-family);
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  position: relative;
  padding-left: 28px;
  /* Black text stroke and shadow for readability on busy background */
  -webkit-text-stroke: 0.8px #000000;
  text-shadow: 
    -1.5px -1.5px 0 #000000,  
     1.5px -1.5px 0 #000000,
    -1.5px  1px 0 #000000,
     1.5px  1px 0 #000000,
     0px  2px 4px rgba(0, 0, 0, 0.7);
}

.philosophical-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  -webkit-text-stroke: 0.8px #000000;
  text-shadow: 
    -1.5px -1.5px 0 #000000,  
     1.5px -1.5px 0 #000000,
    -1.5px  1px 0 #000000,
     1.5px  1px 0 #000000;
}

.team-action-section {
  width: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

.team-action-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
  .header-container {
    padding: 10px 12px;
  }
  .nav-list {
    gap: 20px;
  }
  .nav-link {
    font-size: 14px;
  }
  .left-logo .logo-img,
  .right-logo .logo-img {
    height: 60px;
  }
  .philosophical-title {
    font-size: 36px;
    text-shadow: 
      1px 1px 0 #000000,
      2px 2px 0 #000000,
      3px 3px 0 #000000;
  }
  .philosophical-item {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .nav-list {
    gap: 12px;
  }
  .left-logo .logo-img,
  .right-logo .logo-img {
    height: 60px;
  }
  .philosophical-section {
    min-height: 480px; /* Kept same minimum height to satisfy requirement */
    padding: 40px 0;
  }
  .philosophical-title {
    font-size: 26px;
    text-shadow: 
      1px 1px 0 #000000,
      2px 2px 0 #000000;
    margin-bottom: 16px;
  }
  .philosophical-item {
    font-size: 14px;
    padding-left: 20px;
    -webkit-text-stroke: 0.6px #000000;
  }
  .philosophical-item::before {
    font-size: 18px;
  }
}

/* Objectives & Targets Section */
.objectives-banner {
  width: 100%;
  min-height: 280px;
  background-image: url('assets/bg-philosophical-foundation.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 40px 0;
}

.objectives-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  width: 100%;
  /* Solid retro spread shadow for a premium neo-brutalist look */
  text-shadow: 
    1px 1px 0 #000000,
    2px 2px 0 #000000,
    3px 3px 0 #000000,
    4px 4px 0 #000000;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

.objectives-cards-section {
  width: 100%;
  background-color: #ffffff;
  padding: 40px 0;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .objectives-banner {
    min-height: 220px;
  }
  .objectives-title {
    font-size: 36px;
    text-shadow: 
      1px 1px 0 #000000,
      2px 2px 0 #000000,
      3px 3px 0 #000000;
  }
  .objectives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .objectives-banner {
    min-height: 180px;
    padding: 30px 0;
  }
  .objectives-title {
    font-size: 26px;
    text-shadow: 
      1px 1px 0 #000000,
      2px 2px 0 #000000;
  }
  .objectives-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Waste-To-Value Programs & SDGs Section */
.programs-section {
  width: 100%;
  background-color: #ffffff;
  padding: 60px 0 0 0;
}

.programs-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.programs-interactive-area {
  position: relative;
  width: 100%;
  padding-bottom: 80px;
  overflow: visible;
}

/* Blurry Background container */
.programs-bg-wrapper {
  position: absolute;
  top: 140px; /* Starting position of blurred bg on desktop */
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.programs-bg-blurred {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/bg-waste-to-value-programs.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(10px);
  transform: scale(1.05); /* Avoid white/blurry borders */
}

.programs-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 28px 24px;
}

.program-column {
  display: contents;
}

/* Call-out Bubble Styling */
.callout-bubble {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  z-index: 10;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.callout-bubble:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* Call-out bubble pointers pointing down */
.callout-bubble::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border-right: 4px solid;
  border-bottom: 4px solid;
  border-color: inherit;
  z-index: 3;
}

/* Color theme mappings matching SDG colors */
.bubble-red {
  border: 4px solid #e5243b;
}

.bubble-orange {
  border: 4px solid #f26a2e;
}

.bubble-yellow {
  border: 4px solid #f99d26;
}

.bubble-mustard {
  border: 4px solid #cf8d2a;
}

/* Bubble content text elements */
.bubble-num {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  margin-right: 2px;
  color: #111111;
}

.bubble-text {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #111111;
}

.bubble-multi-item {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.bubble-multi-item:last-child {
  margin-bottom: 0;
}

/* SDG Square Images */
.sdg-image-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0; /* Keep it square like attachment */
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  order: 2;
}

.sdg-image-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

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

/* Bottom Right Decorative Teal Arrow */
.decorative-arrow {
  position: absolute;
  right: 40px;
  bottom: 24px;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #72b28c; /* Sage green tone matching style */
  opacity: 0.85;
}

/* Responsive Layouts */
@media (max-width: 1024px) {
  .programs-title {
    font-size: 30px;
    padding: 0 20px;
  }
  
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .program-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .callout-bubble {
    order: initial;
    height: auto;
    min-height: 140px;
  }

  .sdg-image-wrapper {
    order: initial;
  }

  .programs-bg-wrapper {
    top: 360px; /* Adjusted top boundary to match second row wrap */
  }
}

@media (max-width: 768px) {
  .programs-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .programs-bg-wrapper {
    top: 750px;
  }

  .callout-bubble {
    min-height: auto;
    padding: 16px;
  }
}

/* Facilitation Section */
.facilitation-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
}

.facilitation-bg-blurred {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/bg-waste-to-value-programs.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(15px);
  transform: scale(1.05); /* Avoid white/blurry borders */
  z-index: 1;
}

.facilitation-container {
  position: relative;
  z-index: 2;
}

.facilitation-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  /* Solid retro spread shadow for a premium neo-brutalist look matching other sections */
  text-shadow: 
    1px 1px 0 #000000,
    2px 2px 0 #000000,
    3px 3px 0 #000000,
    4px 4px 0 #000000;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  text-align: left;
}

.facilitation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}

.facilitation-card {
  background: linear-gradient(to top, #7cc977, #9de198);
  border-radius: 30px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facilitation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.facilitation-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 24px;
  text-align: center;
}

.facilitation-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

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

.facilitation-card-link-wrapper {
  margin-top: auto;
}

.facilitation-card-link-text,
.facilitation-card-link {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.facilitation-card-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .facilitation-grid {
    gap: 30px;
  }
  .facilitation-card {
    padding: 30px 24px;
  }
}

@media (max-width: 768px) {
  .facilitation-section {
    padding: 60px 0;
  }
  .facilitation-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-shadow: 
      1px 1px 0 #000000,
      2px 2px 0 #000000,
      3px 3px 0 #000000;
  }
  .facilitation-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .facilitation-card-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
}

/* Collaborator & Partnership Section */
.partnership-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
  scroll-margin-top: 110px;
}

.partnership-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partnership-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.partnership-logo-wrapper {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.partnership-logo-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Responsive styles for Partnership Section */
@media (max-width: 1024px) {
  .partnership-section {
    padding: 60px 0;
  }
  .partnership-title {
    font-size: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .partnership-section {
    padding: 40px 0;
  }
  .partnership-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

/* Our Team Section Styles */
.team-section {
  width: 100%;
  background-color: #ffffff;
  padding: 60px 0 80px 0;
  scroll-margin-top: 110px;
}

.team-title {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 900;
  color: #7de479;
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  text-shadow: 
    -2px -2px 0 #000000,  
     2px -2px 0 #000000,
    -2px  2px 0 #000000,
     2px  2px 0 #000000,
    -2px  0px 0 #000000,
     2px  0px 0 #000000,
     0px -2px 0 #000000,
     0px  2px 0 #000000,
     1px  1px 0 #000000,
     3px  3px 0 #000000,
     4px  4px 0 #000000;
}

.advisory-board-container {
  background-color: #6a7e96;
  border-radius: 30px;
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.advisory-board-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 35px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.advisory-board-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 16px;
  width: 100%;
  align-items: start;
}

.advisor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}

.advisor-photo-wrapper {
  width: 100%;
  max-width: 130px;
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.2s ease;
}

.advisor-card:hover .advisor-photo-wrapper {
  transform: translateY(-5px);
}

.advisor-photo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.advisor-name {
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin: 0;
  text-shadow: 
    -1px -1px 0 #000000,  
     1px -1px 0 #000000,
    -1px  1px 0 #000000,
     1px  1px 0 #000000,
     0px  2px 4px rgba(0, 0, 0, 0.8);
}

.advisor-sub {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.9;
  display: block;
  margin-top: 4px;
}

/* Responsive styles for Team Section */
@media (max-width: 1024px) {
  .team-section {
    padding: 40px 0 60px 0;
  }
  .team-title {
    font-size: 38px;
    text-shadow: 
      -1.5px -1.5px 0 #000000,  
       1.5px -1.5px 0 #000000,
      -1.5px  1.5px 0 #000000,
       1.5px  1.5px 0 #000000,
      -1.5px  0px 0 #000000,
       1.5px  0px 0 #000000,
       0px -1.5px 0 #000000,
       0px  1.5px 0 #000000,
       3px  3px 0 #000000;
    margin-bottom: 30px;
  }
  .advisory-board-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
  .advisor-photo-wrapper {
    max-width: 120px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 30px 0 50px 0;
  }
  .team-title {
    font-size: 32px;
    text-shadow: 
      -1px -1px 0 #000000,  
       1px -1px 0 #000000,
      -1px  1px 0 #000000,
       1px  1px 0 #000000,
      -1px  0px 0 #000000,
       1px  0px 0 #000000,
       0px -1px 0 #000000,
       0px  1px 0 #000000,
       2px  2px 0 #000000;
    margin-bottom: 24px;
  }
  .advisory-board-container {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .advisory-board-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .advisory-board-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }
  .advisor-photo-wrapper {
    max-width: 100px;
    height: 120px;
  }
  .advisor-name {
    font-size: 11px;
  }
  .advisor-sub {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .advisory-board-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .advisor-photo-wrapper {
    max-width: 140px;
    height: 160px;
  }
}

/* Alternate Team Section Styles */
.team-alt-section {
  width: 100%;
  background-color: #ffffff;
  padding: 0 0 80px 0;
}

.team-alt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

@media (max-width: 1024px) {
  .team-alt-section {
    padding: 0 0 60px 0;
  }
  .team-alt-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Our Service & Activity Page Styles */
.services-section {
  width: 100%;
  background-color: #ffffff;
  padding: 60px 0 80px 0;
}

.services-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: #000000;
  text-align: left;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.services-left-col {
  display: flex;
  flex-direction: column;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 40px;
  align-items: stretch;
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-content: start;
}

.service-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #9cc4a5;
  color: #000000;
  border-radius: 16px;
  padding: 24px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  min-height: 80px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.2s ease;
  line-height: 1.35;
}

.service-pill:hover {
  background-color: #aed4b7;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.solutions-card {
  background-color: #72b28c;
  border-radius: 20px;
  padding: 48px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  color: #ffffff;
}

.solutions-card-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.solutions-card-description {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 36px;
  opacity: 0.95;
  max-width: 340px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 40px 0 60px 0;
  }
  .services-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .services-list-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-pill {
    padding: 20px;
    min-height: auto;
    font-size: 14px;
  }
  .solutions-card {
    padding: 36px 20px;
  }
  .solutions-card-title {
    font-size: 30px;
  }
}

/* Contact Banner Section */
.contact-banner-section {
  width: 100%;
  min-height: 180px;
  background-image: url('assets/contact-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 4px solid #72b28c;
  display: flex;
  align-items: center;
  position: relative;
  padding: 40px 0;
}

.contact-banner-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.contact-btn {
  --wtv-btn-color: #ffffff;
  --wtv-btn-bg: #72b28c;
  --wtv-btn-hover-bg: #83c29d;
  --wtv-btn-outline-color: #72b28c;
}

/* Service Pill link fix */
.service-pill {
  text-decoration: none;
}

/* New Service Page Styles */
.service-header-section {
  padding: 50px 0 20px 0;
  text-align: center;
  background-color: #ffffff;
}

.service-title-pill {
  display: inline-block;
  background-color: #9cc4a5;
  border-radius: 30px;
  padding: 16px 48px;
  max-width: 95%;
  transition: transform 0.2s ease;
}

.service-title-text {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  text-shadow: 
    -2px -2px 0 #000000,  
     2px -2px 0 #000000,
    -2px  2px 0 #000000,
     2px  2px 0 #000000,
     3px  3px 0px #000000,
     4px  4px 0px #000000;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.service-details-section {
  background-color: #ffffff;
  padding: 20px 0 60px 0;
}

.service-details-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

.column-header {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
  color: #000000;
}

.overview-paragraph {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: #111111;
  margin-bottom: 40px;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid #000000;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

.gallery-item-caption {
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #000000;
}

/* Right Column: Product Panel */
.product-panel-card {
  background-color: #d1e6d5;
  border-radius: 30px;
  padding: 35px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.product-panel-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
  color: #000000;
}

.product-bullet-list {
  list-style-type: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-bullet-list li {
  font-family: var(--font-family);
  font-size: 14.5px;
  line-height: 1.5;
  color: #000000;
}

.product-bullet-list li strong {
  font-weight: 700;
}

.product-more-link {
  margin-top: 20px;
  padding-left: 20px;
}

.more-dots-link {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
}

.more-dots-link:hover {
  text-decoration: underline;
}

/* Responsive Service Page Queries */
@media (max-width: 1024px) {
  .service-title-text {
    font-size: 32px;
  }
  .service-title-pill {
    padding: 14px 36px;
  }
}

@media (max-width: 900px) {
  .service-details-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-gallery-grid {
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .service-title-text {
    font-size: 24px;
    text-shadow: 
      -1.5px -1.5px 0 #000000,  
       1.5px -1.5px 0 #000000,
      -1.5px  1.5px 0 #000000,
       1.5px  1.5px 0 #000000,
       2px  2px 0px #000000,
       3px  3px 0px #000000;
  }
  .service-title-pill {
    padding: 10px 24px;
  }
  
  .service-gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .gallery-img-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .product-panel-card {
    padding: 24px 16px;
  }
}

/* Contact Us Page Styles */
.contact-header-section {
  padding: 80px 0 40px 0;
  text-align: center;
  background-color: #ffffff;
}

.contact-title-pill {
  display: inline-block;
  background-color: #9cc4a5; /* Matching sage green pill background */
  border-radius: 50px;
  padding: 16px 60px;
  max-width: 95%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-title-text {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #000000;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.contact-details-section {
  background-color: #ffffff;
  padding: 40px 0 100px 0;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: start;
}

.contact-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-col-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 30px;
  max-width: 480px;
}

.contact-col-subtitle {
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

.contact-col-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  margin: 0;
}

.contact-link {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.contact-link:hover {
  opacity: 0.7;
  border-bottom-color: #000000;
}

/* Responsive styles for Contact Page */
@media (max-width: 900px) {
  .contact-header-section {
    padding: 60px 0 30px 0;
  }
  .contact-title-text {
    font-size: 32px;
  }
  .contact-title-pill {
    padding: 14px 40px;
  }
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-col-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .contact-item {
    font-size: 16px;
  }
}

/* News & Documentation Page Styles */
.news-doc-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.news-doc-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Column: Documentation */
.doc-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.doc-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: #000000;
  text-align: left;
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.doc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0;
  background-color: #ffffff;
}

.doc-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.doc-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.doc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.doc-img-wrapper:hover .doc-img {
  transform: scale(1.04);
}

.doc-caption {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #000000;
}

.doc-caption-link {
  color: #000000;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.doc-caption-link:hover {
  opacity: var(--text-hover-opacity);
}

/* Right Column: News Sidebar */
.news-column {
  display: block;
}

.news-panel-card {
  background-color: #72b28c;
  border-radius: 24px;
  padding: 35px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  color: #000000;
}

.news-panel-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: left;
  color: #000000;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.news-item {
  font-family: var(--font-family);
  font-size: 14.5px;
  line-height: 1.5;
  color: #000000;
  font-weight: 600;
}

.news-item-link {
  color: #000000;
  text-decoration: underline;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.news-item-link:hover {
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .news-doc-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
  }
  .doc-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .news-doc-section {
    padding: 40px 0;
  }
  .news-doc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .doc-gallery-grid {
    grid-template-columns: 1fr;
  }
  .news-panel-card {
    padding: 30px 20px;
  }
}




