/**
* Mana Pasifiki — Website Styles
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "DM Sans", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - Pacific Earth Tones */
:root {
  --background-color: #FAF7F2;
  --default-color: #3D3029;
  --heading-color: #1A2C2C;
  --accent-color: #B85C38;
  --surface-color: #FFFFFF;
  --contrast-color: #FFFFFF;
  --primary: #1A2C2C;
  --accent-light: #D4956A;
  --text-muted: #7C6B5D;
  --border: #DDD5C9;
}

/* Nav Menu Colors */
:root {
  --nav-color: #3D3029;
  --nav-hover-color: #B85C38;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #3D3029;
  --nav-dropdown-hover-color: #B85C38;
}

/* Legacy color presets — now handled by .crest-section / .trough-section in pacific-theme.css */
.light-background {
  --background-color: var(--warm-cloud);
  --surface-color: var(--white);
}

.dark-background {
  --background-color: var(--deep-ocean);
  --default-color: var(--text-light);
  --heading-color: var(--text-light);
  --surface-color: var(--mid-ocean);
  --contrast-color: var(--white);
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 72px;
  margin-right: 12px;
}

.header .logo .logo-text {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  color: #5C3A1E;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  font-size: 16px;
  color: var(--accent-color);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 5px 0 20px 0;
  font-size: 22px;
  font-weight: 400;
}

.hero .btn-get-started {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 36px;
  border-radius: 50px;
  transition: 0.3s;
  color: var(--contrast-color);
  border: 2px solid var(--accent-light);
  background: var(--accent-color);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.hero .btn-get-started.btn-outline {
  color: var(--contrast-color);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero .btn-get-started.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started {
    font-size: 13px;
  }
}


.hero .container {
  position: relative;
  z-index: 1;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 18px;
  color: #A0937D;
  font-weight: 400;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about > .container > .row {
  align-items: center;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  right: -80px;
  top: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item:after {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  right: -140px;
  top: -140px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 24px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.services .service-item h4 {
  font-weight: 600;
  margin: 15px 0 0 0;
  transition: 0.3s;
  font-size: 20px;
}

.services .service-item h4 a {
  color: var(--heading-color);
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin: 10px 0 0 0;
}

.services .service-item:hover:before,
.services .service-item:hover:after {
  background: var(--accent-color);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .service-item:hover h4 a,
.services .service-item:hover p {
  color: var(--contrast-color);
}

.services .service-item:hover i {
  background: var(--surface-color);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.member-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 46, 74, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.member-img-overlay i {
  color: var(--warm-cloud);
  font-size: 1.5rem;
}

.team .team-member .member-img:hover .member-img-overlay {
  opacity: 1;
}

.team .team-member .member-img:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.team .team-member .member-img img {
  transition: transform 0.3s ease;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/contact-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
}

.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Page Header Banner (inner pages)
--------------------------------------------------------------*/
.page-header {
  background-color: var(--primary);
  color: #ffffff;
  padding: 80px 0 40px 0;
  text-align: center;
}

.about-page .page-header {
  padding: 100px 0 80px 0;
  min-height: 280px;
}

.services-page .page-header {
  padding: 90px 0 60px 0;
  min-height: 240px;
}

.page-header h1 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header p {
  color: #A0937D;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.page-header .breadcrumb {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  background: transparent;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item.active {
  color: #A0937D;
}

.page-header .breadcrumb-item a {
  color: var(--accent-light);
}

.page-header .breadcrumb-item a:hover {
  color: #ffffff;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #7C6B5D;
}

/*--------------------------------------------------------------
# CTA Banner Section
--------------------------------------------------------------*/
.cta-banner {
  background-color: var(--primary);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-banner h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-banner p {
  color: #A0937D;
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-banner .btn-cta {
  display: inline-block;
  padding: 12px 36px;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
}

.cta-banner .btn-cta:hover {
  background-color: var(--accent-light);
}

/*--------------------------------------------------------------
# Pillar Sidebar Navigation
--------------------------------------------------------------*/
.pillar-sidebar {
  position: sticky;
  top: 100px;
}

.pillar-sidebar .pillar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pillar-sidebar .pillar-nav li {
  margin-bottom: 8px;
}

.pillar-sidebar .pillar-nav li a {
  display: block;
  padding: 10px 15px;
  border-left: 3px solid var(--border);
  color: var(--default-color);
  font-weight: 500;
  transition: 0.3s;
}

.pillar-sidebar .pillar-nav li a:hover,
.pillar-sidebar .pillar-nav li a.active {
  border-left-color: var(--accent-color);
  color: var(--accent-color);
  background-color: rgba(184, 92, 56, 0.05);
}

@media (max-width: 991px) {
  .pillar-sidebar {
    position: static;
    margin-bottom: 30px;
  }

  .pillar-sidebar .pillar-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .pillar-sidebar .pillar-nav li a {
    border-left: none;
    border-bottom: 3px solid var(--border);
    padding: 8px 16px;
    border-radius: 4px 4px 0 0;
  }
}

/*--------------------------------------------------------------
# Deliverables Grid
--------------------------------------------------------------*/
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.deliverables-grid .deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}

.deliverables-grid .deliverable-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Responsible AI Box
--------------------------------------------------------------*/
.ai-box {
  border-left: 4px solid var(--accent-color);
  background-color: rgba(184, 92, 56, 0.04);
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  margin-top: 40px;
}

.ai-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.ai-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-box ul li {
  padding: 4px 0;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
}

.ai-box ul li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Cards
--------------------------------------------------------------*/
.blog-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-card .card-thumbnail {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #ffffff;
}

.blog-card .card-thumbnail.cat-policy {
  background: linear-gradient(135deg, #1A2C2C, #B85C38);
}

.blog-card .card-thumbnail.cat-ai {
  background: linear-gradient(135deg, #B85C38, #D4956A);
}

.blog-card .card-body {
  padding: 24px;
}

.blog-card .category-tag {
  display: inline-block;
  padding: 3px 10px;
  background-color: rgba(184, 92, 56, 0.1);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blog-card .card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-card .card-title a {
  color: var(--heading-color);
}

.blog-card .card-title a:hover {
  color: var(--accent-color);
}

.blog-card .card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card .card-excerpt {
  font-size: 15px;
  color: var(--default-color);
  margin-bottom: 15px;
}

.blog-card .read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Blog Article
--------------------------------------------------------------*/
.blog-article {
  max-width: 720px;
  margin: 0 auto;
}

.blog-article .article-header {
  margin-bottom: 40px;
}

.blog-article .article-header h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.blog-article .article-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-article .article-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
}

.blog-article .article-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-article .pull-quote {
  border-left: 4px solid var(--accent-color);
  padding: 20px 24px;
  margin: 30px 0;
  font-size: 20px;
  font-style: italic;
  color: var(--heading-color);
  background-color: rgba(184, 92, 56, 0.04);
  border-radius: 0 8px 8px 0;
}

.blog-article .author-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background-color: var(--surface-color);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 40px;
}

.blog-article .author-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-article .author-card .author-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-article .author-card .author-role {
  font-size: 14px;
  color: var(--text-muted);
}

/*--------------------------------------------------------------
# Expanded Team Cards
--------------------------------------------------------------*/
.team-expanded .team-member {
  height: 100%;
}

.team-expanded .team-member .member-info {
  padding: 25px 20px;
}

.team-expanded .team-member .member-info .bio {
  font-size: 14px;
  color: var(--default-color);
  margin-top: 10px;
  line-height: 1.6;
}

.team-expanded .team-member .member-info .expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.team-expanded .team-member .member-info .expertise-tags span {
  display: inline-block;
  padding: 3px 10px;
  background-color: rgba(184, 92, 56, 0.08);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.team-expanded .team-member .member-info .social-link,
.team-modal .social-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-expanded .team-member .member-info h4 .social-link,
.team-modal .modal-title .social-link {
  font-size: 0.75em;
  margin-left: 4px;
  vertical-align: middle;
}

.team-expanded .team-member .member-info h4 .social-link:hover,
.team-modal .modal-title .social-link:hover {
  color: var(--accent-light);
}

.team-expanded .team-member .member-info .read-more-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  cursor: pointer;
}

.team-expanded .team-member .member-info .read-more-link:hover {
  color: var(--accent-light);
}

/*--------------------------------------------------------------
# Advisory Board Members
--------------------------------------------------------------*/
.team .team-member.advisory-member {
  position: relative;
  border-top: 3px solid var(--accent-color);
}

.team .team-member.advisory-member .advisory-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  padding: 5px 14px;
  background-color: var(--accent-color);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Team Member Modals
--------------------------------------------------------------*/
.team-modal .modal-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.team-modal .modal-header .modal-title {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0;
}

.team-modal .modal-header .modal-role {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.team-modal .modal-member-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.team-modal .modal-body {
  padding: 24px;
}

.team-modal .modal-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 16px;
}

.team-modal .modal-body h6 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-top: 24px;
  margin-bottom: 10px;
}

.team-modal .modal-body .expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.team-modal .modal-body .expertise-tags span {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(184, 92, 56, 0.08);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Engagement Model Cards
--------------------------------------------------------------*/
.engagement-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  height: 100%;
  transition: 0.3s;
}

.engagement-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.engagement-card .duration-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(184, 92, 56, 0.1);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.engagement-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.engagement-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.engagement-card ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.engagement-card ul li {
  font-size: 14px;
  padding: 3px 0;
  padding-left: 20px;
  position: relative;
}

.engagement-card ul li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 12px;
}

/*--------------------------------------------------------------
# Service Area Blocks
--------------------------------------------------------------*/
.service-area-block {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.service-area-block:last-child {
  border-bottom: none;
}

.service-area-block .area-icon {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.service-area-block h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-area-block p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Problem Bullets (Services Overview)
--------------------------------------------------------------*/
.problem-bullets {
  list-style: none;
  padding: 0;
}

.problem-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
}

.problem-bullets li i {
  color: #C43E2A;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Pillars Flow Diagram
--------------------------------------------------------------*/
.pillars-diagram {
  max-width: 800px;
  margin: 0 auto;
}

.pillars-svg {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .pillars-diagram {
    display: none;
  }
}

/*--------------------------------------------------------------
# Solution Preview Cards (Homepage)
--------------------------------------------------------------*/
.solution-preview-card {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.solution-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.solution-preview-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
}

.solution-preview-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.solution-preview-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 16px;
  flex-grow: 1;
}

.solution-preview-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.solution-preview-link:hover {
  gap: 8px;
  color: var(--accent-light);
}

/*--------------------------------------------------------------
# Principle Cards
--------------------------------------------------------------*/
.principle-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  transition: 0.3s;
}

.principle-card:hover {
  border-color: var(--accent-color);
}

.principle-card i {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: block;
}

.principle-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.principle-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Quote Highlight
--------------------------------------------------------------*/
.quote-highlight {
  border-left: 4px solid var(--accent-color);
  background-color: rgba(184, 92, 56, 0.04);
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  margin: 30px 0;
}

.quote-highlight p {
  font-size: 18px;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 0;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Service Areas List
--------------------------------------------------------------*/
ol.service-areas-list {
  padding-left: 20px;
}

ol.service-areas-list li {
  padding: 8px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
}

ol.service-areas-list li strong {
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Pillar Feature Blocks (Services Overview)
--------------------------------------------------------------*/
.pillar-feature {
  padding: 40px 0;
}

.pillar-feature h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

/*--------------------------------------------------------------
# Donors Page — Lifecycle Timeline
--------------------------------------------------------------*/
.lifecycle-timeline {
  max-width: 1100px;
  margin: 0 auto;
}

.lifecycle-phases {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.lifecycle-phase {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}

.lifecycle-phase .phase-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 10px;
}

.lifecycle-phase .phase-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
  max-width: 120px;
}

.lifecycle-connector {
  flex: 0 0 auto;
  width: 40px;
  height: 3px;
  background-color: var(--border);
  margin-bottom: 30px;
}

/* Pillar Bars */
.pillar-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.pillar-bar {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.pillar-bar.pillar-design {
  background: linear-gradient(135deg, #B85C38, #D4956A);
  width: 58%;
}

.pillar-bar.pillar-deliver {
  background: linear-gradient(135deg, #1A2C2C, #3D3029);
  width: 45%;
  margin-left: 40%;
}

.pillar-bar.pillar-sustain {
  background: linear-gradient(135deg, #065F46, #10B981);
  width: 40%;
  margin-left: 60%;
}

@media (max-width: 767px) {
  .lifecycle-phases {
    display: none;
  }

  .lifecycle-connector {
    display: none;
  }
}

/* Mobile lifecycle layout */
.lifecycle-mobile {
  max-width: 400px;
  margin: 0 auto;
}

.mobile-phase-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-phase-item:last-child {
  border-bottom: none;
}

.mobile-phase-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.mobile-phase-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-phase-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Donors Page — Phase Cards
--------------------------------------------------------------*/
.phase-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  transition: 0.3s;
}

.phase-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.phase-card .phase-header {
  margin-bottom: 16px;
}

.phase-card .phase-number {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.phase-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.phase-card .phase-wb-context {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.phase-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.pillar-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pillar-tag-design {
  background-color: rgba(184, 92, 56, 0.1);
  color: #B85C38;
}

.pillar-tag-deliver {
  background-color: rgba(26, 44, 44, 0.1);
  color: #1A2C2C;
}

.pillar-tag-sustain {
  background-color: rgba(6, 95, 70, 0.1);
  color: #065F46;
}

.phase-services,
.phase-deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phase-services li,
.phase-deliverables li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}

.phase-services li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 12px;
}

.phase-deliverables li::before {
  content: "\F272";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: #10B981;
  font-size: 12px;
}

/*--------------------------------------------------------------
# Solutions in Action Page
--------------------------------------------------------------*/
.solution-case {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.solution-case-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.solution-case-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}

.solution-case-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.solution-case-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
}

.solution-case-context {
  margin-bottom: 36px;
  padding: 28px 32px;
  background: var(--background-color, #FAF7F2);
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.solution-case-context h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.solution-case-context p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 10px;
  color: var(--default-color);
}

.solution-case-context p:last-child {
  margin-bottom: 0;
}

/* Three-pillar grid */
.solution-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.solution-pillar-card {
  padding: 28px 24px;
  border-radius: 10px;
  border-top: 4px solid transparent;
}

.solution-pillar-card.solution-pillar-design {
  background: rgba(184, 92, 56, 0.04);
  border-top-color: #B85C38;
}

.solution-pillar-card.solution-pillar-deliver {
  background: rgba(36, 56, 56, 0.04);
  border-top-color: #243838;
}

.solution-pillar-card.solution-pillar-sustain {
  background: rgba(6, 95, 70, 0.04);
  border-top-color: #065F46;
}

.solution-pillar-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.solution-pillar-design .solution-pillar-badge {
  background: rgba(184, 92, 56, 0.12);
  color: #B85C38;
}

.solution-pillar-deliver .solution-pillar-badge {
  background: rgba(36, 56, 56, 0.12);
  color: #243838;
}

.solution-pillar-sustain .solution-pillar-badge {
  background: rgba(6, 95, 70, 0.12);
  color: #065F46;
}

.solution-pillar-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.solution-pillar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-pillar-card ul li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--default-color);
}

.solution-pillar-card ul li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 10px;
}

.solution-pillar-design ul li::before {
  color: #B85C38;
}

.solution-pillar-deliver ul li::before {
  color: #4A5E5E;
}

.solution-pillar-sustain ul li::before {
  color: #10B981;
}

.solution-pillar-card ul li strong {
  color: var(--heading-color);
}

/* Outcomes */
.solution-case-outcomes {
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(184, 92, 56, 0.04), rgba(6, 95, 70, 0.04));
  border-radius: 10px;
}

.solution-case-outcomes h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.outcome-item i {
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.outcome-item span {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--default-color);
}

/* Cross-cutting themes cards */
.cross-theme-card {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cross-theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cross-theme-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(184, 92, 56, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.cross-theme-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.cross-theme-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--default-color);
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .solution-pillars-grid {
    grid-template-columns: 1fr;
  }

  .solution-case {
    padding: 32px 24px;
  }

  .solution-case-header h2 {
    font-size: 1.4rem;
  }

  .solution-case-context,
  .solution-case-outcomes {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .solution-case {
    padding: 24px 16px;
  }

  .solution-case-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .solution-case-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 24px;
  }

  .solution-case-header h2 {
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Project Timeline
--------------------------------------------------------------*/
.project-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.project-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--light-tapa), var(--warm-brown), var(--light-tapa));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 40px;
  box-sizing: border-box;
}

.timeline-left {
  left: 0;
  text-align: right;
}

.timeline-right {
  left: 50%;
}

.timeline-dot {
  position: absolute;
  top: 16px;
  width: 14px;
  height: 14px;
  background: var(--light-tapa);
  border: 3px solid var(--warm-cloud);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 3px var(--light-tapa);
}

.timeline-dot.dot-alt {
  background: var(--deep-ocean);
  box-shadow: 0 0 0 3px var(--deep-ocean);
}

.timeline-left .timeline-dot {
  right: -7px;
}

.timeline-right .timeline-dot {
  left: -7px;
}

.timeline-card {
  background: var(--white);
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-left .timeline-card {
  border-right: 3px solid var(--light-tapa);
}

.timeline-right .timeline-card {
  border-left: 3px solid var(--deep-ocean);
}

.timeline-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.timeline-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-tapa);
  margin-bottom: 6px;
}

.timeline-date.alt {
  color: var(--deep-ocean);
}

.timeline-card h4 {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.timeline-team {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.timeline-left .timeline-team {
  justify-content: flex-end;
}

.team-tag {
  background: var(--warm-cloud);
  color: var(--logo-brown);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

a.team-tag:hover {
  background: var(--logo-brown);
  color: var(--white) !important;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-tapa);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

.section-eyebrow {
  color: var(--text-secondary);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Pacific Map Cursors
--------------------------------------------------------------*/
.cursor-vaka {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%237A5230' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4,34 Q6,31 12,30 L36,30 Q42,31 44,28' stroke-width='1.8'/%3E%3Cpath d='M6,38 Q8,35 13,34 L35,34 Q40,35 42,32' stroke-width='1.2'/%3E%3Cline x1='12' y1='30' x2='13' y2='34' stroke-width='0.8'/%3E%3Cline x1='24' y1='30' x2='24' y2='34' stroke-width='0.8'/%3E%3Cline x1='36' y1='30' x2='35' y2='34' stroke-width='0.8'/%3E%3Cline x1='22' y1='30' x2='22' y2='12' stroke-width='1.2'/%3E%3Cpath d='M22,12 Q30,14 34,20 Q30,24 22,28' fill='%237A5230' fill-opacity='0.15' stroke-width='1'/%3E%3Cpath d='M22,14 Q28,16 32,20' stroke-width='0.6'/%3E%3C/g%3E%3C/svg%3E") 24 30, pointer;
}

.cursor-vaka-glow {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cdefs%3E%3Cfilter id='g'%3E%3CfeGaussianBlur stdDeviation='1' result='b'/%3E%3CfeMerge%3E%3CfeMergeNode in='b'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cg fill='none' stroke='%23C49A6C' stroke-linecap='round' stroke-linejoin='round' filter='url(%23g)'%3E%3Cpath d='M4,34 Q6,31 12,30 L36,30 Q42,31 44,28' stroke-width='2'/%3E%3Cpath d='M6,38 Q8,35 13,34 L35,34 Q40,35 42,32' stroke-width='1.4'/%3E%3Cline x1='12' y1='30' x2='13' y2='34' stroke-width='1'/%3E%3Cline x1='24' y1='30' x2='24' y2='34' stroke-width='1'/%3E%3Cline x1='36' y1='30' x2='35' y2='34' stroke-width='1'/%3E%3Cline x1='22' y1='30' x2='22' y2='12' stroke-width='1.4'/%3E%3Cpath d='M22,12 Q30,14 34,20 Q30,24 22,28' fill='%23C49A6C' fill-opacity='0.25' stroke-width='1.2'/%3E%3Cpath d='M22,14 Q28,16 32,20' stroke-width='0.7'/%3E%3C/g%3E%3C/svg%3E") 24 30, pointer;
}

/*--------------------------------------------------------------
# Map Tooltip Styles
--------------------------------------------------------------*/
.map-hover {
  fill: rgba(196, 154, 108, 0.2);
}

.map-tooltip {
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.map-hover:hover + .map-tooltip,
a:hover .map-tooltip {
  opacity: 1;
}

.tooltip-bg {
  fill: var(--deep-ocean);
  rx: 1.5;
}

.tooltip-text {
  fill: var(--warm-cloud);
  font-family: Arial, sans-serif;
  font-size: 2.2px;
  font-weight: 600;
}

/* Timeline mobile */
@media (max-width: 768px) {
  .project-timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding: 0 0 30px 50px;
    text-align: left;
  }

  .timeline-left .timeline-dot,
  .timeline-right .timeline-dot {
    left: 13px;
    right: auto;
  }

  .timeline-left .timeline-card,
  .timeline-right .timeline-card {
    border-left: 3px solid var(--light-tapa);
    border-right: none;
  }

  .timeline-right .timeline-card {
    border-left-color: var(--deep-ocean);
  }

  .timeline-left .timeline-team {
    justify-content: flex-start;
  }
}