﻿:root {
  --green-900: #003a00;
  --green-800: #005200;
  --green-700: #006400;
  --green-600: #1a7d1a;
  --green-500: #2e9e2e;
  --green-400: #4ab54a;
  --green-100: #e6f5e6;
  --green-50: #f2faf2;
  --ink: #141414;
  --ink-mid: #3a3a3a;
  --ink-muted: #6b6b6b;
  --surface: #fafaf8;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border-mid: rgba(0, 0, 0, 0.14);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  background: var(--white);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--ink);
}

p {
  color: var(--ink-muted);
}

a {
  text-decoration: none;
  transition: color 0.25s;
}

a:hover {
  color: var(--green-600);
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
}

/* LOGO */
.logo {
  height: auto;
  width: auto;
  transition: opacity 0.4s ease;
}

.logo-light {
  opacity: 1;
  max-height: 90px;
  position: relative;
}

.logo-dark {
  opacity: 0;
  max-height: 56px;
  position: absolute;
  top: 0;
  left: 0;
}

.custom-navbar.scrolled .logo-light {
  opacity: 0;
  position: absolute;
}

.custom-navbar.scrolled .logo-dark {
  opacity: 1;
  position: relative;
}

.logo-dark,
.logo-light {
  filter: none !important;
  -webkit-filter: none !important;
}

/* NAVBAR */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  padding: 1.25rem 0;
  background: transparent;
  transition: all 0.4s ease;
}

.custom-navbar.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
}

.custom-navbar .navbar-brand {
  position: relative;
}

.custom-navbar .nav-link,
.custom-navbar .nav-link-active {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.5rem 1.1rem;
  margin: 0 2px;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  position: relative;
}

.custom-navbar.scrolled .nav-link,
.custom-navbar.scrolled .nav-link-active {
  color: var(--ink-mid);
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link-active:hover {
  color: var(--green-600) !important;
}

.custom-navbar .nav-link-active {
  color: var(--green-400) !important;
}

.custom-navbar.scrolled .nav-link-active {
  color: var(--green-700) !important;
}

.custom-navbar .dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
  padding: 0.5rem;
  min-width: 220px;
  margin-top: 0.5rem;
}

.custom-navbar .dropdown-item {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.custom-navbar .dropdown-item:hover {
  background: var(--green-50);
  color: var(--green-700);
  padding-left: 1.3rem;
}

.mobile-toggler {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 44px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  position: relative;
}

.custom-navbar.scrolled .mobile-toggler {
  background: var(--green-50);
  border-color: var(--border);
}

.mobile-toggler-icon,
.mobile-toggler-icon::before,
.mobile-toggler-icon::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.custom-navbar.scrolled .mobile-toggler-icon,
.custom-navbar.scrolled .mobile-toggler-icon::before,
.custom-navbar.scrolled .mobile-toggler-icon::after {
  background: var(--ink);
}

.mobile-toggler-icon {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-toggler-icon::before {
  top: -7px;
}

.mobile-toggler-icon::after {
  top: 7px;
}

.offcanvas.offcanvas-top {
  height: auto;
  max-height: 50vh;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.offcanvas-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.offcanvas-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

.offcanvas-body {
  padding: 1rem 1.5rem 2rem;
}

#mobileOffcanvas .nav-link {
  color: var(--green-700) !important;
  font-weight: 600;
}

#mobileOffcanvas .nav-link:hover {
  color: var(--green-500) !important;
}

#mobileOffcanvas .dropdown-item {
  color: var(--ink-mid);
}

.close-float {
  width: 38px;
  height: 38px;
  background: var(--green-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--green-700);
  cursor: pointer;
  transition: 0.2s;
}

.close-float:hover {
  background: var(--green-100);
  transform: scale(1.05);
}

/* PAGE BANNER */
.page-banner {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-900);
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/sincerely-media-4dSXcNTyXaI-unsplash.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.8);
  transform: scale(1.04);
  transition: transform 10s ease;
}

.page-banner:hover .page-banner-bg {
  transform: scale(1.07);
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 40, 0, 0.5) 0%, rgba(0, 15, 0, 0.2) 50%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.page-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.page-banner-eyebrow::before,
.page-banner-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--green-400);
}

.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 1.5rem;
}

.page-banner h1 em {
  font-style: italic;
  color: var(--green-400);
}

.breadcrumb-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 0.45rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
}

.breadcrumb-wrap a {
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb-wrap a:hover {
  color: var(--green-400);
}

.breadcrumb-wrap .sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-wrap .current {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* SECTION UTILITY */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-600);
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.section-heading span {
  color: var(--green-700);
}

.section-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ABOUT INTRO */
.about-intro-section {
  padding: 100px 0 60px;
  background: var(--white);
}

.intro-company-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.intro-company-name strong {
  color: var(--green-700);
}

.intro-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--green-600);
  margin-bottom: 1.5rem;
}

.intro-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 1.5rem auto 2rem;
  max-width: 260px;
}

.intro-divider::before,
.intro-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.intro-divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--green-600);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.intro-lead {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto;
}

/* PILLARS */
.pillars-section {
  padding: 60px 0 100px;
  background: var(--surface);
  position: relative;
}

.pillars-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23006400' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-700), var(--green-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card-bg-char {
  position: absolute;
  bottom: -12px;
  right: 1rem;
  font-family: var(--font-sans);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(0, 100, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
  user-select: none;
}

.pillar-card:hover .pillar-card-bg-char {
  color: rgba(0, 100, 0, 0.07);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}

.pillar-card:hover .pillar-icon {
  background: var(--green-700);
  border-color: var(--green-700);
}

.pillar-icon i {
  font-size: 1.3rem;
  color: var(--green-700);
  transition: color 0.3s;
}

.pillar-card:hover .pillar-icon i {
  color: var(--white);
}

.pillar-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.5rem;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.pillar-card p {
  font-family: var(--font-sans);
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin: 0;
}

/* Featured card */
.pillar-featured {
  grid-column: 1 / -1;
  background: var(--green-900);
  border-color: transparent;
  text-align: center;
  padding: 3.5rem 2rem;
}

.pillar-featured::before {
  background: linear-gradient(90deg, var(--green-400), var(--green-500), var(--green-400));
}

.pillar-featured .pillar-icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  margin: 0 auto 1.25rem;
}

.pillar-featured .pillar-icon i {
  color: var(--green-400);
}

.pillar-featured:hover .pillar-icon {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
}

.pillar-featured:hover .pillar-icon i {
  color: var(--green-400);
}

.pillar-featured .pillar-label {
  color: var(--green-400);
  display: flex;
  justify-content: center;
}

.pillar-featured .pillar-label::before {
  background: var(--green-400);
}

.pillar-featured h3 {
  color: var(--white);
}

.pillar-featured .quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.pillar-featured:hover {
  transform: none;
  box-shadow: none;
}

/* SERVICES */
#services {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-700), var(--green-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--green-700);
  border-color: var(--green-700);
}

.service-icon i {
  font-size: 1.4rem;
  color: var(--green-700);
  transition: color 0.3s;
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h5 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ink-muted);
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  letter-spacing: 0.03em;
  transition: gap 0.2s;
}

.service-link::after {
  content: "→";
  transition: transform 0.2s;
}

.service-card:hover .service-link {
  gap: 10px;
}

.service-card:hover .service-link::after {
  transform: translateX(2px);
}

/* CALL TO ACTION */
.call-to-action {
  padding: 100px 0;
  background: var(--green-900);
  position: relative;
  overflow: hidden;
}

.call-to-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(46, 158, 46, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 100, 0, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.cta-heading span {
  color: var(--green-400);
}

.cta-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 0 auto 3rem;
  max-width: 900px;
}

.benefit {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all 0.3s;
}

.benefit:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(74, 181, 74, 0.3);
  transform: translateY(-4px);
}

.benefit i {
  font-size: 1.8rem;
  color: var(--green-400);
  display: block;
  margin-bottom: 0.85rem;
}

.benefit p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-600);
  color: var(--white) !important;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.cta-btn::after {
  content: "→";
  transition: transform 0.3s;
}

.cta-btn:hover {
  background: var(--green-500);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 100, 0, 0.4);
}

.cta-btn:hover::after {
  transform: translateX(4px);
}

/* BRAND STRIP + FOOTER */
.brand-strip {
  background: var(--green-50);
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--green-100);
  padding: 1.25rem;
  text-align: center;
}

.brand-strip p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--green-700);
  margin: 0;
}

.brand-strip i {
  margin-right: 0.5rem;
  color: var(--green-500);
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2.5rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-700), var(--green-400), var(--green-700));
}

.footer h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a.active {
  color: var(--green-400);
}

.footer .contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.6rem;
}

.footer .contact-info i {
  color: var(--green-400);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer .contact-info a {
  color: rgba(255, 255, 255, 0.55);
}

.footer .contact-info a:hover {
  color: var(--green-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

#back-top-wrapper {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  display: none;
}

.back-to-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green-700);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.back-to-top-btn:hover {
  background: var(--green-600);
  transform: translateY(-3px);
}

/* PRELOADER */
.preloader {
  position: fixed !important;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  background: var(--white);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-logo {
  width: 100px;
  animation: pulse 1.5s infinite;
  filter: none !important;
}

.preloader-bar {
  width: 80px;
  height: 2px;
  background: var(--green-100);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: var(--green-600);
  animation: bar-slide 1.2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .75
  }

  50% {
    transform: scale(1.06);
    opacity: 1
  }
}

@keyframes bar-slide {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(350%)
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar-featured {
    grid-column: 1;
  }

  .cta-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .page-banner {
    height: 44vh;
    min-height: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer .row {
    flex-direction: column;
  }

  .footer [class*="col-"] {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .cta-benefits {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  .logo-dark {
    max-height: 52px;
  }
}
    .custom-navbar .nav-btn {
        display: inline-flex;
        align-items: center;
        background: var(--green-600);
        color: var(--white) !important;
        font-family: var(--font-sans);
        font-weight: 600;
        font-size: 0.95rem;
        padding: 0.6rem 1.4rem;
        border-radius: var(--radius-sm);
        transition: all 0.3s ease;
        margin-left: 0.5rem;
    }
    .custom-navbar .nav-btn:hover {
        background: var(--green-500);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 100, 0, 0.2);
    }
    #mobileOffcanvas .nav-btn {
        display: inline-block;
        background: var(--green-600);
        color: var(--white) !important;
        text-align: center;
        padding: 0.75rem;
        border-radius: var(--radius-sm);
        margin-top: 1rem;
        font-weight: 600;
    }
