/* ============================================================
   SGG DESIGN SYSTEM — Smart Green Group
   Natural Earth × Bold Typography × Clean Minimal
   ============================================================ */
:root {
  --green-900: #0a2e14;
  --green-800: #133d1e;
  --green-700: #1a5228;
  --green-600: #217a3c;
  --green-500: #28a84f;
  --green-400: #4dc472;
  --green-300: #86d9a0;
  --green-100: #e8f7ed;
  --green-50:  #f2fbf5;
  --primary-color: #217a3c;
  --secondary-color: #28a84f;
  --earth-700: #4a3728;
  --earth-500: #8b6b4a;
  --earth-200: #d4b896;
  --earth-50:  #faf6f0;

  --accent:    #f0a500;
  --accent-dk: #c98400;

  --dark:   #0d1b0f;
  --body:   #3d4f42;
  --muted:  #7a9180;
  --light:  #f4f8f5;
  --white:  #ffffff;
  --border: #d8e8dc;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 8px rgba(10,46,20,.08);
  --shadow-md: 0 8px 30px rgba(10,46,20,.12);
  --shadow-lg: 0 20px 60px rgba(10,46,20,.18);
  --shadow-glow: 0 0 40px rgba(40,168,79,.25);

  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .6s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; color: var(--dark); line-height: 1.2; }

/* ── Scroll progress ── */
#scroll-line {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--green-500), var(--accent));
  z-index: 99999; transition: width .12s;
}

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0; background: var(--green-900);
  display: flex; align-items: center; justify-content: center;
  z-index: 99998; transition: opacity .5s, visibility .5s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-logo {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.pre-logo svg { animation: pre-spin 2s ease-in-out infinite; }
@keyframes pre-spin {
  0%,100%{ transform: scale(1) rotate(0deg); }
  50%{ transform: scale(1.1) rotate(180deg); }
}
.pre-dots { display: flex; gap: 8px; }
.pre-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-400); opacity: .4;
  animation: dot-blink 1.4s ease-in-out infinite;
}
.pre-dot:nth-child(2){ animation-delay: .2s; }
.pre-dot:nth-child(3){ animation-delay: .4s; }
@keyframes dot-blink { 0%,80%,100%{ opacity:.2; transform:scale(.8); } 40%{ opacity:1; transform:scale(1); } }

/* ── Top Bar ── */
.top-bar {
  background: var(--green-900);
  padding: 8px 0;
  position: relative; z-index: 101;
}
.top-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.top-bar-contacts { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar-contacts a {
  color: rgba(255,255,255,.7); font-size: 13px;
  display: flex; align-items: center; gap: 6px;
}
.top-bar-contacts a i { color: var(--green-400); }
.top-bar-contacts a:hover { color: #fff; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.social-strip { display: flex; gap: 10px; }
.social-strip a {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 13px;
}
.social-strip a:hover { background: var(--green-600); color: #fff; }

/* ── Header ── */
.site-header {
  background: #fff;
  padding: 0 20px;
  position: relative; z-index: 100;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-sm);
}
.site-header.sticky {
  position: fixed; top: 0; left: 0; right: 0;
  animation: header-in .4s ease forwards;
  box-shadow: var(--shadow-md);
}
@keyframes header-in {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
.header-inner {
  display: flex; align-items: center;
  height: 72px; gap: 30px;justify-content: space-between;
}
.site-logo { flex-shrink: 0; }
.site-logo img { height: 48px; width: auto; }
.logo-text {
  font-family: var(--font-display); font-weight: 800;
  font-size: 20px; color: var(--green-700); line-height: 1;
}
.logo-text span { color: var(--accent); }
.logo-sub { font-size: 11px; color: var(--muted); letter-spacing: .5px; }
.logo-green{
filter: brightness(0) saturate(100%) invert(32%) sepia(29%) saturate(1022%) hue-rotate(98deg) brightness(92%) contrast(89%);
}

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: 4px; align-items: center; }
.nav-list > li > a {
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--dark); display: flex; align-items: center; gap: 5px;
}
.nav-list > li > a:hover,
.nav-list > li.active > a { color: var(--green-600); background: var(--green-50); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Language switcher */
.lang-switch { display: flex; background: var(--light); border-radius: var(--radius-pill); padding: 3px; }
.lang-switch a {
  padding: 5px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; color: var(--muted);
  font-family: var(--font-display);
}
.lang-switch a.active { background: var(--green-600); color: #fff; box-shadow: var(--shadow-sm); }
.lang-switch a:hover:not(.active) { color: var(--green-600); }

/* CTA Button */
.btn-cta {
  background: var(--green-600);
  color: #fff; border: none; cursor: pointer;
  padding: 10px 22px; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(33,122,60,.3);
  transition: var(--transition);
}
.btn-cta:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(33,122,60,.4); color: #fff; }
.btn-cta-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  padding: 10px 22px; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); cursor: pointer;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }

/* Mobile toggle */
.mobile-btn {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.mobile-btn span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 9999; visibility: hidden;
}
.mobile-drawer.open { visibility: visible; }
.mobile-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,46,20,.7); backdrop-filter: blur(4px);
  opacity: 0; transition: var(--transition);
}
.mobile-drawer.open .mobile-backdrop { opacity: 1; }
.mobile-panel {
  position: absolute; top: 0; left: -320px; width: 300px; height: 100%;
  background: #fff; overflow-y: auto;
  transition: left .4s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
}
.mobile-drawer.open .mobile-panel { left: 0; }
.mobile-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid var(--border);
}
.mobile-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--dark); }
.mobile-nav-list { padding: 16px; }
.mobile-nav-list li { border-bottom: 1px solid var(--border); }
.mobile-nav-list a { display: block; padding: 14px 8px; font-weight: 600; font-family: var(--font-display); color: var(--dark); }
.mobile-nav-list a:hover { color: var(--green-600); }

/* ── Sections ── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-100); color: var(--green-700);
  padding: 6px 16px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  font-family: var(--font-display); text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(28px,4vw,42px); font-weight: 800; margin-bottom: 16px; }
.section-desc { color: var(--muted); font-size: 16px; max-width: 560px; line-height: 1.8; }

/* ── Hero Slider ── */
.hero-swiper { position: relative;}
.hero-slide {
  min-height: 92vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,46,20,.88) 0%, rgba(19,61,30,.7) 50%, rgba(10,46,20,.4) 100%);
  opacity: 0.7;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: radial-gradient(circle, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 20px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
  color: rgba(255,255,255,.9);
}
.hero-badge i { color: var(--green-400); }
.hero-title {
  font-size: clamp(36px,5.5vw,68px); font-weight: 800;
  line-height: 1.05; margin-bottom: 20px; letter-spacing: -.5px;
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 17px; opacity: .85; margin-bottom: 36px; line-height: 1.8;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.6);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-family: var(--font-display);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform:translateX(-50%) translateY(0); } 50%{ transform:translateX(-50%) translateY(8px); } }

/* Swiper nav */
.swiper-slide .hero-slide .container {position:relative;z-index:2;padding-top:80px;padding-bottom:80px}
.hero-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,.4); opacity: 1; width: 8px; height: 8px;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--accent); width: 28px; border-radius: 4px;
}
.swiper-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  color: #fff; font-size: 18px; transition: var(--transition);
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
}
.swiper-btn:hover { background: var(--green-600); border-color: transparent; }
.swiper-btn-prev { left: 24px; }
.swiper-btn-next { right: 24px; }

/* ── Services Cards ── */
.services-section { background: var(--light); }
.service-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 38px 32px; height: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--green-300); }
.service-card:hover::before { transform: scaleX(1); }
.service-tag {
  display: inline-block; background: var(--green-900); color: var(--green-400);
  font-family: var(--font-display); font-size: 22px; font-weight: 900;
  padding: 6px 14px; border-radius: var(--radius-sm); margin-bottom: 20px;
  letter-spacing: -.5px;
}
.service-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.service-full { font-size: 13px; color: var(--green-600); font-weight: 600; margin-bottom: 16px; }
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.8; }
.service-icon-row { display: flex; gap: 8px; margin-top: 24px; }
.service-chip {
  padding: 4px 12px; border-radius: var(--radius-pill);
  background: var(--green-100); color: var(--green-700);
  font-size: 11px; font-weight: 700; font-family: var(--font-display);
}

/* ── About ── */
.about-section { background: #fff; }
.about-img-wrap { position: relative; }
.about-img-main:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.about-img-main {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green-900); color: #fff;
  padding: 24px 28px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-lg);
}
.about-badge-float .num { font-family: var(--font-display); font-size: 40px; font-weight: 900; color: var(--green-400); line-height: 1; }
.about-badge-float .lbl { font-size: 12px; opacity: .7; margin-top: 4px; }
.about-content { padding-left: 60px; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--earth-50); border: 1px solid var(--earth-200);
  padding: 10px 18px; border-radius: var(--radius-md);
  margin-bottom: 28px; font-size: 13px; color: var(--earth-700); font-weight: 600;
}
.cert-badge i { color: var(--accent); font-size: 18px; }
.feature-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--green-100); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon i { color: var(--green-600); font-size: 20px; }
.feature-text h6 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.feature-text p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── Stats ── */
.stats-section {
  background: var(--green-900);
  position: relative; overflow: hidden;
  padding: 80px 0;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;
}
.stat-item { text-align: center; position: relative; }
.stat-num {
  font-family: var(--font-display); font-size: 58px; font-weight: 900;
  color: #fff; line-height: 1; display: block;
}
.stat-num sup { font-size: 28px; color: var(--accent); vertical-align: top; margin-top: 8px; }
.stat-lbl { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 8px; font-weight: 500; }
.stat-divider {
  width: 1px; height: 80px; background: rgba(255,255,255,.12);
  margin: 0 auto; display: none;
}
@media (max-width: 980px) {
  .stat-num{
    font-size: 35px!important;
  }
}


/* ── Recycle Grid ── */
.recycle-section { background: var(--earth-50); }
.recycle-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition); height: 100%;
}
.recycle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.recycle-img { height: 200px; overflow: hidden; }
.recycle-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.recycle-card:hover .recycle-img img { transform: scale(1.06); }
.recycle-body { padding: 24px; }
.recycle-body h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.recycle-body p { font-size: 13px; color: var(--muted); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(120deg, var(--green-700) 0%, var(--green-600) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}

/* ── Contact ── */
.contact-section { background: var(--light); }
.contact-form-card {
  background: #fff; border-radius: var(--radius-xl);
  padding: 50px 44px; box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 7px; font-family: var(--font-display); }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-family: var(--font-body); color: var(--dark);
  background: var(--white); transition: var(--transition);
}
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(40,168,79,.1); }
.form-field textarea { resize: vertical; min-height: 257px; }
.contact-info-card {
  background: var(--green-900); border-radius: var(--radius-xl);
  padding: 44px 38px; color: #fff; height: 100%;
}
.contact-info-card h3 { font-size: 24px; margin-bottom: 30px; color: #4dc472;}
.info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,.08); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.info-icon i { color: var(--green-400); font-size: 18px; }
.info-label { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.info-val { font-size: 14px; color: rgba(255,255,255,.9); line-height: 1.6; }
.info-val a { color: var(--green-400); }
.info-val a:hover { color: var(--green-300);padding-left: 5px; }
.form-alert {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 14px; margin-top: 14px; display: none;
}
.form-alert.ok  { background: var(--green-100); color: var(--green-700); border-left: 3px solid var(--green-500); }
.form-alert.err { background: #fde8e8; color: #991b1b; border-left: 3px solid #ef4444; }

/* ── Subscribe ── */
.subscribe-section {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
  padding: 80px 0;
}
.sub-form { display: flex; max-width: 480px; }
.sub-form input {
  flex: 1; padding: 14px 20px;
  border: none; border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  font-size: 15px; font-family: var(--font-body);
  outline: none;
}
.sub-form button {
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  padding: 14px 28px; border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  white-space: nowrap; transition: var(--transition);
}
.sub-form button:hover { background: var(--accent-dk); }
#sub-msg { margin-top: 12px; font-size: 14px; display: none; }

/* ── Footer ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.65); }
.footer-brand { margin-bottom: 24px; }
.footer-brand .logo-text { color: #fff; }
.footer-desc { font-size: 14px; line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
.footer-h { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 18px; letter-spacing: .5px; text-transform: uppercase; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 7px; }
.footer-links a i { font-size: 10px; color: var(--green-400); }
.footer-links a:hover { color: var(--green-400);    padding-left: 5px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item i { color: var(--green-400); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--green-400);  padding-left: 5px;}
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.fsocial-btn {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  transition: var(--transition);
}
.fsocial-btn:hover { background: var(--green-600); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0; margin-top: 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; margin-bottom: 0!important;}
.footer-policy a { color: rgba(255,255,255,.4); font-size: 12px; }
.footer-policy a:hover { color: var(--green-400); padding-left: 5px;}
@media (max-width: 767px) {.footer-bottom {justify-content: space-around;}}

/* ── Back to top ── */
#back-top {
  position: fixed; bottom: 28px; right: 28px!important;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-600); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; z-index: 999;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: var(--transition); box-shadow: var(--shadow-md);
}
#back-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#back-top:hover { background: var(--green-700); transform: translateY(-3px); }

/* ── AOS overrides ── */
[data-aos] { pointer-events: none !important; }
[data-aos].aos-animate { pointer-events: auto !important; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .main-nav { display: none; }
  .mobile-btn { display: flex; }
  .about-content { padding-left: 0; margin-top: 40px; }
  .contact-info-card { margin-top: 30px; height: auto; }
  .sub-form { max-width: 100%; }
  .swiper-btn { display: none; }
}
@media (max-width: 767px) {
  .hero-swiper, .hero-slide { min-height: 75vh; }
  .hero-title { font-size: 32px; }
  .section { padding: 70px 0; }
  .contact-form-card { padding: 30px 22px; }
  .about-badge-float { position: relative; right: auto; bottom: auto; display: inline-block; margin-top: 20px; }
  .stat-num { font-size: 40px; }
  .top-bar-contacts { display: none; }
}
@media (max-width: 576px) {
  .hero-btns { flex-direction: column; }
  .swiper-slide .hero-slide .container {position:relative;z-index:2;}
  .hero-content .aos-init .aos-animate {}

  .sub-form { flex-direction: column; border-radius: var(--radius-md); overflow: hidden; }
  .sub-form input { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .sub-form button { border-radius: 0 0 var(--radius-md) var(--radius-md); padding: 13px; }
}

.stats-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/slideshow-eco-4.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.counter {
    height: 269px;
    width: 269px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #e6e6e6;
    border: 1px solid rgba(255, 255, 255, .18);
}

@media (max-width: 980px) {
    .counter {
        height: 94px;
        width: 94px;
        flex-direction: column;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.counter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 22px;
    max-width: 1200px;
    width: 100%;
}


.cta {
    position: relative;
    text-align: center;
    background: #fff url("../img/eco.webp") 50% 0;
    background-size: cover;
    border-top: 0px solid #fff;
    border-bottom: 0px solid #fff;
    padding: 180px 0 180px 0;
    background-attachment: fixed !important;
    position: static;
}

.legal-content {
    white-space: pre-line;
    line-height: 1.8;
}




/*   PARTNERS- SLIDE   */

.partners-slider-section {
    padding: 60px 18px;
    background: #f8f9fa;
    display: flex;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    justify-content: space-around;
    text-align: center;
}

.partner-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.partners-slider-section .sub {
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}

.partners-slider-section .title {
    margin: 0 0 8px;
    text-transform: uppercase;
}


/* Slider */

.ps-wrap {
    --gap: 56px;
    --h: 360px;
    --perView: 3;
}

.ps-viewport {
    overflow: hidden;
    width: 100%;
}

.ps-track {
    display: flex;
    gap: 56px;
    will-change: transform;
    animation: ps-marquee var(--ps-duration, 20s) linear infinite;
}

.ps-wrap:hover .ps-track {
    animation-play-state: paused;
}

.ps-slide {
    flex: 0 0 calc((100% - var(--gap) * (var(--perView) - 1)) / var(--perView));
    display: grid;
    place-items: center;
}

.ps-card {
    width: 100%;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    display: grid;
    place-items: center;
    padding: 14px;
}

.ps-imgbox {
    width: 100%;
    height: 360px;
    display: grid;
    place-items: center;
}

.ps-imgbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes ps-marquee {
    to {
        transform: translateX(var(--ps-distance, -1000px));
    }
}

.a-link {
  color: green!important;
}
.legal-content h2 {
  font-size: 1.2rem!important;
}




 