:root {
  --green: #7cb342;
  --green-dark: #689f38;
  --yellow: #fdd835;
  --orange: #ff9800;
  --pink: #e91e63;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg-soft: #f8fafc;
  --white: #ffffff;
  --dark: #111827;
  --shadow: 0 20px 40px -20px rgba(0,0,0,.22);
  --radius-xl: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Open Sauce One', sans-serif;
  color: var(--text);
  background: var(--white);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  pointer-events: none;
}

.scroll-progress__bar {
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #7cb342, #fdd835, #ff9800, #e91e63);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Antonio', sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--green) 0%, var(--yellow) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-pink { color: var(--pink); }
.text-green { color: var(--green); }
.eyebrow { color: var(--green); font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow.pink { color: var(--pink); }
.section { padding: 88px 0; }
.section-soft { background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.section-intro { max-width: 780px; margin: 0 auto 56px; }
.section-intro h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 14px 0 18px; }
.section-intro p { color: var(--muted); line-height: 1.8; }
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 11000; transition: .3s ease;
  padding: 18px 0;
  pointer-events: auto;
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 10px 0;
}

/* Prevent scrolled-header effects from clipping mobile fixed menu */
body.menu-open .site-header,
body.menu-open .site-header.scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { height: 90px; width: auto; }
.desktop-nav { display: flex; gap: 32px; align-items: center; }
.desktop-nav a { font-size: .95rem; font-weight: 500; }
.desktop-nav a:hover { color: var(--green); }
.header-phone {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: #fff; border-radius: 999px; padding: 12px 18px; font-weight: 600; font-size: .92rem;
}
.header-phone:hover { background: var(--green-dark); }
.hero {
  position: relative; height: 120vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.05), rgba(255,255,255,.15)); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; padding: 132px 0 72px; justify-items: center; }
.hero-copy { text-align: center; max-width: 900px; }
.overview-intro { margin-bottom: 42px; }
.overview-intro .eyebrow { display: block; margin-bottom: 8px; }
.overview-subtitle { font-size: 1.35rem; font-weight: 500; color: var(--text); margin: 0; }
.overview-content { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-bottom: 56px; align-items: start; }
.overview-text h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; margin: 0 0 24px; }
.overview-text p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.overview-highlight { font-weight: 600; color: var(--text); }
.overview-locations h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 18px; color: var(--text); }
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.location-item { padding: 12px 16px; background: var(--bg-soft); border-radius: 8px; text-align: center; font-weight: 500; font-size: .95rem; }
.location-item.highlight { background: linear-gradient(135deg, var(--green), var(--yellow)); color: #fff; font-weight: 600; }
.overview-team-section { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 88px; }
.team-image img { width: 100%; border-radius: 12px; }
.team-grid.compact { grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 0; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.82); border-radius: 999px;
  padding: 11px 16px; color: var(--green); font-weight: 600; box-shadow: 0 10px 30px rgba(0,0,0,.06); justify-content: center;
}
.hero h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 1.06; margin: 22px 0 18px; }
.hero-word { display: inline-block; will-change: transform, opacity; }
.lead { max-width: 650px; font-size: 1.35rem; color: #ffffff; line-height: 1.8; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 10px; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 14px 24px; font-weight: 600;
  transition: .25s ease; border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); box-shadow: var(--shadow); }
.btn-secondary { background: #fff; border-color: #d1d5db; }
.btn-secondary:hover { border-color: var(--green); color: var(--green); }
.btn-gradient { background: linear-gradient(135deg, var(--green), var(--yellow), var(--orange)); color: #fff; }
.btn-gradient:hover { box-shadow: var(--shadow); }
.btn-light { background: #fff; color: var(--green); }
.btn-full { width: 100%; border: 0; cursor: pointer; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; max-width: 600px; margin-left: auto; margin-right: auto; opacity: 1; }
.stat-card { text-align: center; opacity: 1; padding: 24px 16px; border-radius: 16px; transition: transform .3s ease, box-shadow .3s ease; }
.stat-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.stat-icon {
  width: 54px; height: 54px; margin: 0 auto 10px; border-radius: 999px; display: grid; place-items: center;
  background: rgba(124,179,66,.12); font-size: 1.35rem;
}
.stat-card strong { 
  display: block; 
  font-size: 1.8rem; 
  background: linear-gradient(135deg, var(--green) 0%, var(--yellow) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 3px 3px 0px rgba(0,0,0,.15), 6px 6px 12px rgba(0,0,0,.1);
  filter: drop-shadow(3px 3px 0px rgba(0,0,0,.15)) drop-shadow(3px 3px 6px rgba(0,0,0,.1));
}
.stat-card span { 
  color: #000; 
  font-size: .92rem; 
}

/* Colored accents for each stat card */
.stat-card:nth-child(1) {
  background: rgba(124, 179, 66, 0.5);
  border-left: 4px solid var(--green);
}
.stat-card:nth-child(1) .stat-icon {
  background: rgba(124, 179, 66, 0.18);
}

.stat-card:nth-child(2) {
  background: rgba(253, 216, 53, 0.5);
  border-left: 4px solid var(--yellow);
}
.stat-card:nth-child(2) .stat-icon {
  background: rgba(253, 216, 53, 0.18);
}

.stat-card:nth-child(3) {
  background: rgba(233, 30, 99, 0.5);
  border-left: 4px solid var(--pink);
}
.stat-card:nth-child(3) .stat-icon {
  background: rgba(233, 30, 99, 0.18);
}
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-logo-glow {
  position: absolute; inset: 8% 12%; background: linear-gradient(135deg, var(--green), var(--yellow), var(--orange));
  filter: blur(64px); opacity: .18; border-radius: 50%;
}
.hero-logo { width: min(420px, 100%); animation: float 4.8s ease-in-out infinite; position: relative; }
.about-card, .map-card, .contact-form-card, .service-card, .country-card, .info-card, .hq-card {
  background: #fff; border: 1px solid #eef2f7; border-radius: var(--radius-xl);
}
.about-card {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,.05); margin-bottom: 56px;
}
.about-card p { color: var(--muted); line-height: 1.8; }
.about-logo-wrap { display: flex; align-items: center; justify-content: center; }
.about-logo { width: 190px; }
.team-block h3, .principles-block h3, .reach-grid h3 { font-size: 2rem; margin-bottom: 28px; }
.team-grid-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.team-header { margin-bottom: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.team-header h2 { font-size: 2.4rem; margin: 0 0 16px; }
.team-header p { color: var(--muted); line-height: 1.8; margin: 0; font-size: 1rem; }
.team-card { 
  display: flex; 
  align-items: center; 
  gap: 18px; 
  padding: 22px; 
  background: #fff; 
  border-radius: 16px; 
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  transition: .25s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.team-card-avatar {
  width: 80px; 
  height: 80px; 
  border-radius: 999px; 
  display: grid; 
  place-items: center; 
  color: #fff; 
  font-size: 1.4rem; 
  font-weight: 700;
  flex-shrink: 0;
}
.team-card-avatar.green-pink { background: linear-gradient(135deg, var(--pink), #c2185b); }
.team-card-avatar.green { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.team-card-avatar.orange { background: linear-gradient(135deg, var(--orange), #f57c00); }
.team-card-avatar.yellow { background: linear-gradient(135deg, var(--yellow), #fbc02d); color: #374151; }
.team-card-content h4 { margin: 0 0 4px; font-size: 1.05rem; color: var(--text); }
.team-card-content p { margin: 0; font-size: .92rem; color: var(--muted); }
.team-cta { padding: 32px 0; text-align: center; margin-bottom: 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 56px; }
.team-member { text-align: center; }
.avatar {
  width: 92px; height: 92px; margin: 0 auto 14px; border-radius: 999px; display: grid; place-items: center; color: #fff; font-size: 1.6rem; font-weight: 700;
  box-shadow: 0 16px 28px rgba(0,0,0,.12);
}
.avatar.green-pink { background: linear-gradient(135deg, var(--pink), #c2185b); }
.avatar.green { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.avatar.orange { background: linear-gradient(135deg, var(--orange), #f57c00); }
.avatar.yellow { background: linear-gradient(135deg, var(--yellow), #fbc02d); color: #374151; }
.team-member p { margin: 4px 0 0; color: var(--muted); font-size: .92rem; }
.principles-timeline { display: grid; grid-template-columns: 1fr 200px 1fr; gap: 40px; align-items: center; max-width: 900px; margin: 0 auto; }
.timeline-left, .timeline-right { display: flex; flex-direction: column; gap: 28px; }
.timeline-item { display: flex; align-items: center; gap: 16px; }
.timeline-left .timeline-item { justify-content: flex-end; }
.timeline-right .timeline-item { justify-content: flex-start; }
.timeline-dot { width: 14px; height: 14px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.timeline-text { font-size: 1rem; font-weight: 600; color: var(--text); }
.timeline-left .timeline-text { text-align: right; }
.timeline-center { position: relative; height: 240px; }
.timeline-connector { width: 100%; height: 100%; display: block; }
.principle-card {
  padding: 28px 18px; text-align: center; border: 1px solid #eef2f7; border-radius: 20px; font-size: 1.5rem; background: #fff;
  transition: .25s ease;
}
.principle-card span { display: block; margin-top: 10px; font-size: .92rem; font-weight: 600; color: #374151; }
.principle-card:hover, .country-card:hover, .info-card:hover, .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.reach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.location-section { position: relative; padding-bottom: 0; }
.location-content h2 { font-size: 2.8rem; margin: 0 0 18px; color: var(--text); }
.location-content p { color: var(--muted); line-height: 1.8; margin-bottom: 28px; max-width: 350px; }
.location-list { list-style: none; padding: 0; margin: 0 0 28px; }
.location-list li { font-size: 1rem; color: var(--text); padding: 8px 0; }
.location-list li::before { content: "•"; margin-right: 12px; color: var(--text); font-weight: 600; }

.principles-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.principles-infographic {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 560px;
  padding: 24px 12px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.98) 0 120px, rgba(255,255,255,.92) 121px 100%),
    linear-gradient(180deg, rgba(248,250,252,.92), rgba(255,255,255,.96));
  border: 1px solid rgba(229,231,235,.9);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.principles-infographic::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(124,179,66,.08) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(148,163,184,.25) calc(50% - 1px), rgba(148,163,184,.25) calc(50% + 1px), transparent calc(50% + 1px));
  opacity: .32;
  pointer-events: none;
}

.principles-core,
.principles-node {
  position: absolute;
  z-index: 1;
}

.principles-core {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 35% 30%, #ffffff 0 42%, #f8fafc 72%, #eef2f7 100%);
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255,255,255,.8);
  border: 1px solid rgba(229,231,235,.9);
}

.principles-core-kicker {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.principles-core strong {
  font-family: 'Antonio', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--text);
}

.principles-core p {
  margin: 10px 22px 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.45;
}

.principles-node {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(320px, 40vw);
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229,231,235,.9);
}

.principles-node h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-family: 'Antonio', sans-serif;
}

.principles-node p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.4;
}

.principles-node-index {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  color: #fff;
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 8px 16px rgba(0,0,0,.12);
}

.index-green { background: linear-gradient(135deg, #7cb342, #9ccc65); }
.index-yellow { background: linear-gradient(135deg, #fdd835, #fbc02d); color: #1f2937; }
.index-orange { background: linear-gradient(135deg, #ff9800, #ffb74d); }
.index-pink { background: linear-gradient(135deg, #e91e63, #f06292); }

.principles-node-top-left { top: 72px; left: 20px; }
.principles-node-middle-left { top: 210px; left: 40px; }
.principles-node-bottom-left { bottom: 74px; left: 20px; }
.principles-node-top-right { top: 56px; right: 18px; }
.principles-node-middle-right { top: 208px; right: 34px; }
.principles-node-bottom-right { bottom: 78px; right: 18px; }

.principles-node::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 46px;
  height: 2px;
  background: rgba(148,163,184,.45);
}

.principles-node-top-left::before,
.principles-node-middle-left::before,
.principles-node-bottom-left::before {
  right: -46px;
}

.principles-node-top-right::before,
.principles-node-middle-right::before,
.principles-node-bottom-right::before {
  left: -46px;
}
.map-card { padding: 24px; position: relative; box-shadow: var(--shadow); }
.map-card img { border-radius: 18px; }
.country-list { display: grid; gap: 14px; }
.country-card {
  display: grid; grid-template-columns: 56px 1fr 24px; gap: 16px; align-items: center; padding: 18px 20px; transition: .25s ease;
}
.country-icon, .info-icon, .service-icon {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; color: #fff; font-size: 1.2rem;
  background: linear-gradient(135deg, var(--green), var(--yellow), var(--orange));
}
.country-card h4, .info-card h4 { margin: 0 0 3px; }
.country-card p, .info-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.dot { width: 10px; height: 10px; border-radius: 999px; background: var(--green); display: inline-block; }
.hq-card { margin-top: 28px; padding: 24px; color: #fff; background: linear-gradient(135deg, var(--green), var(--yellow), var(--orange)); }
.hq-card p { opacity: .95; margin-bottom: 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.services-grid-new { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.services-intro { text-align: center; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.services-intro h2 { font-size: 2rem; margin: 0 0 8px; }
.services-intro p { color: var(--muted); font-size: 1rem; margin: 0; }
.service-card-new {
  list-style: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.service-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border-color: #d1d5db;
}
.service-card-new[open] {
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border-color: #d1d5db;
}
.service-card-summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.service-card-summary:hover {
  background: rgba(124,179,66,0.02);
}
.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.service-card-summary:hover .service-card-icon {
  transform: scale(1.08) rotate(2deg);
}
.service-card-icon.green {
  background: linear-gradient(135deg, #7cb342 0%, #9ccc65 100%);
  color: #fff;
}
.service-card-icon.yellow {
  background: linear-gradient(135deg, #fdd835 0%, #ffee58 100%);
  color: #374151;
}
.service-card-icon.orange {
  background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
  color: #fff;
}
.service-card-icon.pink {
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  color: #fff;
}
.service-card-main {
  flex: 1;
  min-width: 0;
}
.service-card-main h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}
.service-subtitle {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-description {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.4;
}
.service-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 100px;
  padding: 8px 14px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}
.service-toggle-btn::after {
  content: '▼';
  display: inline-block;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}
.service-card-new[open] .service-toggle-btn {
  background: var(--green-dark);
}
.service-card-new[open] .service-toggle-btn::after {
  transform: rotate(180deg);
}
.service-card-details {
  border-top: 1px solid #e5e7eb;
  padding: 20px 24px;
  background: rgba(124,179,66,0.02);
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-list-new {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 12px;
}
.service-list-new li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.service-list-new li::before {
  content: "•";
  color: var(--green);
  font-weight: bold;
  flex-shrink: 0;
}
.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}
.service-card { overflow: hidden; transition: .25s ease; }
.service-card.active { box-shadow: var(--shadow); outline: 2px solid rgba(124,179,66,.18); }
.service-toggle { width: 100%; padding: 22px; text-align: left; background: transparent; border: 0; cursor: pointer; }
.service-head { display: grid; grid-template-columns: 56px 1fr 24px; gap: 16px; align-items: start; }
.service-icon.green { background: rgba(124,179,66,.12); color: var(--green); }
.service-icon.yellow { background: rgba(253,216,53,.22); color: var(--orange); }
.service-icon.orange { background: rgba(255,152,0,.16); color: var(--orange); }
.service-icon.pink { background: rgba(233,30,99,.14); color: var(--pink); }
.service-head h3 { margin: 0 0 6px; font-size: 1.06rem; }
.service-head p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.chev { transition: .25s ease; font-size: 1.25rem; color: #94a3b8; }
.service-card.active .chev { transform: rotate(180deg); }
.service-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; border-top: 1px solid transparent; }
.service-card.active .service-body { max-height: 360px; border-top-color: #f1f5f9; }
.service-body ul { margin: 0; padding: 18px 22px 22px 42px; }
.service-body li { margin: 0 0 12px; color: #4b5563; }
.services-cta { margin-top: 34px; }
.services-cta p { color: var(--muted); margin-bottom: 18px; }

/* Services Page Styles */
.services-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 88px 0; }
.services-hero .hero-bg { position: absolute; inset: 0; }
.services-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.services-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.05), rgba(255,255,255,.15)); }
.services-hero .hero-grid { position: relative; z-index: 2; }
.services-hero h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1.06; margin: 22px 0 18px; }
.services-hero .lead { max-width: 100%; font-size: 1.3rem; color: #ffffff; line-height: 1.8; }

.services-detail { padding: 88px 0; }
.service-detail-card { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid #e5e7eb; }
.service-detail-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail-header { display: flex; align-items: center; gap: 24px; margin-bottom: 24px; }
.service-detail-header h2 { margin: 0; font-size: 1.8rem; color: var(--text); }
.service-detail-icon { 
  width: 80px; 
  height: 80px; 
  border-radius: 16px; 
  display: grid; 
  place-items: center; 
  font-size: 2.4rem;
  flex-shrink: 0;
}
.service-detail-icon.green { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.service-detail-icon.yellow { background: linear-gradient(135deg, var(--yellow), #fbc02d); color: #374151; }
.service-detail-icon.orange { background: linear-gradient(135deg, var(--orange), #f57c00); color: #fff; }
.service-detail-icon.pink { background: linear-gradient(135deg, var(--pink), #c2185b); color: #fff; }
.service-intro { font-size: 1.1rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.service-detail-card h4 { font-size: 1rem; font-weight: 600; color: var(--text); margin: 20px 0 14px; text-transform: none; }
.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li { padding: 10px 0 10px 28px; color: var(--muted); line-height: 1.8; position: relative; }
.service-list li::before { content: "●"; position: absolute; left: 0; color: var(--green); font-weight: bold; }

.services-contact { padding: 88px 0; }
.services-contact-header { text-align: center; margin-bottom: 56px; }
.services-contact-header h2 { font-size: 2.8rem; margin: 0 0 12px; color: var(--text); font-weight: 600; }
.services-contact-header p { font-size: 1.15rem; color: var(--muted); margin: 0; }
.services-contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.contact-info-card { background: #fff; padding: 28px; border-radius: 12px; text-align: center; border: 1px solid #e5e7eb; transition: .25s ease; }
.contact-info-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.contact-info-card h4 { font-size: 1.05rem; font-weight: 600; color: var(--text); margin: 0 0 14px; }
.contact-info-card p { margin: 0 0 8px; color: var(--muted); font-size: .95rem; }
.contact-info-card p:last-child { margin-bottom: 0; }
.contact-info-card a { color: var(--green); text-decoration: none; font-weight: 500; }
.contact-info-card a:hover { color: var(--green-dark); }

.contact-section { background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.contact-form-card { padding: 34px; box-shadow: var(--shadow); }
.contact-form-card h3 { margin-top: 0; font-size: 1.8rem; }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 8px; color: #374151; font-weight: 500; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid #dbe3ec; border-radius: 14px; padding: 14px 16px; outline: none; transition: .2s ease; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(124,179,66,.14); }
.contact-info { display: grid; gap: 16px; }
.info-card {
  display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start; padding: 20px; transition: .25s ease;
}
.urgent-card {
  padding: 26px; border-radius: 24px; color: #fff; background: linear-gradient(135deg, var(--green), var(--yellow), var(--orange));
  margin-top: 32px; text-align: center;
}
.urgent-card h4 { margin-top: 0; }
.urgent-card p { opacity: .94; margin: 12px 0 20px; }
.urgent-card .btn { display: inline-flex; }

/* Contact Map Section */
.contact-map-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  padding: 0;
  margin: 56px 0;
}

.map-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(124, 179, 66, 0.15);
}

.map-info-overlay {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 10;
  max-width: 360px;
}

.map-info-overlay[open] .map-info-card {
  display: block;
}

.map-info-summary {
  list-style: none;
  cursor: pointer;
  display: none;
}

.map-info-summary h3 {
  margin: 0;
  font-size: 1.4rem;
}

.map-info-toggle {
  display: block;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
}

.map-info-card {
  background: white;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}
.map-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.25);
}
.map-info-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.2;
}

.map-info-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-icon {
  font-size: 1.6rem;
  min-width: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  margin: 2px 0;
}

.info-item a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--pink);
}

.info-item a:hover {
  color: var(--pink);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #1d2a1f;
  background: linear-gradient(90deg, #b8c327 0%, #d1bb25 45%, #f0af2d 100%);
}

.footer-waves {
  position: relative;
  width: 100%;
  /* keep wave visible but less intrusive */
  height: 72px;
  margin-bottom: -10px;
  display: block;
}

.wave-parallax > use {
  animation: wave-move 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.wave-parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.wave-parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.wave-parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

@keyframes wave-move {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

.footer-content {
  position: relative;
  padding: 28px 0 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.footer-brand p,
.footer-grid p,
.footer-grid a {
  font-size: 1rem;
  line-height: 1.35;
  color: #1d2a1f;
  text-decoration: none;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Contact list links stay inline with icons */
.footer-grid p a {
  display: inline;
  margin-bottom: 0;
}

.footer-grid a:hover {
  opacity: 0.75;
  transform: translateX(3px);
}

.contact-icon {
  display: inline;
  margin-right: 6px;
  font-size: 1rem;
  color: #1d2a1f;
  opacity: 0.9;
  vertical-align: middle;
  width: auto;
  text-align: center;
}

.footer-grid h4 {
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1d2a1f;
}

.footer-logo {
  width: 110px;
  margin-bottom: 18px;
}

.footer-copy {
  color: #1d2a1f;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  font-size: 0.95rem;
  color: #1d2a1f;
}

.footer-bottom a {
  color: #1d2a1f;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer-bottom a:hover {
  opacity: 0.75;
}
.toast {
  position: fixed; right: 18px; bottom: 18px; z-index: 80; background: #111827; color: #fff; padding: 14px 18px;
  border-radius: 14px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(10px); transition: .25s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-new { grid-template-columns: 1fr; }
  .services-contact-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-map-section {
    height: 450px;
    margin: 48px 0;
  }

  .map-info-overlay {
    bottom: 24px;
    left: 24px;
  }

  .map-info-card {
    padding: 24px;
    max-width: 340px;
  }

  .map-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
}
@media (max-width: 900px) {
  .desktop-nav, .desktop-only { display: none; }
  .menu-toggle { display: block; }
  .hero-grid, .about-card, .reach-grid, .contact-grid, .overview-content, .overview-team-section { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid-cards { grid-template-columns: 1fr; }
  .services-contact-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-timeline { grid-template-columns: 1fr; gap: 24px; }
  .timeline-left, .timeline-right { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 20px; }
  .timeline-center { display: none; }

  .contact-map-section {
    height: 400px;
    margin: 40px 0;
  }

  .map-info-overlay {
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .map-info-summary {
    display: block;
    padding: 16px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
    transition: all 0.3s ease;
  }

  .map-info-overlay[open] .map-info-summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
    border-bottom: none;
  }

  .map-info-card {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .map-info-details {
    gap: 12px;
  }

  .footer-content {
    padding: 38px 32px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-waves {
    height: 44px;
    margin-bottom: -4px;
  }

  .principles-infographic {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
  }

  .principles-infographic::before {
    display: none;
  }

  .principles-core,
  .principles-node {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .principles-core {
    height: 170px;
  }

  .principles-node::before {
    display: none;
  }
}
@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .container { width: min(100% - 24px, 1180px); }
  .hero h1 { font-size: 2.3rem; }
  .services-hero h1 { font-size: 2rem; }
  .lead { font-size: 1.1rem; }
  .form-row, .services-grid, .footer-grid, .footer-bottom-wrap, .services-contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-grid-cards { grid-template-columns: 1fr; }
  .country-card, .service-head, .info-card { grid-template-columns: 48px 1fr 18px; }
  .footer-bottom-wrap { text-align: center; }
  .principles-timeline { grid-template-columns: 1fr; }
  .timeline-left, .timeline-right { flex-direction: column; align-items: center; }
  .timeline-left .timeline-item, .timeline-right .timeline-item { justify-content: center; }
  .timeline-text { text-align: center; }
  .service-detail-header { flex-direction: column; align-items: flex-start; }
  .service-detail-header h2 { font-size: 1.4rem; }
  
  .services-grid-new { grid-template-columns: 1fr; gap: 16px; }
  .service-card-summary { flex-direction: column; gap: 12px; padding: 16px; align-items: center; }
  .service-card-icon { width: 50px; height: 50px; font-size: 1.6rem; }
  .service-card-main { text-align: center; }
  .service-card-main h3 { font-size: 1.05rem; }
  .service-description { font-size: 0.9rem; }
  .service-toggle-btn { width: 100%; }
  .service-card-details { padding: 16px; }
  .service-list-new li { font-size: 0.9rem; }

  .contact-map-section {
    height: 450px;
    margin: 32px 0;
  }

  .map-info-overlay {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .map-info-summary {
    display: block;
    padding: 14px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border: 1px solid rgba(255, 255, 255, 0.95);
    margin-bottom: 6px;
  }

  .map-info-summary h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .map-info-toggle {
    font-size: 0.8rem;
  }

  .map-info-overlay[open] .map-info-summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .map-info-card {
    padding: 16px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .map-info-card h3 {
    display: none;
  }

  .map-info-card button {
    margin-top: 16px !important;
  }

  .map-info-details {
    gap: 12px;
  }

  .info-icon {
    font-size: 1.4rem;
    min-width: 30px;
  }

  .info-item h4 {
    font-size: 0.75rem;
  }

  .info-item p {
    font-size: 0.9rem;
  }

  .location-list { text-align: center; }
  .location-list li { padding: 8px 0; }
  .location-list li::before { content: ""; margin-right: 0; }
  .location-content { text-align: center; display: flex; flex-direction: column; align-items: center; }

  .footer-content {
    padding: 34px 20px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    font-size: 0.9rem;
  }

  .footer-waves {
    height: 44px;
    margin-bottom: -4px;
  }
}

/* Keep burger visible on mobile after all later declarations */
@media (max-width: 900px) {
  .menu-toggle { display: flex !important; }
}

/* ========================================
   BUBBLE CANVAS — hero background
   ======================================== */
.bubble-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Push hero content above canvas */
.hero .hero-bg   { z-index: 0; }
.hero-grid       { z-index: 3 !important; }
.hero-waves-wrap { z-index: 3; position: relative; }

/* ========================================
   HERO BOTTOM WAVES (goodkatz style)
   ======================================== */
.hero-waves-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-waves {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 90px;
}

.hero-wave-parallax > use {
  animation: hero-wave-move 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.hero-wave-parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.hero-wave-parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.hero-wave-parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.hero-wave-parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes hero-wave-move {
  0%   { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px,  0, 0); }
}

@media (max-width: 768px) {
  .hero-waves { height: 55px; }
}

/* ============================================================
   GLOBAL BUBBLE CANVAS — fixed, behind everything
   The canvas is injected by bubbles.js at z-index:0
   Hero content sits above it via its own z-index stack.
   All section backgrounds are semi-transparent or white,
   so bubbles show through at the edges between sections.
   ============================================================ */

/* Give sections slight transparency so bubbles bleed through */
.section-white  { background: rgba(255,255,255,0.94); }
.section-soft   { background: linear-gradient(180deg,rgba(255,255,255,0.93) 0%,rgba(248,250,252,0.93) 100%); }

/* Hero: its own layered stack (bg photo on top of global canvas) */
.hero            { isolation: isolate; }
.hero .hero-bg   { z-index: 1; }
.hero-overlay    { z-index: 2; }
.hero-grid       { z-index: 4 !important; position: relative; }

/* ============================================================
   HERO BOTTOM WAVES — on index hero
   ============================================================ */
.hero-waves-wrap {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
}
.hero-waves {
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}
.hero-wave-parallax > use {
  animation: hero-wave-move 25s cubic-bezier(0.55,0.5,0.45,0.5) infinite;
}
.hero-wave-parallax > use:nth-child(1){ animation-delay:-2s;  animation-duration:7s;  }
.hero-wave-parallax > use:nth-child(2){ animation-delay:-3s;  animation-duration:10s; }
.hero-wave-parallax > use:nth-child(3){ animation-delay:-4s;  animation-duration:13s; }
.hero-wave-parallax > use:nth-child(4){ animation-delay:-5s;  animation-duration:20s; }

@keyframes hero-wave-move {
  0%   { transform: translate3d(-90px,0,0); }
  100% { transform: translate3d(85px,0,0);  }
}

/* ============================================================
   SERVICES-HERO BOTTOM WAVES — services.html & contact.html
   ============================================================ */
.services-hero {
  position: relative;
  overflow: hidden;        /* already had this */
}
.services-hero-waves-wrap {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
}
.services-hero-waves {
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}
.services-wave-parallax > use {
  animation: hero-wave-move 25s cubic-bezier(0.55,0.5,0.45,0.5) infinite;
}
.services-wave-parallax > use:nth-child(1){ animation-delay:-1s;  animation-duration:8s;  }
.services-wave-parallax > use:nth-child(2){ animation-delay:-3s;  animation-duration:12s; }
.services-wave-parallax > use:nth-child(3){ animation-delay:-5s;  animation-duration:16s; }
.services-wave-parallax > use:nth-child(4){ animation-delay:-7s;  animation-duration:22s; }

/* ============================================================
   ENHANCED FOOTER WAVES — bigger, more layers
   ============================================================ */
.footer-waves {
  height: 80px !important; /* was 50px */
  margin-bottom: -8px !important;
}
.wave-parallax > use {
  animation: wave-move 25s cubic-bezier(0.55,0.5,0.45,0.5) infinite !important;
}
.wave-parallax > use:nth-child(1){ animation-delay:-2s !important;  animation-duration:7s !important;  }
.wave-parallax > use:nth-child(2){ animation-delay:-3s !important;  animation-duration:10s !important; }
.wave-parallax > use:nth-child(3){ animation-delay:-4s !important;  animation-duration:13s !important; }

/* ============================================================
   SCROLL-REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger siblings */
.reveal:nth-child(1){ transition-delay: 0.05s; }
.reveal:nth-child(2){ transition-delay: 0.13s; }
.reveal:nth-child(3){ transition-delay: 0.21s; }
.reveal:nth-child(4){ transition-delay: 0.29s; }
.reveal:nth-child(5){ transition-delay: 0.37s; }
.reveal:nth-child(6){ transition-delay: 0.45s; }

/* Cards hover lift */
.team-card,
.service-card,
.contact-info-card,
.stat-card,
.about-card,
.country-card,
.info-card {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s cubic-bezier(0.22,1,0.36,1) !important;
}
.team-card:hover,
.service-card:hover,
.contact-info-card:hover,
.stat-card:hover,
.about-card:hover,
.country-card:hover,
.info-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10) !important;
}

/* Button pulse on hover */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: inherit;
}
.btn-primary:hover::after { opacity: 1; }

/* Nav link underline animation */
.desktop-nav a {
  position: relative;
  padding-bottom: 2px;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width 0.28s cubic-bezier(0.22,1,0.36,1);
  border-radius: 2px;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current]::after { width: 100%; }

/* Image zoom on hover */
.team-image img,
.hero-logo {
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.team-image:hover img { transform: scale(1.03); }

/* Badge entrance */
.badge {
  animation: badge-in 0.8s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes badge-in {
  from { opacity:0; transform: translateY(-10px) scale(0.9); }
  to   { opacity:1; transform: none; }
}

/* Stat counter shimmer */
.stat-card strong {
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--orange), var(--green));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 3s linear infinite;
}
@keyframes shimmer-text {
  0%  { background-position: 0%   50%; }
  100%{ background-position: 200% 50%; }
}

/* Footer links hover */
.footer-grid a {
  transition: color 0.2s, letter-spacing 0.2s !important;
}
.footer-grid a:hover { letter-spacing: 0.03em; }

/* Location list animated entries */
.location-list li {
  transition: transform 0.25s, color 0.25s;
}
.location-list li:hover {
  transform: translateX(6px);
  color: var(--green);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-waves      { height: 60px; }
  .services-hero-waves { height: 50px; }
  .footer-waves    { height: 55px !important; }
}

/* ============================================================
   PAGE TRANSITION — handled in bubbles.js
   ============================================================ */
html { transition: opacity 0.5s ease; }

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  width: 160px; margin-bottom: 32px;
  animation: loader-pulse 1.4s ease-in-out infinite;
}
@keyframes loader-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.06); opacity: 0.8; }
}
.loader-bar-wrap {
  width: 200px; height: 4px; background: #eee; border-radius: 99px;
  margin: 0 auto 16px; overflow: hidden;
}
.loader-bar {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--orange), var(--pink));
  background-size: 200%;
  animation: loader-bar-fill 4.5s ease forwards, loader-shimmer 1.5s linear infinite;
}
@keyframes loader-bar-fill {
  from { width: 0%; } to { width: 100%; }
}
@keyframes loader-shimmer {
  0%   { background-position: 0%   50%; }
  100% { background-position: 200% 50%; }
}
.loader-text {
  font-size: .85rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase;
  animation: loader-blink 1.2s ease-in-out infinite;
}
@keyframes loader-blink { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ============================================================
   MOBILE MENU — full-screen glassmorphism overlay
   ============================================================ */
.mobile-menu {
  display: flex;
  position: fixed; inset: 0;
  /* sit above page content and bubbles */
  z-index: 11100;
  min-height:100vh;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  align-items: center; justify-content: center;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.mobile-menu::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(124,179,66,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(253,216,53,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu-brand {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.mobile-menu-logo {
  height: 68px;
  width: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 4px;
}
.close-line {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.close-line-1 { transform: rotate(45deg) translateY(6px); }
.close-line-2 { transform: rotate(-45deg) translateY(-6px); }
.mobile-nav {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; width: 100%; padding: 88px 32px 120px; position: relative;
}
.mobile-link {
  display: block; text-align: center;
  font-family: 'Antonio', serif; font-size: 2rem; font-weight: 600;
  color: var(--text); text-decoration: none; padding: 14px 32px;
  border-radius: 12px; width: 100%; max-width: 280px;
  transition: background .2s, color .2s, transform .2s;
  opacity: 0; transform: translateY(20px);
}
.mobile-menu.open .mobile-link {
  animation: mobile-link-in 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}
.mobile-menu.open .mobile-link:nth-child(1) { animation-delay: .05s; }
.mobile-menu.open .mobile-link:nth-child(2) { animation-delay: .12s; }
.mobile-menu.open .mobile-link:nth-child(3) { animation-delay: .19s; }
.mobile-menu.open .mobile-link:nth-child(4) { animation-delay: .26s; }
@keyframes mobile-link-in {
  to { opacity: 1; transform: none; }
}
.mobile-link:hover { background: rgba(124,179,66,0.10); color: var(--green); transform: scale(1.04); }
.mobile-phone { font-size: 1.1rem; color: var(--green) !important; margin-top: 12px; }
.mobile-menu-emails {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: calc(100% - 36px);
  z-index: 2;
}
.mobile-email-link {
  color: #374151;
  font-size: .9rem;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  word-break: break-word;
  text-align: center;
}
.mobile-email-link:hover {
  color: var(--green);
}

/* Burger lines */
.menu-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; border: 0; background: transparent; cursor: pointer; padding: 4px; position: relative; z-index: 11010; }
.burger-line { display: block; width: 26px; height: 2.5px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s, width .3s; }
.menu-toggle.open .burger-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open .burger-line:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.open .burger-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   GLOBAL BUBBLE CANVAS
   ============================================================ */
#globalBubbleCanvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; /* visible above page background but below main content */
  z-index: 1;
}
.section-white  { background: rgba(255,255,255,0.93); position: relative; }
.section-soft   { background: linear-gradient(180deg,rgba(255,255,255,0.91) 0%,rgba(248,250,252,0.91) 100%); position: relative; }
.hero           { isolation: isolate; }
.hero .hero-bg  { z-index: 1; }
.hero-overlay   { z-index: 2; }
.hero-grid      { z-index: 4 !important; position: relative; }

/* ============================================================
   HERO H1 — 3D text effect
   ============================================================ */
.hero-h1-3d {
  font-size: clamp(3rem, 6vw, 5.1rem);
  line-height: 1.06; margin: 22px 0 18px;
  text-shadow:
    1px 1px 0   rgba(0,0,0,0.18),
    2px 2px 0   rgba(0,0,0,0.14),
    3px 3px 0   rgba(0,0,0,0.10),
    4px 4px 8px rgba(0,0,0,0.18);
  transform: perspective(600px) rotateX(2deg);
  transform-origin: bottom center;
}
.hero-h1-3d .text-gradient {
  text-shadow: 1px 2px 0 rgba(0,0,0,0.2), 3px 4px 8px rgba(124,179,66,0.25);
}
.hero-h1-3d .text-pink {
  text-shadow: 1px 2px 0 rgba(0,0,0,0.2), 3px 4px 8px rgba(233,30,99,0.25);
}

/* ============================================================
   3D CARDS — tilt on hover
   ============================================================ */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.35s cubic-bezier(0.22,1,0.36,1) !important;
  will-change: transform;
}
.card-3d:hover {
  transform: perspective(700px) rotateX(-4deg) rotateY(4deg) translateY(-6px) scale(1.02);
  box-shadow: 8px 20px 40px rgba(0,0,0,0.14), -2px -2px 12px rgba(255,255,255,0.6) !important;
}

/* ============================================================
   HERO BOTTOM WAVES
   ============================================================ */
.hero-waves-wrap {
  position: absolute; bottom: 0; left: 0; width: 100%;
  overflow: hidden; line-height: 0; z-index: 5; pointer-events: none;
}
.hero-waves { display: block; width: calc(100% + 1.3px); height: 110px; }
.hero-wave-parallax > use { animation: wave-anim 25s cubic-bezier(0.55,0.5,0.45,0.5) infinite; }
.hero-wave-parallax > use:nth-child(1){ animation-delay:-2s;  animation-duration:7s;  }
.hero-wave-parallax > use:nth-child(2){ animation-delay:-3s;  animation-duration:10s; }
.hero-wave-parallax > use:nth-child(3){ animation-delay:-4s;  animation-duration:13s; }
.hero-wave-parallax > use:nth-child(4){ animation-delay:-5s;  animation-duration:20s; }

/* SERVICES/CONTACT HERO WAVES */
.services-hero { position: relative; overflow: hidden; }
.services-hero-waves-wrap {
  position: absolute; bottom: 0; left: 0; width: 100%;
  overflow: hidden; line-height: 0; z-index: 5; pointer-events: none;
}
.services-hero-waves { display: block; width: calc(100% + 1.3px); height: 90px; }
.services-wave-parallax > use { animation: wave-anim 25s cubic-bezier(0.55,0.5,0.45,0.5) infinite; }
.services-wave-parallax > use:nth-child(1){ animation-delay:-1s;  animation-duration:8s;  }
.services-wave-parallax > use:nth-child(2){ animation-delay:-3s;  animation-duration:12s; }
.services-wave-parallax > use:nth-child(3){ animation-delay:-5s;  animation-duration:16s; }
.services-wave-parallax > use:nth-child(4){ animation-delay:-7s;  animation-duration:22s; }

@keyframes wave-anim {
  0%   { transform: translate3d(-90px,0,0); }
  100% { transform: translate3d(85px,0,0);  }
}

/* ============================================================
   FOOTER WAVES — on top of footer
   ============================================================ */
.footer-waves-wrap {
  position: relative; width: 100%; overflow: hidden; line-height: 0;
  margin-bottom: -2px;
}
.footer-top-waves { display: block; width: calc(100% + 1.3px); height: 100px; }
.footer-wave-parallax > use { animation: wave-anim 25s cubic-bezier(0.55,0.5,0.45,0.5) infinite; }
.footer-wave-parallax > use:nth-child(1){ animation-delay:-2s;  animation-duration:8s;  }
.footer-wave-parallax > use:nth-child(2){ animation-delay:-4s;  animation-duration:12s; }
.footer-wave-parallax > use:nth-child(3){ animation-delay:-6s;  animation-duration:16s; }
.footer-wave-parallax > use:nth-child(4){ animation-delay:-8s;  animation-duration:22s; }
/* Keep old footer-waves class working but hide it */
.footer-waves { display: none !important; }

/* ============================================================
   FOOTER MOBILE — 2 columns not 1
   ============================================================ */
@media (max-width: 680px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 8px;
  }
  .footer-top-waves { height: 60px; }
  .hero-waves { height: 65px; }
  .services-hero-waves { height: 55px; }
}

/* ============================================================
   PCS FOOTER LINK — email tooltip on hover
   ============================================================ */
.pcs-link {
  position: relative; text-decoration: underline; text-underline-offset: 3px;
  color: inherit; transition: color .2s;
}
.pcs-link:hover { color: var(--green-dark); }
.pcs-link::after {
  content: attr(title);
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #1f2937; color: #fff;
  font-size: .75rem; white-space: nowrap;
  padding: 5px 10px; border-radius: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.pcs-link::before {
  content: '';
  position: absolute; bottom: calc(100% + 2px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 5px solid transparent; border-top-color: #1f2937;
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
}
.pcs-link:hover::after,
.pcs-link:hover::before { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   SCROLL REVEAL SYSTEM — from multiple directions
   ============================================================ */
.reveal-up    { opacity: 0; transform: translateY(40px);  transition: opacity .75s cubic-bezier(0.22,1,0.36,1), transform .75s cubic-bezier(0.22,1,0.36,1); transition-delay: var(--delay, 0s); }
.reveal-left  { opacity: 0; transform: translateX(-50px); transition: opacity .75s cubic-bezier(0.22,1,0.36,1), transform .75s cubic-bezier(0.22,1,0.36,1); transition-delay: var(--delay, 0s); }
.reveal-right { opacity: 0; transform: translateX(50px);  transition: opacity .75s cubic-bezier(0.22,1,0.36,1), transform .75s cubic-bezier(0.22,1,0.36,1); transition-delay: var(--delay, 0s); }
.reveal-fade  { opacity: 0;                                transition: opacity .9s cubic-bezier(0.22,1,0.36,1); transition-delay: var(--delay, 0s); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-fade.visible {
  opacity: 1; transform: none;
}
/* Legacy .reveal still works */
.reveal       { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(0.22,1,0.36,1), transform .7s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   CARD ENHANCEMENTS — shadows & hover
   ============================================================ */
.team-card, .service-card, .contact-info-card, .about-card, .country-card, .info-card, .service-card-new {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s cubic-bezier(0.22,1,0.36,1) !important;
}
.team-card:hover     { transform: perspective(700px) rotateX(-3deg) rotateY(3deg) translateY(-5px) scale(1.02) !important; box-shadow: 6px 18px 36px rgba(0,0,0,0.13) !important; }
.service-card:hover  { transform: translateY(-6px) !important; }
.contact-info-card:hover { transform: perspective(600px) rotateX(-3deg) translateY(-5px) !important; box-shadow: 0 18px 36px rgba(0,0,0,0.12) !important; }

/* ============================================================
   NAV — logo size & link underline
   ============================================================ */
.desktop-nav a {
  position: relative; padding-bottom: 3px;
}
.desktop-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--green);
  transition: width 0.28s cubic-bezier(0.22,1,0.36,1); border-radius: 2px;
}
.desktop-nav a:hover::after { width: 100%; }

/* ============================================================
   BUTTON — ripple shimmer
   ============================================================ */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15); opacity: 0;
  transition: opacity .25s; border-radius: inherit;
}
.btn-primary:hover::after { opacity: 1; }
.btn { transition: transform .25s, box-shadow .25s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

/* ============================================================
   STAT NUMBERS — shimmer gradient
   ============================================================ */
.stat-card strong {
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--orange), var(--green));
  background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 3s linear infinite;
}
@keyframes shimmer-text {
  0%   { background-position: 0%;   }
  100% { background-position: 200%; }
}

/* ============================================================
   LOCATION LIST — hover slide
   ============================================================ */
.location-list li { transition: transform .25s, color .25s; }
.location-list li:hover { transform: translateX(8px); color: var(--green); }

/* ============================================================
   BADGE ENTRANCE
   ============================================================ */
.badge { animation: badge-bounce 0.9s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes badge-bounce {
  0%   { opacity:0; transform: translateY(-12px) scale(0.88); }
  60%  { opacity:1; transform: translateY(4px) scale(1.04); }
  100% { opacity:1; transform: none; }
}

/* ============================================================
   PAGE TRANSITION
   ============================================================ */
html { transition: opacity 0.45s ease; }

/* ============================================================
   TEAM IMAGE ZOOM
   ============================================================ */
.team-image { overflow: hidden; border-radius: 12px; }
.team-image img { transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.team-image:hover img { transform: scale(1.04); }

/* ============================================================
   FOOTER LINK HOVER
   ============================================================ */
.footer-grid a { transition: color .2s, letter-spacing .2s, opacity .2s, transform .2s !important; }
.footer-grid a:hover { letter-spacing: 0.03em; }

/* mobile responsive for footer waves */
@media (max-width: 900px) {
  .footer-top-waves { height: 70px; }
}

/* ============================================================
   GSAP ANIMATION KEYFRAMES & TRANSITIONS
   ============================================================ */

/* Floating entrance animation */
@keyframes floatIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Slide up animation */
@keyframes slideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Fade in with scale */
@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

/* Rotate in animation */
@keyframes rotateIn {
  0% { opacity: 0; transform: rotate(-5deg) scale(0.9); }
  100% { opacity: 1; transform: rotate(0) scale(1); }
}

/* Floating effect (infinite) */
@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

/* Card hover lift effect */
.card-hover-lift {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.card-hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Smooth reveal animations for all elements */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade,
.reveal {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-fade.visible {
  opacity: 1;
}

/* Keep content visible: disable hide-on-scroll behavior globally */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade {
  opacity: 1 !important;
  transform: none !important;
}

/* Global transition rules */
* {
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* Smooth transitions on interactive elements */
button,
a,
.btn,
input,
textarea {
  transition: color var(--transition-base), background var(--transition-base), 
    transform var(--transition-base), box-shadow var(--transition-base),
    border-color var(--transition-base);
}

/* Parallax scroll effect support */
[data-parallax] {
  will-change: transform;
}

/* Performance optimization */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile animation optimizations */
@media (max-width: 768px) {
  .floating {
    animation: floating 2s ease-in-out infinite;
  }
  
  /* Reduce parallax effect on mobile */
  [data-parallax] {
    transform: none !important;
  }
  
  /* Faster transitions on mobile */
  * {
    --transition-fast: 0.1s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
  }
}
