/* HEADER */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --primary-orange: #F26722;
  --drawer-bg: #005A36;
  --text-dark: #222222;
  --border-color: #e5e5e5;
  --font-heading: 'museo-sans', 'PT Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'PT Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f4f4f4;
  font-family: var(--font-body);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings & Buttons using Museo Sans */
h1, h2, h3, h4, h5, h6,
.hero-title,
.footer-nav-title,
.btn-primary,
.header-link,
.drawer-nav-links a {
  font-family: var(--font-heading);
}

/* Site Header */
.site-header {
  width: 100%;
  border-top: 4px solid #1a2238;
  border-bottom: 1px solid var(--border-color);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  max-height: 75px;
  width: auto;
  display: block;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 17px;
  position: relative;
  transition: color 0.2s ease;
}

.header-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-orange);
  transition: width 0.3s ease;
}

.header-link:hover {
  color: var(--primary-orange);
}

.header-link:hover::after {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 18px;
  border-radius: 2px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  transition: var(--transition-smooth);
  white-space: nowrap;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  background-color: #d85413;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(242, 103, 34, 0.3);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-primary-header {
  background-color: var(--primary-orange);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 18px;
  border-radius: 2px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  transition: var(--transition-smooth);
  white-space: nowrap;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-primary-header:hover {
  background-color: #d85413;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(242, 103, 34, 0.3);
}

.btn-primary-header:active {
  transform: translateY(0);
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.icon-btn:hover {
  transform: scale(1.1);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-smooth);
}

/* Slide-Over Drawer Navigation */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background-color: var(--drawer-bg);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 40px 60px;
  box-shadow: -5px 0 25px rgba(0,0,0,0.2);
}

.nav-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s ease;
}

.close-btn:hover {
  opacity: 1;
  transform: rotate(5deg);
}

.drawer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.drawer-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.drawer-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.drawer-nav-links a:hover {
  color: var(--primary-orange);
  padding-left: 12px;
}

.arrow-icon {
  font-size: 16px;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.drawer-nav-links a:hover .arrow-icon {
  transform: translateX(6px);
  opacity: 1;
}

/* Backdrop */
.overlay-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overlay-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Footer Styling */
.site-footer {
  background-color: #252638;
  color: #ffffff;
  padding-top: 60px;
  border-top: 4px solid var(--primary-orange);
}

.footer-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 20px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-img {
  max-height: 60px;
  width: auto;
  align-self: flex-start;
}

.footer-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
  margin-bottom: 30px;
}

.footer-nav-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary-orange);
  padding-left: 6px;
}

/* Contact Details Block */
.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-info a:hover {
  color: var(--primary-orange);
}

.contact-icon {
  color: var(--primary-orange);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.footer-contact-info li:hover .contact-icon {
  transform: scale(1.15);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* Footer Social Icons Styling */
.footer-social-row {
  margin-top: 30px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social-links a:hover {
  background-color: var(--primary-orange, #F26722);
  color: #ffffff;
  transform: translateY(-2px);
}





/* Hero Section Styling & Entrance Animation */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(
      to right,
      rgba(10, 15, 25, 0.85) 0%,
      rgba(10, 15, 25, 0.65) 50%,
      rgba(10, 15, 25, 0.4) 100%
    ),
    url('../../assets/images/sllide_asis_001.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 0;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #F26722;
  font-weight: 400;
  max-width: 640px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  max-width: 640px;
}

.hero-cta {
  margin-top: 8px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .logo-img {
    max-height: 55px;
  }

  .header-link,
  .btn-primary-header {
    display: none;
  }
  
  .hero-title {
  font-size: 32px;
  }

  .nav-drawer {
    width: 100%;
    padding: 30px 25px;
  }

  .drawer-nav-links a {
    font-size: 20px;
    padding: 14px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }
}


.page-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(
      to right,
      rgba(10, 15, 25, 0.85) 0%,
      rgba(10, 15, 25, 0.65) 50%,
      rgba(10, 15, 25, 0.4) 100%
    ),
    url('../../assets/images/home-slider/agenda_hero.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 50px 0;
}

.page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}


/* ASIN Two-Column Section Styles */
.asin-section {
  width: 100%;
  background-color: #ffffff;
  padding: 90px 20px;
}

.asin-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Column 1: Image Styling & Zoom Effect */
.asin-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 580px;
  border-radius: 4px;
  overflow: hidden;
}

.asin-image-wrapper-small {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 4px;
  overflow: hidden;
}

.asin-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.asin-image-wrapper:hover .asin-image,
.asin-image-wrapper-small:hover .asin-image {
  transform: scale(1.04);
}

/* Column 2: Content Layout */
.asin-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.asin-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 12px;
}

.asin-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.asin-content {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted, #555555);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.asin-highlight {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--drawer-bg);
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 4px solid var(--primary-orange);
  transition: border-left-width 0.2s ease;
}

.asin-highlight:hover {
  border-left-width: 8px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .asin-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .asin-image-wrapper {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .asin-section {
    padding: 60px 20px;
  }

  .asin-title {
    font-size: 30px;
  }

  .asin-content {
    font-size: 16px;
  }

  .asin-highlight {
    font-size: 18px;
  }

  .asin-image-wrapper {
    min-height: 280px;
  }
}

/* Why ASIN Section Styles */
.why-asin-section {
  width: 100%;
  background-color: #f9f9f9;
  padding: 90px 20px;
}

.why-asin-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-asin-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 4px;
  overflow: hidden;
}

.why-asin-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.why-asin-image-wrapper:hover .why-asin-image {
  transform: scale(1.04);
}

.why-asin-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.why-asin-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 12px;
}

.why-asin-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.why-asin-content {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted, #555555);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.why-asin-highlight {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--drawer-bg);
  padding-left: 16px;
  border-left: 4px solid var(--primary-orange);
}

@media (max-width: 992px) {
  .why-asin-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-asin-image-wrapper {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .why-asin-section {
    padding: 60px 20px;
  }

  .why-asin-title {
    font-size: 28px;
  }

  .why-asin-content {
    font-size: 16px;
  }

  .why-asin-highlight {
    font-size: 17px;
  }

  .why-asin-image-wrapper {
    min-height: 280px;
  }
}

/* What We Do - Full Width Horizontal Block Palette */
.what-we-do-section {
  width: 100%;
  background-color: #ffffff;
  padding-top: 80px;
}

.what-we-do-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.what-we-do-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 12px;
}

.what-we-do-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

/* 5-Column Seamless Colored Grid */
.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

.grid-card {
  padding: 50px 30px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  position: relative;
  z-index: 1;
}

.grid-card:hover {
  transform: translateY(-8px);
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  filter: brightness(1.05);
}

.color-1 { background-color: #633f3f; }
.color-2 { background-color: #9e3034; }
.color-3 { background-color: #f26722; }
.color-4 { background-color: #6da781; }
.color-5 { background-color: #246a48; }

.card-number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -1px;
  transition: transform 0.3s ease;
}

.grid-card:hover .card-number {
  transform: scale(1.1);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: #ffffff;
}

.card-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1024px) {
  .what-we-do-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-card {
    padding: 40px 24px;
  }

  .card-number {
    font-size: 36px;
    margin-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .what-we-do-section {
    padding-top: 60px;
  }

  .what-we-do-title {
    font-size: 28px;
  }

  .what-we-do-grid {
    grid-template-columns: 1fr;
  }

  .grid-card {
    padding: 36px 20px;
  }
}

/* Our Ecosystem Section Styles */
.ecosystem-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
}

.ecosystem-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.ecosystem-header {
  text-align: left;
  max-width: 800px;
  margin-bottom: 50px;
}

.ecosystem-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 12px;
}

.ecosystem-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.ecosystem-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted, #555555);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
}

.eco-card {
  padding: 36px 24px;
  border-radius: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: var(--transition-smooth);
}

.eco-color-1 { background-color: rgba(99, 63, 63, 0.1); }
.eco-color-2 { background-color: rgba(125, 56, 57, 0.1); }
.eco-color-3 { background-color: rgba(158, 48, 52, 0.1); }
.eco-color-4 { background-color: rgba(242, 103, 34, 0.1); }
.eco-color-5 { background-color: rgba(109, 167, 129, 0.1); }
.eco-color-6 { background-color: rgba(36, 106, 72, 0.1); }
.eco-color-7 { background-color: rgba(26, 66, 48, 0.1); }

.eco-color-1 .eco-number, .eco-color-1 .eco-title { color: #633f3f; }
.eco-color-2 .eco-number, .eco-color-2 .eco-title { color: #7d3839; }
.eco-color-3 .eco-number, .eco-color-3 .eco-title { color: #9e3034; }
.eco-color-4 .eco-number, .eco-color-4 .eco-title { color: #f26722; }
.eco-color-5 .eco-number, .eco-color-5 .eco-title { color: #3d704f; }
.eco-color-6 .eco-number, .eco-color-6 .eco-title { color: #246a48; }
.eco-color-7 .eco-number, .eco-color-7 .eco-title { color: #1a4230; }

.eco-number {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  transition: transform 0.3s ease;
}

.eco-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.eco-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark, #222222);
}

.eco-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.eco-card:hover .eco-number {
  transform: translateY(-2px);
}

.eco-color-1:hover { background-color: rgba(99, 63, 63, 0.18); }
.eco-color-2:hover { background-color: rgba(125, 56, 57, 0.18); }
.eco-color-3:hover { background-color: rgba(158, 48, 52, 0.18); }
.eco-color-4:hover { background-color: rgba(242, 103, 34, 0.18); }
.eco-color-5:hover { background-color: rgba(109, 167, 129, 0.18); }
.eco-color-6:hover { background-color: rgba(36, 106, 72, 0.18); }
.eco-color-7:hover { background-color: rgba(26, 66, 48, 0.18); }

@media (max-width: 1024px) {
  .ecosystem-container {
    padding: 0 24px;
  }

  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ecosystem-section {
    padding: 50px 0;
  }

  .ecosystem-container {
    padding: 0 20px;
  }

  .ecosystem-title {
    font-size: 28px;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .eco-card {
    padding: 28px 20px;
  }

  .eco-number {
    font-size: 32px;
    margin-bottom: 14px;
  }
}

/* Our Ambition Section Styles */
.ambition-section {
  width: 100%;
  background-color: #f9f9f9;
  padding: 80px 0;
}

.ambition-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.ambition-header {
  text-align: left;
  max-width: 900px;
  margin-bottom: 40px;
}

.ambition-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-orange, #f26722);
  margin-bottom: 12px;
}

.ambition-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark, #222222);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.ambition-intro {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted, #555555);
}

.ambition-content-block {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  border-left: 4px solid var(--primary-orange, #f26722);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.ambition-content-block:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.ambition-lead-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--drawer-bg, #005a36);
  margin-bottom: 28px;
}

.ambition-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
  padding: 0;
  margin: 0;
}

.ambition-item {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease;
}

.ambition-item:hover {
  transform: translateX(4px);
}

.ambition-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background-color: #246A48;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ambition-item:hover .ambition-icon {
  transform: scale(1.15);
}

.ambition-icon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.ambition-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark, #222222);
}

.ambition-item-highlight .ambition-icon {
  background-color: var(--drawer-bg, #005a36);
}

.ambition-item-highlight .ambition-icon svg {
  stroke: #ffffff;
}

.ambition-item-highlight .ambition-text {
  color: var(--drawer-bg, #005a36);
}

@media (max-width: 1024px) {
  .ambition-container {
    padding: 0 24px;
  }

  .ambition-content-block {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .ambition-section {
    padding: 50px 0;
  }

  .ambition-container {
    padding: 0 20px;
  }

  .ambition-title {
    font-size: 28px;
  }

  .ambition-intro {
    font-size: 16px;
  }

  .ambition-lead-text {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .ambition-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Get Involved CTA Section Styles */
.cta-section {
  width: 100%;
  background-color: #6da781;
  padding: 60px 0;
}

.cta-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-content {
  max-width: 820px;
}

.cta-tagline {
  font-family: var(--font-heading, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 8px;
}

.cta-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.cta-text {
  font-family: var(--font-body, sans-serif);
  font-size: 16px;
  color: #ffffff;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-action {
  flex-shrink: 0;
}

.cta-button {
  display: inline-block;
  background-color: #f26722;
  color: #ffffff;
  font-family: var(--font-heading, sans-serif);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.cta-button:hover {
  background-color: #e05511;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .cta-container {
    padding: 0 24px;
    gap: 30px;
  }

  .cta-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 48px 0;
  }

  .cta-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 24px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-text {
    font-size: 15px;
  }

  .cta-action {
    width: 100%;
  }

  .cta-button {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  
  font-family: var(--font-heading, sans-serif);
  font-size: 1rem;
  
  border-radius: 0.375rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

/* Add separator between items using CSS */
.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin: 0 0.5rem;
  color: #fff;
}

.breadcrumb-item a {
  color: #B6754D;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

/* Style for the current page */
.breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}

.strategy-container {
    display: flex;
    width: 100%;
    min-height: 450px; /* Gives the panels a substantial, uniform height */
  }

  /* Styling for each individual column */
  .strategy-panel {
    flex: 1; /* Ensures all three panels take up equal width */
    padding: 60px 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
  }

  .strategy-panel .number {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 25px;
  }

  .strategy-panel h2 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .strategy-panel p {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  /* Colors extracted from the first three panels of image_7b2c22.png */
  .panel-purpose {
    background-color: #634341; 
  }

  .panel-vision {
    background-color: #9D3637; 
  }

  .panel-mission {
    background-color: #ED6921; 
  }

  /* Responsive layout: stack columns on smaller screens */
  @media (max-width: 900px) {
    .strategy-container {
      flex-direction: column;
    }
    .strategy-panel {
      padding: 40px 30px;
    }
  }
  
  /* Our Approach Section Styles */
.approach-section {
  width: 100%;
  background-color: #ffffff;
  padding: 90px 0;
}

.approach-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.approach-header {
  text-align: left;
  max-width: 900px;
  margin-bottom: 60px;
}

.approach-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 12px;
}

.approach-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.approach-intro {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted, #555555);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 3-Column Grid for the 6 Steps */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.approach-card {
  background-color: #f9f9f9;
  padding: 40px 30px;
  border-radius: 4px;
  border-top: 4px solid var(--primary-orange);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

.approach-step-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--drawer-bg); /* Using your #005A36 dark green */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.approach-step-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .approach-container {
    padding: 0 24px;
  }
  
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .approach-section {
    padding: 60px 0;
  }

  .approach-container {
    padding: 0 20px;
  }

  .approach-title {
    font-size: 28px;
  }

  .approach-intro {
    font-size: 16px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .approach-card {
    padding: 30px 24px;
  }
}

.bg-grey {
    background-color: #fff8f2;
}

/* From Network to Impact Section */
.impact-section {
  width: 100%;
  background-color: var(--drawer-bg); /* #005A36 */
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
}

.impact-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.impact-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
  color: #ffffff;
}

/* Horizontal Process Timeline */
.impact-process {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 100%;
  margin: 0 auto 60px auto;
}

/* The connecting background line */
.impact-process::before {
  content: '';
  position: absolute;
  top: 15px; /* Vertically centers the line behind the dots */
  left: 40px;
  right: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 16px;
  cursor: default;
}

/* Timeline Nodes */
.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--drawer-bg);
  border: 4px solid var(--primary-orange);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.process-step:hover .step-dot {
  background-color: var(--primary-orange);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(242, 103, 34, 0.4);
}

.step-label {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.process-step:hover .step-label {
  color: var(--primary-orange);
}

/* Typography for the concluding statement */
.impact-content {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 850px;
  margin: 0 auto;
}

.impact-lead {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .step-label {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 768px) {
  .impact-section {
    padding: 70px 0;
  }

  .impact-container {
    padding: 0 20px;
  }

  .impact-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .impact-lead {
    font-size: 22px;
  }

  .impact-content {
    font-size: 18px;
    text-align: left;
  }

  /* Convert to Vertical Timeline on Mobile */
  .impact-process {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-left: 20px;
  }

  /* Rotate the connecting line to be vertical */
  .impact-process::before {
    top: 10px;
    bottom: 10px;
    left: 35px; /* Aligns line perfectly behind the dots */
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-step {
    flex-direction: row;
    width: 100%;
    margin-bottom: 25px;
  }

  .process-step:last-child {
    margin-bottom: 0;
  }

  .step-dot {
    flex-shrink: 0;
  }

  .step-label {
    font-size: 18px;
    text-align: left;
  }
}

/* Partnership Form Section */
.partnership-form-section {
  width: 100%;
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.form-container {
  max-width: 1140px; /* Kept slightly narrower than the main container for optimal reading width */
  margin: 0 auto;
  background-color: #ffffff;
  padding: 50px 60px;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-top: 5px solid var(--primary-orange);
}

.form-header {
  margin-bottom: 40px;
  text-align: center;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.form-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-muted, #555555);
  line-height: 1.6;
}

/* Form Grid System */
.asin-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: 1 / -1;
}

.mt-4 {
  margin-top: 16px;
}

/* Labels and Inputs */
.asin-form label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.section-label {
  font-size: 17px !important;
  margin-bottom: 16px !important;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.required {
  color: var(--primary-orange);
}

.field-hint {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
  margin-top: -5px;
}

.asin-form input[type="text"],
.asin-form input[type="email"],
.asin-form input[type="tel"],
.asin-form select,
.asin-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background-color: #fcfcfc;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.asin-form input:focus,
.asin-form select:focus,
.asin-form textarea:focus {
  border-color: var(--primary-orange);
  background-color: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(242, 103, 34, 0.15);
}

.asin-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkboxes Grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  color: #444 !important;
  cursor: pointer;
  margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  accent-color: var(--primary-orange);
  cursor: pointer;
}

/* Actions & Button */
.form-actions {
  margin-top: 30px;
  text-align: center;
}

.form-submit-btn {
  width: auto;
  min-width: 250px;
  padding: 16px 30px;
  font-size: 16px;
  cursor: pointer;
  border: none;
}

/* Success Message Block */
.form-success-message {
  background-color: rgba(0, 90, 54, 0.05); /* Uses a tint of --drawer-bg */
  border-left: 4px solid var(--drawer-bg);
  padding: 30px;
  border-radius: 4px;
  margin-bottom: 30px;
  text-align: left;
}

.form-success-message h3 {
  color: var(--drawer-bg);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-success-message p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-container {
    padding: 40px 25px;
  }

  .form-row, 
  .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-title {
    font-size: 26px;
  }

  .form-actions {
    margin-top: 20px;
  }
  
  .form-submit-btn {
    width: 100%;
  }
}


/* Who Can Express Interest Section - Minimal Grid Style */
.interest-section {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 20px;
}

.interest-container {
  max-width: 1240px;
  margin: 0 auto;
}

.interest-header {
  text-align: center;
  margin-bottom: 50px;
}

.interest-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.interest-subtitle {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--text-muted, #555555);
}

/* Grid of Individual Cards */
.interest-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.interest-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #fff;
  padding: 24px 30px;
  border: 0px solid var(--border-color);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.interest-item:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
}

.interest-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interest-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-orange);
  transition: transform 0.3s ease;
}

.interest-item:hover .interest-icon svg {
  transform: scale(1.15);
}

.interest-text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text-dark);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .interest-section {
    padding: 70px 20px;
  }

  .interest-title {
    font-size: 28px;
  }
  
  .interest-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .interest-item {
    padding: 20px 24px;
  }
}


/* Additional Form Styles for the EOI Layout */
.eoi-section {
  width: 100%;
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.form-section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--drawer-bg); /* Uses the dark green for section headers */
  margin: 15px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}

.form-divider {
  border: 0;
  height: 1px;
  background-color: var(--border-color);
  margin: 40px 0;
}

/* Multi-select box styling */
.asin-form select[multiple] {
  height: 140px;
  padding: 10px;
}

.asin-form select[multiple] option {
  padding: 8px 12px;
  margin-bottom: 2px;
  border-radius: 4px;
}

.asin-form select[multiple] option:checked {
  background-color: rgba(242, 103, 34, 0.15); /* Soft primary orange tint */
  color: var(--text-dark);
  font-weight: 700;
}

/* Radio button specific alignment */
.checkbox-label input[type="radio"] {
  margin-top: 3px;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  accent-color: var(--primary-orange);
  cursor: pointer;
}


/* Blog Section Styles */
.blog-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
}

/* Aligned with standard 1280px site container & 40px margins */
.blog-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

/* Header Flex Row */
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.blog-tagline {
  font-family: var(--font-heading, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f26722;
  margin-bottom: 8px;
}

.blog-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 34px;
  font-weight: 800;
  color: #111111;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.blog-view-all {
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #005a36;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.blog-view-all:hover {
  color: #f26722;
}

/* Grid Layout (3 Columns) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card Styling */
.blog-card {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #005a36;
  color: #ffffff;
  font-family: var(--font-heading, sans-serif);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 2px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.blog-card-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: #005A36;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.blog-card-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-title a {
  color: #111111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: #f26722;
}

.blog-excerpt {
  font-family: var(--font-body, sans-serif);
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #f26722;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-read-more:hover {
  color: #005a36;
}

.blog-mobile-footer {
  display: none;
  margin-top: 32px;
  text-align: center;
}

/* Responsive Tablet View */
@media (max-width: 1024px) {
  .blog-container {
    padding: 0 24px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .blog-title {
    font-size: 28px;
  }
}

/* Responsive Mobile View */
@media (max-width: 768px) {
  .blog-section {
    padding: 50px 0;
  }

  .blog-container {
    padding: 0 20px;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .blog-header .blog-view-all {
    display: none;
  }

  .blog-mobile-footer {
    display: block;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-title {
    font-size: 24px;
  }
}



/* Single Post Page Styles */
.post-page {
  width: 100%;
  background-color: #ffffff;
  padding: 60px 0 90px 0;
}

/* Aligned with standard 1280px site container & 40px margins */
.post-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

/* Header & Meta */
.post-header {
  max-width: 100%;
  margin-bottom: 32px;
 
}

.post-breadcrumbs {
  font-family: var(--font-body, sans-serif);
  font-size: 13px;
  color: #777777;
  margin-bottom: 16px;
}

.post-breadcrumbs a {
  color: #777777;
  text-decoration: none;
}

.post-breadcrumbs a:hover {
  color: #f26722;
}

.post-category {
  display: inline-block;
  background-color: rgba(242, 103, 34, 0.1);
  color: #f26722;
  font-family: var(--font-heading, sans-serif);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 2px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.post-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #111111;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.post-meta {
  display: flex;
  align-items: center;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background-color: #005a36;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 700;
}

.author-name {
  font-family: var(--font-heading, sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #111111;
}

.post-date {
  font-family: var(--font-body, sans-serif);
  font-size: 12px;
  color: #777777;
  letter-spacing: 0.5px;
}

/* Featured Media */
.post-featured-media {
  width: 100%;
  margin-bottom: 48px;
}

.post-featured-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.image-caption {
  font-family: var(--font-body, sans-serif);
  font-size: 13px;
  color: #777777;
  margin-top: 10px;
  font-style: italic;
}

/* Layout Grid: Article (2/3) + Sidebar (1/3) */
.post-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Typography & Content */
.post-content {
  font-family: var(--font-body, sans-serif);
  font-size: 17px;
  line-height: 1.75;
  color: #333333;
}

.lead-paragraph {
  font-size: 20px;
  line-height: 1.6;
  color: #111111;
  font-weight: 400;
  margin-bottom: 28px;
}

.post-content h2 {
  font-family: var(--font-heading, sans-serif);
  font-size: 26px;
  font-weight: 800;
  color: #111111;
  margin: 36px 0 16px 0;
  letter-spacing: -0.3px;
}

.post-content p {
  margin-bottom: 24px;
}

.post-quote {
  border-left: 4px solid #f26722;
  padding: 16px 24px;
  margin: 32px 0;
  background-color: #f8f9fa;
  font-family: var(--font-heading, sans-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  color: #005a36;
}

.post-content ul {
  margin: 0 0 28px 24px;
  padding: 0;
}

.post-content li {
  margin-bottom: 12px;
}

/* Footer Tags */
.post-footer-meta {
  border-top: 1px solid #eaeaea;
  padding-top: 24px;
  margin-top: 40px;
}

.post-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background-color: #f4f4f4;
  color: #555555;
  font-family: var(--font-body, sans-serif);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
}

/* Sidebar Widgets */
.post-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-widget {
  background-color: #f8f9fa;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  padding: 28px 24px;
}

.cta-widget {
  background-color: #005a36;
  border: none;
  color: #ffffff;
}

.cta-widget .widget-title {
  color: #ffffff;
}

.widget-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 12px;
}

.widget-text {
  font-family: var(--font-body, sans-serif);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.btn-sidebar {
  display: block;
  text-align: center;
  background-color: #f26722;
  color: #ffffff;
  font-family: var(--font-heading, sans-serif);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
}

.btn-sidebar:hover {
  background-color: #e05511;
}

.related-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-posts-list li {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 12px;
}

.related-posts-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related-posts-list a {
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
  line-height: 1.4;
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.related-posts-list a:hover {
  color: #f26722;
}

.related-date {
  font-family: var(--font-body, sans-serif);
  font-size: 11px;
  color: #888888;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .post-container {
    padding: 0 24px;
  }

  .post-title {
    font-size: 34px;
  }

  .post-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .post-sidebar {
    position: static;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .post-page {
    padding: 40px 0 60px 0;
  }

  .post-container {
    padding: 0 20px;
  }

  .post-title {
    font-size: 26px;
  }

  .lead-paragraph {
    font-size: 17px;
  }

  .post-content h2 {
    font-size: 22px;
  }

  .post-quote {
    font-size: 16px;
    padding: 12px 16px;
  }
}



/* Single Post Hero Layout */
.post-hero-section {
  width: 100%;
  position: relative;
  background-color: #101623; /* Dark Navy base fallback */
  padding: 80px 0 70px 0;
  overflow: hidden;
}

/* Background Image & Overlay Positioning in HTML */
.post-hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.post-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Semi-transparent dark overlay to ensure text contrast */
.post-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(16, 22, 35, 0.95) 0%, 
    rgba(16, 22, 35, 0.82) 60%, 
    rgba(16, 22, 35, 0.65) 100%
  );
}

/* Container aligned with site's 1280px grid */
.post-hero-container {
  position: relative;
  z-index: 2; /* Keeps text layered cleanly over the image & overlay */
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.post-hero-breadcrumbs {
  font-family: var(--font-body, sans-serif);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.post-hero-breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-hero-breadcrumbs a:hover {
  color: #f26722;
}

.post-hero-category {
  display: inline-block;
  background-color: #f26722;
  color: #ffffff;
  font-family: var(--font-heading, sans-serif);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.post-hero-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  letter-spacing: -0.8px;
  max-width: 960px;
  margin-bottom: 32px;
}

/* Author & Meta Bar */
.post-hero-meta {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  max-width: 960px;
}

.post-hero-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background-color: #005a36;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 700;
}

.author-name {
  font-family: var(--font-heading, sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.post-date {
  font-family: var(--font-body, sans-serif);
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Bottom Brand Accent Border */
.post-hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 3;
  background: linear-gradient(90deg, #f26722 0%, #6da781 50%, #005a36 100%);
}

/* Responsive Tablet */
@media (max-width: 1024px) {
  .post-hero-container {
    padding: 0 24px;
  }

  .post-hero-title {
    font-size: 36px;
  }
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .post-hero-section {
    padding: 50px 0 44px 0;
  }

  .post-hero-container {
    padding: 0 20px;
  }

  .post-hero-title {
    font-size: 28px;
  }
}



/* FAQ Section Styles */
.faq-section {
  width: 100%;
  background-color: #fcfcfc;
  padding: 80px 0;
}

/* Aligned with standard 1280px site container */
.faq-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.faq-header {
  text-align: left;
  max-width: 800px;
  margin-bottom: 48px;
}

.faq-tagline {
  font-family: var(--font-heading, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f26722;
  margin-bottom: 8px;
}

.faq-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: #111111;
  letter-spacing: -0.5px;
}

/* Accordion Layout */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1240px;
}

/* Borderless Shadow Cards */
.faq-item {
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

/* Expanded Card Shadow Highlight */
.faq-item[open] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

.faq-question {
  padding: 22px 28px;
  font-family: var(--font-heading, sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-item[open] .faq-question {
  color: #f26722;
}

/* Custom Expand Plus/Minus Indicator */
.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: #005a36;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

/* Horizontal Line */
.faq-icon::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

/* Vertical Line */
.faq-icon::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
}

/* Morph to minus symbol when opened */
.faq-item[open] .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item[open] .faq-icon::before {
  background-color: #f26722;
}

.faq-answer {
  padding: 0 28px 24px 28px;
  font-family: var(--font-body, sans-serif);
  font-size: 16px;
  line-height: 1.65;
  color: #555555;
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-highlight {
  font-family: var(--font-heading, sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #005a36;
  padding-left: 14px;
  border-left: 3px solid #f26722;
  margin-top: 8px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .faq-container {
    padding: 0 24px;
  }

  .faq-title {
    font-size: 30px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-container {
    padding: 0 20px;
  }

  .faq-title {
    font-size: 26px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 15px;
  }
}


/* Floating Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: var(--primary-orange, #F26722);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Shown state when page is scrolled down */
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: #d85413;
  transform: translateY(-2px);
}

/* Mobile responsive placement */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}


/* Contact ASIN Section Styles */
.contact-section {
  width: 100%;
  background-color: #fcfcfc;
  padding: 80px 0;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: start;
}

/* Left Column Styling */
.contact-tagline {
  font-family: var(--font-heading, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-orange, #f26722);
  margin-bottom: 8px;
}

.contact-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark, #111111);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.contact-description {
  font-family: var(--font-body, sans-serif);
  font-size: 16px;
  line-height: 1.65;
  color: #555555;
  margin-bottom: 32px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-card {
  background-color: #ffffff;
  padding: 18px 22px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(242, 103, 34, 0.1);
  color: var(--primary-orange, #f26722);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark, #111111);
  margin-bottom: 2px;
}

.contact-detail-text p, 
.contact-detail-text a {
  font-family: var(--font-body, sans-serif);
  font-size: 15px;
  color: #555555;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.contact-detail-text a:hover {
  color: var(--primary-orange, #f26722);
}

/* Right Column: Form */
.contact-form-col {
  background-color: #ffffff;
  padding: 36px;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label,
.enquiry-label {
  font-family: var(--font-heading, sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark, #222222);
  letter-spacing: 0.3px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-family: var(--font-body, sans-serif);
  font-size: 15px;
  color: var(--text-dark, #222222);
  background-color: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange, #f26722);
  box-shadow: 0 0 0 3px rgba(242, 103, 34, 0.12);
}

/* Checkbox Grid Layout */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body, sans-serif);
  font-size: 14px;
  color: #444444;
  cursor: pointer;
  user-select: none;
}

.checkbox-item input[type="checkbox"] {
  accent-color: var(--primary-orange, #f26722);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.btn-submit {
  background-color: var(--primary-orange, #f26722);
  color: #ffffff;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  margin-top: 8px;
}

.btn-submit:hover {
  background-color: var(--drawer-bg, #005a36);
  transform: translateY(-2px);
}

/* Global Newsletter Section Styles */
.newsletter-section {
  width: 100%;
  background-color: #6da781; /* Matching soft green CTA color */
  padding: 60px 0;
}

.newsletter-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-content {
  max-width: 580px;
}

.newsletter-tagline {
  font-family: var(--font-heading, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 8px;
}

.newsletter-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.newsletter-text {
  font-family: var(--font-body, sans-serif);
  font-size: 16px;
  color: #ffffff;
  opacity: 0.95;
  line-height: 1.6;
}

.newsletter-action {
  width: 100%;
  max-width: 500px;
}

.input-button-group {
  display: flex;
  gap: 0;
  width: 100%;
  margin-bottom: 10px;
}

.input-button-group input[type="email"] {
  flex-grow: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-family: var(--font-body, sans-serif);
  font-size: 15px;
  color: #222222;
  outline: none;
}

.btn-subscribe {
  background-color: var(--primary-orange, #f26722);
  color: #ffffff;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 16px 28px;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.btn-subscribe:hover {
  background-color: #d85413;
}

.newsletter-disclaimer {
  font-family: var(--font-body, sans-serif);
  font-size: 12px;
  color: #ffffff;
  opacity: 0.85;
  line-height: 1.5;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .contact-container,
  .newsletter-container {
    padding: 0 24px;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-action {
    max-width: 100%;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-section,
  .newsletter-section {
    padding: 50px 0;
  }

  .contact-container,
  .newsletter-container {
    padding: 0 20px;
  }

  .contact-form-col {
    padding: 24px 20px;
  }

  .form-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .contact-title,
  .newsletter-title {
    font-size: 26px;
  }

  .input-button-group {
    flex-direction: column;
    gap: 10px;
  }

  .input-button-group input[type="email"],
  .btn-subscribe {
    border-radius: 4px;
    width: 100%;
  }
}

.app-form-wrap{
    display: inline-block;
    width: 100%;
    position: relative;
    margin: 0 0 45px;
    padding: 40px;
    border: 1px solid #f6f7f6;
    background: #fafcfb;
    box-shadow: 0 0 35px 1px rgb(0 0 0 / 15%);
}
.app-form-wrap h2{
    font-size: 28px !important;
    font-weight: 600;
}
.app-form-wrap .wpforms-pagebreak-split{
    border-top: 1px solid #e8e8e8 !important;
    padding-top: 30px !important;
    margin-top: 30px !important;
}
.app-form-wrap div.wpforms-container-full .wpforms-form input[type=submit], 
.app-form-wrap .wpforms-container-full .wpforms-form input[type=submit], 
.app-form-wrap .wpforms-container-full .wpforms-form .wpforms-page-button{
    background: var(--asis-orange) !important;
    border-color: var(--asis-orange) !important;
    color: #ffffff !important;
    height: 52px;
    line-height: 52px;
    padding: 0 35px !important;
    font-size: 16px !important;
    font-weight: 500 important;
    border-radius: 4px;
}
.app-form-wrap div.wpforms-container-full .wpforms-form input[type=submit]:hover, 
.app-form-wrap .wpforms-container-full .wpforms-form input[type=submit]:focus, 
.app-form-wrap div.wpforms-container-full .wpforms-form input[type=submit]:active, 
.app-form-wrap div.wpforms-container-full .wpforms-form button[type=submit]:hover, 
.app-form-wrap div.wpforms-container-full .wpforms-form button[type=submit]:focus, 
.app-form-wrap div.wpforms-container-full .wpforms-form button[type=submit]:active, 
.app-form-wrap div.wpforms-container-full .wpforms-form .wpforms-page-button:hover, 
.app-form-wrap div.wpforms-container-full .wpforms-form .wpforms-page-button:active, 
.app-form-wrap .wpforms-container-full .wpforms-form .wpforms-page-button:focus{
    background: var(--asis-green) !important;
    border-color: var(--asis-green) !important;
}