/* ============================================================
   All in One Spacewell v4.0.3 — ELEMENTOR COMPATIBLE 🌿
   No Auto Header/Footer - Use Elementor Theme Builder
   Environmental Colors: Forest #1a4731 | Emerald #2d6a4f | Leaf #52b788
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* PRIMARY - Deep Forest Green */
  --sw-forest:   #1a4731;
  --sw-emerald:  #2d6a4f;
  --sw-p:        #2d6a4f;
  --sw-p-light:  #40916c;
  
  /* SECONDARY - Fresh Leaf Green */
  --sw-lime:     #52b788;
  --sw-s:        #52b788;
  --sw-mint:     #d8f3dc;
  --sw-light:    #d8f3dc;
  
  /* ACCENT - Harvest Gold */
  --sw-gold:     #d4a017;
  --sw-gold-lt:  #f4e4a0;
  --sw-sun:      #f4a261;
  
  /* EARTH TONES */
  --sw-earth:    #8b5a3c;
  --sw-clay:     #a67c52;
  --sw-sand:     #e9dcc9;
  
  /* SKY & WATER */
  --sw-sky:      #48cae4;
  --sw-water:    #90e0ef;
  --sw-ocean:    #0077b6;
  
  /* DARK */
  --sw-dk:       #0d1b12;
  --sw-charcoal: #2d3436;
  
  /* LIGHT */
  --sw-cream:    #f0f7f4;
  --sw-white:    #ffffff;
  --sw-cloud:    #f8f9fa;
  
  /* TEXT */
  --sw-text:     #1a2e20;
  --sw-muted:    #4b6658;
  --sw-subtle:   #6b7c73;
  
  /* BORDERS */
  --sw-border:   #c8e6d1;
  --sw-divider:  #e0ece4;
  
  /* SHADOWS */
  --sw-sh:   0 4px 20px rgba(27, 67, 50, 0.12);
  --sw-shl:  0 16px 56px rgba(27, 67, 50, 0.22);
  --sw-sh-soft: 0 2px 10px rgba(27, 67, 50, 0.08);
  
  /* SPACING */
  --sw-r:   12px;
  --sw-rl:  20px;
  --sw-rxl: 28px;
  --sw-t:   .3s ease;
}

/* ============================================================
   RESET & BASE STYLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: var(--sw-text);
  line-height: 1.7;
  background: var(--sw-white);
  /* NO padding-top - Elementor handles header */
}

body.sw-clean-layout {
  padding-top: 0 !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none !important;
  color: inherit;
  transition: color var(--sw-t);
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  color: var(--sw-dk);
}

p {
  color: var(--sw-muted);
  line-height: 1.8;
}

a, a:hover, a:focus, a:visited {
  text-decoration: none !important;
}

.sw-footer-links, .sw-menu, .sw-dropdown, .sw-aside-nav, 
.sw-recent-posts, .sw-values-list, .sw-split-list, 
.sw-about-list, .sw-footer-contact-info {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* ============================================================
   CONTAINER & SECTION UTILITIES
   ============================================================ */
.sw-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.sw-section {
  padding: 80px 0;
}

.sw-center {
  text-align: center;
}

.sw-mt30 {
  margin-top: 36px;
}

.sw-section-hd {
  margin-bottom: 56px;
}

.sw-section-hd.sw-center .sw-subtitle {
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   TYPOGRAPHY & UTILITIES
   ============================================================ */
.sw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sw-p);
  margin-bottom: 14px;
  background: var(--sw-mint);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--sw-border);
}

.sw-eyebrow i {
  color: var(--sw-gold);
  font-size: 10px;
}

.sw-eyebrow-light {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}

.sw-eyebrow-light i {
  color: var(--sw-gold);
}

.sw-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--sw-dk);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.sw-subtitle {
  color: var(--sw-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.sw-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  letter-spacing: .01em;
}

.sw-btn:hover {
  transform: translateY(-2px);
}

.sw-btn-primary {
  background: var(--sw-emerald);
  color: #fff;
  border-color: var(--sw-emerald);
}

.sw-btn-primary:hover {
  background: var(--sw-forest);
  border-color: var(--sw-forest);
  box-shadow: 0 10px 32px rgba(27,67,50,.42);
  color: #fff;
}

.sw-btn-primary-outline {
  background: transparent;
  color: var(--sw-emerald);
  border-color: var(--sw-emerald);
}

.sw-btn-primary-outline:hover {
  background: var(--sw-emerald);
  color: #fff;
}

.sw-btn-accent {
  background: var(--sw-gold);
  color: var(--sw-dk);
  border-color: var(--sw-gold);
  font-weight: 800;
}

.sw-btn-accent:hover {
  background: #b8860b;
  border-color: #b8860b;
  color: #fff;
  box-shadow: 0 10px 32px rgba(212,160,23,.48);
}

.sw-btn-ghost,
.sw-btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

.sw-btn-ghost:hover,
.sw-btn-ghost-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}

.sw-btn-sm {
  padding: 9px 22px;
  font-size: 12.5px;
}

.sw-btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}

/* ============================================================
   PAGE BANNER (No header interference)
   ============================================================ */
.sw-page-banner {
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}

.sw-banner-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,.92) 0%, rgba(45,106,79,.75) 100%);
}

.sw-banner-ct {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 16px;
  max-width: 900px;
}

.sw-banner-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
  color: var(--sw-gold);
}

.sw-banner-ct h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
  font-family: 'Syne', sans-serif;
}

.sw-banner-bc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  flex-wrap: wrap;
}

.sw-banner-bc a {
  color: rgba(255,255,255,.78);
}

.sw-banner-bc a:hover {
  color: var(--sw-gold);
}

.sw-bc-sep {
  font-size: 10px;
  opacity: .5;
}

/* [Continue with rest of your CSS for sections, cards, etc.] */
/* All other section styles remain the same */

/* ============================================================
   HERO SLIDER
   ============================================================ */
.sw-slider-wrap {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 118px);
  min-height: 500px;
  max-height: 900px;
}

.sw-slides {
  height: 100%;
  position: relative;
}

.sw-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.sw-slide.active {
  opacity: 1;
}

.sw-slide-bg,
.kenburns {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
}

.kenburns {
  animation: kenBurns 28s ease-in-out infinite;
}

.sw-slide:not(.active) .kenburns {
  animation-play-state: paused;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0,0); }
  33% { transform: scale(1.08) translate(-1.5%,-1%); }
  66% { transform: scale(1.12) translate(1.2%,.5%); }
  100% { transform: scale(1) translate(0,0); }
}

.sw-slide-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27,67,50,.90) 0%, rgba(27,67,50,.60) 55%, rgba(0,0,0,.10) 100%),
              linear-gradient(to top, rgba(13,27,18,.80) 0%, transparent 50%);
}

.sw-slide-ct {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.sw-slide-inner {
  max-width: 720px;
  padding: 80px 24px 160px;
  margin: 0 auto;
  text-align: center;
}

.sw-slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(212,160,23,.18);
  border: 1px solid rgba(212,160,23,.45);
  color: rgba(255,255,255,.95);
  padding: 6px 20px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.sw-slide-eyebrow i {
  color: var(--sw-gold);
}

.sw-slide-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.04;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s .2s, transform .9s .2s;
  letter-spacing: -.02em;
}

.sw-slide.active .sw-slide-title {
  opacity: 1;
  transform: translateY(0);
}

.sw-slide-sub {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s .4s, transform .9s .4s;
}

.sw-slide.active .sw-slide-sub {
  opacity: 1;
  transform: translateY(0);
}

.sw-slide-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s .6s, transform .9s .6s;
}

.sw-slide.active .sw-slide-btns {
  opacity: 1;
  transform: translateY(0);
}

.sw-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all .3s;
}

.sw-slide-arrow:hover {
  background: var(--sw-gold);
  border-color: var(--sw-gold);
  color: var(--sw-dk);
  transform: translateY(-50%) scale(1.1);
}

.sw-slide-prev { left: 20px; }
.sw-slide-next { right: 20px; }

.sw-slide-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 15;
}

.sw-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}

.sw-dot.active {
  background: var(--sw-gold);
  width: 32px;
  border-radius: 6px;
}

.sw-slide-stats {
  display: none;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.sw-about-section {
  background: #fff;
}

.sw-about-grid {
  align-items: center;
}

.sw-about-images {
  position: relative;
}

.sw-about-top-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.sw-about-img {
  overflow: hidden;
  border-radius: var(--sw-rl);
}

.sw-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.sw-about-img:hover img {
  transform: scale(1.05);
}

.sw-about-img-sm {
  flex: 0 0 calc(50% - 8px);
  max-width: calc(50% - 8px);
  aspect-ratio: 1;
}

.sw-about-img-lg {
  width: 100%;
}

.sw-about-img-lg img {
  aspect-ratio: 16/7;
  width: 100%;
}

.sw-about-exp-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--sw-forest);
  border-radius: 18px;
  padding: 20px 28px;
  box-shadow: var(--sw-shl);
  text-align: center;
  border-left: 5px solid var(--sw-gold);
}

.sw-about-exp-badge span {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.sw-about-exp-badge small {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sw-about-content p {
  color: var(--sw-muted);
  line-height: 1.88;
  margin-bottom: 18px;
}

.sw-about-list {
  margin: 26px 0 34px;
}

.sw-about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--sw-text);
}

.sw-about-list li i {
  color: var(--sw-lime);
  font-size: 16px;
  width: 22px;
  text-align: center;
}

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */
.sw-why-section {
  background: var(--sw-cream);
}

.sw-why-card {
  background: #fff;
  border-radius: var(--sw-rl);
  padding: 40px 28px;
  border: 2px solid var(--sw-border);
  transition: all .35s;
  position: relative;
  overflow: hidden;
  cursor: default;
  height: 100%;
}

.sw-why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sw-forest), var(--sw-emerald));
  opacity: 0;
  transition: opacity .35s;
  z-index: 0;
}

.sw-why-card:hover::after {
  opacity: 1;
}

.sw-why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sw-shl);
  border-color: var(--sw-forest);
}

.sw-why-card > * {
  position: relative;
  z-index: 1;
}

.sw-why-icon {
  width: 68px;
  height: 68px;
  background: var(--sw-mint);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sw-p);
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: all .3s;
}

.sw-why-card:hover .sw-why-icon {
  background: rgba(255,255,255,.2);
  color: #fff;
}

.sw-why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sw-dk);
  margin-bottom: 10px;
  transition: color .35s;
}

.sw-why-card:hover h3 {
  color: #fff;
}

.sw-why-card p {
  font-size: 13.5px;
  color: var(--sw-muted);
  line-height: 1.72;
  transition: color .35s;
}

.sw-why-card:hover p {
  color: rgba(255,255,255,.8);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.sw-services-section {
  background: var(--sw-cream);
}

.sw-svc-card {
  background: #fff;
  border-radius: var(--sw-rl);
  overflow: hidden;
  border: 2px solid var(--sw-border);
  transition: all .4s;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.sw-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sw-forest), var(--sw-lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
  z-index: 2;
}

.sw-svc-card:hover::before {
  transform: scaleX(1);
}

.sw-svc-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 72px rgba(27,67,50,.2);
  border-color: var(--sw-emerald);
}

.sw-svc-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}

.sw-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}

.sw-svc-card:hover .sw-svc-img img {
  transform: scale(1.1);
}

.sw-svc-img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sw-forest), var(--sw-emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
}

.sw-svc-icon-badge {
  position: absolute;
  bottom: -22px;
  right: 22px;
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--sw-sh);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sw-p);
  font-size: 1.4rem;
  border: 2px solid var(--sw-mint);
  transition: all .3s;
  z-index: 3;
}

.sw-svc-card:hover .sw-svc-icon-badge {
  background: var(--sw-p);
  color: #fff;
  border-color: var(--sw-p);
  transform: scale(1.1);
}

.sw-svc-body {
  padding: 36px 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sw-svc-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--sw-dk);
  margin-bottom: 12px;
}

.sw-svc-body p {
  font-size: 14px;
  color: var(--sw-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

.sw-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sw-p);
  transition: all .2s;
  align-self: flex-start;
  background: var(--sw-mint);
  padding: 8px 18px;
  border-radius: 50px;
}

.sw-svc-link:hover {
  background: var(--sw-p);
  color: #fff;
  gap: 14px;
}

/* ============================================================
   SERVICE SINGLE LAYOUT (Bootstrap Grid)
   ============================================================ */
.sw-svc-single-row {
  align-items: flex-start;
}

.sw-prose {
  font-size: 15.5px;
  line-height: 1.88;
  color: var(--sw-muted);
}

.sw-prose h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--sw-dk);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--sw-mint);
}

.sw-prose h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sw-dk);
  margin: 30px 0 14px;
  padding: 14px 18px;
  border-left: 5px solid var(--sw-p);
  background: var(--sw-mint);
  border-radius: 0 10px 10px 0;
  line-height: 1.4;
}

.sw-prose h3:first-child {
  margin-top: 0;
}

.sw-prose h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sw-dk);
  margin: 20px 0 10px;
}

.sw-prose p {
  margin-bottom: 20px;
}

.sw-prose ul,
.sw-prose ol {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
}

.sw-prose ul li,
.sw-prose ol li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--sw-muted);
  line-height: 1.78;
}

.sw-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sw-lime);
}

.sw-prose ol {
  counter-reset: ol;
}

.sw-prose ol li {
  counter-increment: ol;
}

.sw-prose ol li::before {
  content: counter(ol) '.';
  color: var(--sw-p);
  font-weight: 700;
  font-size: 13px;
}

.sw-prose strong {
  color: var(--sw-dk);
  font-weight: 700;
}

.sw-prose a {
  color: var(--sw-p);
}

.sw-prose a:hover {
  color: var(--sw-forest);
}

.sw-svc-aside {
  position: static;
}

.sw-aside-box {
  background: var(--sw-cream);
  border-radius: var(--sw-rl);
  padding: 30px;
  margin-bottom: 24px;
  border: 2px solid var(--sw-border);
}

.sw-aside-box h4 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--sw-dk);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--sw-p);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.sw-aside-nav li {
  border-bottom: 1px solid var(--sw-border);
}

.sw-aside-nav li:last-child {
  border-bottom: none;
}

.sw-aside-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 13.5px;
  color: var(--sw-text);
  transition: all .2s;
  font-weight: 600;
}

.sw-aside-nav li a i {
  color: var(--sw-p);
  width: 18px;
  font-size: 13px;
  flex-shrink: 0;
}

.sw-aside-nav li a:hover,
.sw-aside-nav li.active a {
  color: var(--sw-p);
  font-weight: 700;
  padding-left: 10px;
}

.sw-aside-cta {
  background: linear-gradient(160deg, var(--sw-forest), var(--sw-emerald));
  border: none;
}

.sw-aside-cta h4 {
  color: #fff;
  border-color: var(--sw-gold);
}

.sw-aside-cta p {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sw-aside-cta p i {
  color: var(--sw-gold);
}

.sw-aside-cta a:not(.sw-btn) {
  color: rgba(255,255,255,.78);
}

.sw-aside-cta a:not(.sw-btn):hover {
  color: var(--sw-gold);
}

/* ============================================================
   IMPACT SECTION
   ============================================================ */
.sw-impact-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.sw-impact-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,.96), rgba(13,40,20,.92));
}

.sw-impact-item {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--sw-r);
  background: rgba(255,255,255,.08);
  height: 100%;
}

.sw-impact-icon {
  font-size: 2.8rem;
  color: var(--sw-gold);
  margin-bottom: 18px;
  display: block;
}

.sw-impact-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.03em;
}

.sw-impact-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sw-impact-stories {
  gap: 36px;
  margin-top: 56px;
}

.sw-impact-story {
  background: var(--sw-cream);
  border-radius: var(--sw-rl);
  padding: 40px;
  border-left: 5px solid var(--sw-lime);
  height: 100%;
}

.sw-impact-story-icon {
  font-size: 2.4rem;
  color: var(--sw-p);
  margin-bottom: 16px;
}

.sw-impact-story h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--sw-dk);
  margin-bottom: 12px;
}

.sw-impact-story p {
  font-size: 14px;
  color: var(--sw-muted);
  line-height: 1.82;
}

/* ============================================================
   SPLIT SECTION
   ============================================================ */
.sw-split-section {
  min-height: 500px;
}

.sw-split-left {
  background: linear-gradient(160deg, var(--sw-forest), var(--sw-emerald));
  display: flex;
  align-items: center;
  padding: 60px 24px;
}

.sw-split-ct h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: #fff;
  margin: 12px 0 20px;
  letter-spacing: -.02em;
}

.sw-split-ct p {
  color: rgba(255,255,255,.82);
  line-height: 1.85;
  margin-bottom: 28px;
}

.sw-split-list {
  margin-bottom: 40px;
}

.sw-split-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  color: rgba(255,255,255,.9);
  font-size: 14.5px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.sw-split-list li:last-child {
  border-bottom: none;
}

.sw-split-list li i {
  color: var(--sw-gold);
  font-size: 15px;
  flex-shrink: 0;
}

.sw-split-right {
  display: none;
}

@media (min-width: 768px) {
  .sw-split-right {
    display: block;
  }
}

.sw-split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.sw-testi-section {
  background: var(--sw-cream);
}

.sw-testi-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -8px;
}

.sw-testi-track {
  display: flex;
  gap: 0;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
  padding: 8px;
}

.sw-testi-track .sw-testi-card {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0 14px;
}

@media (min-width: 768px) {
  .sw-testi-track .sw-testi-card {
    flex: 0 0 calc(33.333333% - 28px);
  }
}

.sw-testi-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.sw-testi-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sw-forest);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all .25s;
  flex-shrink: 0;
}

.sw-testi-nav-btn:hover {
  background: var(--sw-gold);
  color: var(--sw-dk);
}

.sw-testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sw-testi-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sw-border);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}

.sw-testi-dot.active {
  background: var(--sw-forest);
  width: 28px;
  border-radius: 5px;
}

.sw-testi-card {
  background: #fff;
  border-radius: var(--sw-rl);
  padding: 40px;
  position: relative;
  border: 2px solid var(--sw-border);
  transition: all .35s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.sw-testi-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 9rem;
  font-family: Georgia, serif;
  color: var(--sw-mint);
  line-height: 1;
  z-index: 0;
}

.sw-testi-card > * {
  position: relative;
  z-index: 1;
}

.sw-testi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sw-shl);
  border-color: var(--sw-lime);
}

.sw-testi-stars {
  color: var(--sw-gold);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.sw-testi-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--sw-text);
  font-style: italic;
  margin-bottom: 28px;
  flex: 1;
}

.sw-testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 2px solid var(--sw-border);
  padding-top: 22px;
  margin-top: auto;
}

.sw-testi-av {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--sw-lime);
}

.sw-testi-av-ph {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sw-p), var(--sw-lime));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.sw-testi-author strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--sw-dk);
}

.sw-testi-author span {
  font-size: 12px;
  color: var(--sw-muted);
  font-weight: 500;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.sw-blog-section {
  background: #fff;
}

.sw-blog-card {
  background: #fff;
  border-radius: var(--sw-rl);
  overflow: hidden;
  border: 2px solid var(--sw-border);
  transition: all .35s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sw-blog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sw-shl);
  border-color: var(--sw-emerald);
}

.sw-blog-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}

.sw-blog-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.sw-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s;
}

.sw-blog-card:hover .sw-blog-img img {
  transform: scale(1.07);
}

.sw-blog-ph {
  display: flex;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sw-forest), var(--sw-emerald));
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: 2.5rem;
}

.sw-blog-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sw-gold);
  color: var(--sw-dk);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.sw-blog-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sw-blog-meta {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: var(--sw-muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.sw-blog-meta i {
  color: var(--sw-p);
  font-size: 11px;
}

.sw-blog-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--sw-dk);
  margin-bottom: 10px;
  line-height: 1.4;
}

.sw-blog-body h3 a {
  color: inherit;
}

.sw-blog-body h3 a:hover {
  color: var(--sw-p);
}

.sw-blog-body p {
  font-size: 13px;
  color: var(--sw-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.sw-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sw-p);
  transition: gap .2s;
  margin-top: auto;
}

.sw-read-more:hover {
  gap: 12px;
  color: var(--sw-forest);
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.sw-partners-section {
  background: #fff;
  padding: 60px 0;
}

.sw-partners-wrap {
  overflow: hidden;
  margin-top: 40px;
}

.sw-partners-track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: pScroll 36s linear infinite;
  width: max-content;
}

.sw-partners-track:hover {
  animation-play-state: paused;
}

@keyframes pScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sw-partner-item img {
  height: 54px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .45;
  transition: all .35s;
}

.sw-partner-item img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.06);
}

.sw-partner-name {
  height: 54px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  background: var(--sw-cream);
  border: 2px solid var(--sw-border);
  border-radius: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--sw-dk);
  white-space: nowrap;
  transition: all .3s;
}

.sw-partner-name:hover {
  background: var(--sw-p);
  color: #fff;
  border-color: var(--sw-p);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.sw-cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
}

.sw-cta-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,.96), rgba(13,40,20,.93));
}

.sw-cta-section::before,
.sw-cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(82,183,136,.12);
  z-index: 1;
}

.sw-cta-section::before {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sw-cta-section::after {
  width: 920px;
  height: 920px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sw-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.sw-cta-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin: 12px 0 20px;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.sw-cta-inner p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.82;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sw-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   MISSION/VISION/VALUES
   ============================================================ */
.sw-mvv-section {
  background: var(--sw-cream);
}

.sw-overview-block {
  max-width: 800px;
  margin: 0 auto 56px;
  text-align: center;
}

.sw-overview-text {
  font-size: 1rem;
  color: var(--sw-muted);
  line-height: 1.92;
  background: #fff;
  border-radius: var(--sw-rl);
  padding: 40px;
  border-left: 6px solid var(--sw-lime);
  box-shadow: var(--sw-sh);
}

.sw-mvv-card {
  background: #fff;
  border-radius: var(--sw-rl);
  padding: 44px;
  border: 2px solid var(--sw-border);
  text-align: center;
  transition: all .35s;
  height: 100%;
}

.sw-mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sw-shl);
  border-color: var(--sw-lime);
}

.sw-mvv-icon {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.sw-mvv-mission .sw-mvv-icon { color: var(--sw-p); }
.sw-mvv-vision  .sw-mvv-icon { color: var(--sw-sky); }
.sw-mvv-values  .sw-mvv-icon { color: var(--sw-gold); }

.sw-mvv-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--sw-dk);
  margin-bottom: 16px;
}

.sw-mvv-card p {
  color: var(--sw-muted);
  line-height: 1.85;
  font-size: 14.5px;
}

.sw-values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--sw-text);
  border-bottom: 1px solid var(--sw-border);
  text-align: left;
}

.sw-values-list li:last-child {
  border-bottom: none;
}

.sw-values-list i {
  color: var(--sw-lime);
  font-size: 14px;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.sw-team-card {
  background: #fff;
  border-radius: var(--sw-rl);
  overflow: hidden;
  border: 2px solid var(--sw-border);
  transition: all .35s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sw-team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sw-shl);
  border-color: var(--sw-lime);
}

.sw-team-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--sw-mint), #a8d5ba);
}

.sw-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .55s;
}

.sw-team-card:hover .sw-team-img img {
  transform: scale(1.06);
}

.sw-team-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sw-p);
  font-size: 4.5rem;
  opacity: .5;
}

.sw-team-socials {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to top, rgba(27,67,50,.95), transparent);
  transform: translateY(100%);
  transition: transform .35s;
}

.sw-team-card:hover .sw-team-socials {
  transform: translateY(0);
}

.sw-team-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  transition: background .2s;
  border: 1px solid rgba(255,255,255,.2);
}

.sw-team-socials a:hover {
  background: var(--sw-gold);
  color: var(--sw-dk);
}

.sw-team-body {
  padding: 24px;
  flex: 1;
  border-top: 4px solid var(--sw-lime);
}

.sw-team-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--sw-dk);
  margin-bottom: 5px;
}

.sw-team-pos {
  font-size: 11px;
  color: var(--sw-p);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.sw-team-body p {
  font-size: 13px;
  color: var(--sw-muted);
  line-height: 1.67;
}

/* ============================================================
   FAQS SECTION
   ============================================================ */
.sw-faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.sw-faq-item {
  border: 2px solid var(--sw-border);
  border-radius: var(--sw-r);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .2s;
}

.sw-faq-item:hover {
  box-shadow: var(--sw-sh);
}

.sw-faq-q {
  width: 100%;
  background: #fff;
  border: none;
  padding: 22px 30px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Syne', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--sw-dk);
  transition: background .2s;
}

.sw-faq-q:hover,
.sw-faq-q[aria-expanded="true"] {
  background: var(--sw-mint);
  color: var(--sw-p);
}

.sw-faq-icon {
  font-size: 15px;
  color: var(--sw-p);
  flex-shrink: 0;
  transition: transform .3s;
}

.sw-faq-q[aria-expanded="true"] .sw-faq-icon {
  transform: rotate(45deg);
}

.sw-faq-a {
  padding: 0 30px;
  background: #fff;
}

.sw-faq-a p {
  padding: 20px 0;
  color: var(--sw-muted);
  line-height: 1.85;
  font-size: 15px;
  border-top: 1px solid var(--sw-border);
}

.sw-faq-cta {
  margin-top: 56px;
  text-align: center;
  padding-top: 44px;
  border-top: 2px solid var(--sw-border);
}

.sw-faq-cta p {
  color: var(--sw-muted);
  margin-bottom: 18px;
  font-size: 15px;
}

/* ============================================================
   PROJECTS SECTION
   ============================================================ */
.sw-project-card {
  background: #fff;
  border-radius: var(--sw-rl);
  overflow: hidden;
  border: 2px solid var(--sw-border);
  transition: all .35s;
  height: 100%;
}

.sw-project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sw-shl);
  border-color: var(--sw-emerald);
}

.sw-project-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.sw-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s;
}

.sw-project-card:hover .sw-project-img img {
  transform: scale(1.07);
}

.sw-project-img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sw-forest), var(--sw-emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.35);
  font-size: 2.5rem;
}

.sw-project-status {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--sw-gold);
  color: var(--sw-dk);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 50px;
}

.sw-project-body {
  padding: 26px;
}

.sw-project-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--sw-p);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 8px;
}

.sw-project-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--sw-dk);
  margin-bottom: 10px;
}

.sw-project-body p {
  font-size: 13px;
  color: var(--sw-muted);
  line-height: 1.68;
  margin-bottom: 14px;
}

.sw-project-meta {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--sw-muted);
  flex-wrap: wrap;
}

.sw-project-meta i {
  color: var(--sw-p);
  font-size: 11px;
}

/* ============================================================
   RESOURCES SECTION
   ============================================================ */
.sw-resources-intro {
  background: var(--sw-cream);
  border-radius: var(--sw-rl);
  padding: 36px;
  margin-bottom: 44px;
  border: 2px solid var(--sw-border);
}

.sw-tips-categories {
  gap: 22px;
}

.sw-tips-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sw-dk);
}

.sw-tips-cat-item i {
  width: 46px;
  height: 46px;
  background: var(--sw-mint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sw-p);
  font-size: 17px;
  flex-shrink: 0;
}

.sw-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sw-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--sw-border);
  background: #fff;
  color: var(--sw-muted);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none !important;
}

.sw-filter-btn:hover,
.sw-filter-btn.active {
  background: var(--sw-p);
  color: #fff;
  border-color: var(--sw-p);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.sw-contact-info p {
  color: var(--sw-muted);
  line-height: 1.85;
  margin-bottom: 28px;
}

.sw-ci-items {
  margin-top: 30px;
}

.sw-ci-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}

.sw-ci-icon {
  width: 48px;
  height: 48px;
  background: var(--sw-mint);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sw-p);
  font-size: 18px;
  flex-shrink: 0;
}

.sw-ci-item h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--sw-dk);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.sw-ci-item p {
  margin: 0;
  font-size: 13.5px;
  color: var(--sw-muted);
  line-height: 1.72;
}

.sw-ci-item a {
  color: var(--sw-p);
}

.sw-contact-form-wrap h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--sw-dk);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sw-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sw-form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sw-dk);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.sw-form-group label i {
  color: var(--sw-p);
  font-size: 12px;
}

.sw-contact-form input,
.sw-contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--sw-border);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--sw-text);
  transition: all .2s;
  background: #fff;
  outline: none;
}

.sw-contact-form input:focus,
.sw-contact-form textarea:focus {
  border-color: var(--sw-p);
  box-shadow: 0 0 0 4px rgba(45,106,79,.1);
}

.sw-contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.sw-contact-map {
  margin-top: 56px;
}

.sw-map-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--sw-dk);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sw-map-wrap {
  border-radius: var(--sw-rl);
  overflow: hidden;
  border: 3px solid var(--sw-border);
}

.sw-map-wrap iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

.sw-map-placeholder {
  background: var(--sw-cream);
  border-radius: var(--sw-rl);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--sw-muted);
  border: 2px dashed var(--sw-border);
}

.sw-map-placeholder i {
  font-size: 2.8rem;
  color: var(--sw-p);
}

.sw-notice {
  padding: 16px 26px;
  border-radius: 12px;
  margin-bottom: 26px;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sw-notice-ok {
  background: rgba(45,106,79,.1);
  border: 2px solid rgba(45,106,79,.35);
  color: var(--sw-dk);
}

.sw-notice-info {
  background: rgba(14,165,233,.08);
  border: 2px solid rgba(14,165,233,.25);
  color: var(--sw-dk);
}

/* ============================================================
   FOOTER
   ============================================================ */
.sw-footer {
  background: var(--sw-forest);
}

.sw-footer-main {
  padding: 60px 0 40px;
}

.sw-fc {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .sw-fc {
    margin-bottom: 0;
  }
}

.sw-flogo-txt {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

.sw-flogo-txt span {
  color: var(--sw-lime);
}

.sw-footer-logo img {
  max-height: 56px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.sw-footer-about {
  font-size: 14px;
  color: rgba(255,255,255,.58);
  line-height: 1.85;
  margin-bottom: 24px;
}

.sw-footer-contact-info {
  margin-bottom: 26px;
}

.sw-footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
  line-height: 1.6;
}

.sw-footer-contact-info i {
  color: var(--sw-gold);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.sw-footer-contact-info a {
  color: rgba(255,255,255,.55);
}

.sw-footer-contact-info a:hover {
  color: var(--sw-gold);
}

.sw-footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.sw-footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: all .25s;
  border: 1px solid rgba(255,255,255,.12);
}

.sw-footer-socials a:hover {
  background: var(--sw-gold);
  color: var(--sw-dk);
  border-color: var(--sw-gold);
}

.sw-ft {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(82,183,136,.3);
  display: flex;
  align-items: center;
  gap: 9px;
}

.sw-ft i {
  color: var(--sw-lime);
  font-size: 13px;
}

.sw-footer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sw-footer-links li,
.sw-footer-links > li {
  list-style: none;
}

.sw-footer-links li a,
.sw-footer-links > li > a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.52);
  transition: all .2s;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.sw-footer-links li a i,
.sw-footer-links > li > a i {
  color: var(--sw-lime);
  font-size: 12px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.sw-footer-links li a:hover,
.sw-footer-links > li > a:hover {
  color: var(--sw-gold);
  padding-left: 8px;
}

.sw-contact-col li {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.sw-contact-col li:last-child {
  border-bottom: none;
}

.sw-fc-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 5px;
}

.sw-fi-lg {
  font-size: 13px;
  color: var(--sw-gold);
}

.sw-contact-col a {
  font-size: 13px;
  color: rgba(255,255,255,.58);
}

.sw-contact-col a:hover {
  color: var(--sw-gold);
}

.sw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  background: var(--sw-dk);
}

.sw-fb-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,.38);
}

.sw-fb-flex strong {
  color: rgba(255,255,255,.65);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.sw-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 8px 36px rgba(37,211,102,.55);
  z-index: 8888;
  transition: all .3s;
  animation: waPulse 2.5s ease-in-out infinite;
}

.sw-wa-btn:hover {
  transform: scale(1.14);
  background: #1ebd5a;
  color: #fff;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,.5); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,.8); }
}

/* ============================================================
   SINGLE POST LAYOUT
   ============================================================ */
.sw-post-layout {
  gap: 48px;
}

.sw-post-meta {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--sw-muted);
  margin-bottom: 30px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--sw-border);
}

.sw-post-meta i {
  color: var(--sw-p);
  font-size: 11px;
}

.sw-sidebar-widget {
  background: var(--sw-cream);
  border-radius: var(--sw-r);
  padding: 28px;
  margin-bottom: 28px;
  border: 2px solid var(--sw-border);
}

.sw-sidebar-widget h4 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--sw-dk);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--sw-p);
}

.sw-recent-posts li {
  padding: 12px 0;
  border-bottom: 1px solid var(--sw-border);
}

.sw-recent-posts li:last-child {
  border-bottom: none;
}

.sw-recent-posts a {
  font-size: 13.5px;
  color: var(--sw-text);
  display: block;
  line-height: 1.5;
  font-weight: 600;
}

.sw-recent-posts a:hover {
  color: var(--sw-p);
}

.sw-recent-posts span {
  font-size: 11px;
  color: var(--sw-muted);
}

.sw-empty-state {
  text-align: center;
  padding: 90px 24px;
  color: var(--sw-muted);
}

.sw-empty-state i {
  font-size: 3.2rem;
  color: var(--sw-lime);
  margin-bottom: 18px;
  display: block;
}

.sw-fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s, transform .7s;
}

.sw-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BANNER TEXT COLORS (All white on dark background)
   ============================================================ */
.sw-page-banner * { color: #fff !important; }
.sw-page-banner h1 { 
  color: #fff !important; 
  font-weight: 800; 
  text-shadow: 0 2px 14px rgba(0,0,0,.3); 
}
.sw-page-banner p  { color: rgba(255,255,255,.9) !important; }
.sw-page-banner a  { color: rgba(255,255,255,.82) !important; }
.sw-page-banner a:hover { color: var(--sw-gold) !important; }
.sw-banner-sub { 
  font-size: 1.08rem; 
  line-height: 1.78; 
  margin-top: 14px; 
  max-width: 700px; 
  margin-left: auto; 
  margin-right: auto; 
  color: rgba(255,255,255,.88) !important; 
}
.sw-svc-banner .sw-banner-icon i { color: var(--sw-gold) !important; }
.sw-svc-banner h1 { font-size: clamp(1.8rem,4vw,3rem); }

/* ============================================================
   BENEFITS SIDEBAR (Dark gradient)
   ============================================================ */
.sw-aside-benefits { 
  background: linear-gradient(160deg,var(--sw-forest),var(--sw-emerald)) !important; 
  border: none !important; 
}
.sw-aside-benefits h4 { 
  color: #fff !important; 
  border-color: var(--sw-gold) !important; 
}
.sw-benefits-list { 
  list-style: none !important; 
  padding: 0 !important; 
  margin: 0 !important; 
}
.sw-benefits-list li { 
  display: flex; 
  align-items: flex-start; 
  gap: 12px; 
  padding: 10px 0; 
  color: rgba(255,255,255,.9) !important; 
  font-size: 14px; 
  font-weight: 500; 
  border-bottom: 1px solid rgba(255,255,255,.12); 
  list-style: none !important; 
}
.sw-benefits-list li:last-child { border-bottom: none; }
.sw-benefits-list li i { 
  color: var(--sw-gold) !important; 
  font-size: 14px; 
  margin-top: 3px; 
  flex-shrink: 0; 
}

/* ============================================================
   SHARE BUTTONS
   ============================================================ */
.sw-share-btns { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  flex-wrap: wrap; 
  margin: 40px 0 0; 
  padding: 24px 0; 
  border-top: 2px solid var(--sw-border); 
}
.sw-share-label { 
  font-size: 13px; 
  font-weight: 700; 
  color: var(--sw-dk); 
  display: flex; 
  align-items: center; 
  gap: 6px; 
}
.sw-share-label i { color: var(--sw-p); }
.sw-share-btn { 
  display: inline-flex; 
  align-items: center; 
  gap: 7px; 
  padding: 8px 18px; 
  border-radius: 50px; 
  font-size: 13px; 
  font-weight: 700; 
  transition: all .2s; 
  color: #fff !important; 
}
.sw-share-btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(0,0,0,.2); 
}
.sw-share-fb { background: #1877f2; } .sw-share-fb:hover { background: #1464d8; }
.sw-share-tw { background: #000; } .sw-share-tw:hover { background: #333; }
.sw-share-li { background: #0a66c2; } .sw-share-li:hover { background: #084f9a; }
.sw-share-wa { background: #25d366; } .sw-share-wa:hover { background: #1dba58; }

.sw-related-section { background: var(--sw-cream); }
.sw-svc-main { min-width: 0; }
.sw-main-content { min-height: 60vh; }
.sw-settings-saved { 
  background: rgba(45,106,79,.12); 
  border: 2px solid var(--sw-p); 
  color: var(--sw-dk); 
  padding: 14px 22px; 
  border-radius: 12px; 
  margin-bottom: 22px; 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-weight: 600; 
}

/* ============================================================
   CLEAN LAYOUT - Remove WordPress theme interference
   ============================================================ */
body.sw-clean-layout .entry-content,
body.sw-clean-layout .site-content,
body.sw-clean-layout .ast-container {
  padding: 0 !important;
  max-width: none !important;
}