/* ========================================
   ЕкоТех — Головний стиль (світла тема)
   ======================================== */

:root {
  --bg:         #f4f8f5;
  --bg2:        #eaf3ec;
  --bg3:        #ffffff;
  --green:      #1e9e52;
  --green-light:#27ae60;
  --green-dim:  #a8d8b9;
  --green-dark: #d4eddc;
  --metal:      #5a7a6a;
  --text:       #2c3e34;
  --text-muted: #6b8c78;
  --white:      #ffffff;
  --accent:     #1e9e52;
  --border:     rgba(30,158,82,0.2);
  --border-hard:rgba(30,158,82,0.35);
  --shadow:     0 4px 24px rgba(30,80,50,0.10);
  --shadow-md:  0 8px 40px rgba(30,80,50,0.14);
  --radius:     8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 1.2rem;
}

a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: #146e38; }

.container {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 32px;
}

.accent { color: var(--accent); }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(30,80,50,0.12); }

.nav-inner {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; color: var(--green);
  letter-spacing: 2px;
}
/* Логотип — розмір регулюється тут */
.logo-svg {
  height: 44px;       /* ← змінюйте цей рядок для зміни розміру у навбарі */
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo-svg--footer {
  height: 36px;       /* ← розмір у футері */
  filter: brightness(0) invert(1) opacity(0.7);
}
.logo:hover { color: #146e38; }
.logo:hover .logo-svg { opacity: 0.85; }

.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  color: var(--text-muted); font-weight: 600;
  font-size: 0.88rem; letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--green);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 26px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: 0.3s;
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
  position: relative;
  width: 80%;
  margin: 68px auto 0;
  height: 540px;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow-md);
}

.slides-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77,0,0.175,1);
}

.slide {
  min-width: 100%; height: 100%;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 52px 64px;
  background-size: cover; background-position: center;
}

/* Slide backgrounds */
.slide-1 {
  background: linear-gradient(135deg, #1a5c30 0%, #27ae60 45%, #1e7a42 75%, #0f3d20 100%);
}
.slide-2 {
  background: linear-gradient(135deg, #1a4a6e 0%, #2980b9 45%, #1a6090 75%, #0d2e45 100%);
}
.slide-3 {
  background: linear-gradient(135deg, #5c6e1a 0%, #8fae27 45%, #6a7e1e 75%, #3a4510 100%);
}

/* About slides */
.slide-about-1 {
  background: linear-gradient(135deg, #1a6e3a 0%, #27ae60 45%, #1e8a48 75%, #0f4025 100%);
}
.slide-about-2 {
  background: linear-gradient(135deg, #3a5c1a 0%, #6aae27 45%, #508a1e 75%, #2a3d0f 100%);
}
.slide-about-3 {
  background: linear-gradient(135deg, #1a3a6e 0%, #2750b9 45%, #1a4090 75%, #0d1e45 100%);
}

/* Pattern overlay */
.slide::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 75% 25%, rgba(255,255,255,0.14) 0%, transparent 55%),
    repeating-linear-gradient(45deg, transparent, transparent 48px, rgba(255,255,255,0.04) 48px, rgba(255,255,255,0.04) 50px);
}

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,30,16,0.70) 0%, rgba(10,30,16,0.10) 55%, transparent 100%);
}

.slide-content { position: relative; z-index: 2; max-width: 600px; }

.slide-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #d4f5e2;
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 3px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.slide-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff; line-height: 1.05;
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.25);
}

.slide-content p {
  font-size: 1rem; color: rgba(255,255,255,0.88); line-height: 1.6;
  margin-bottom: 28px; max-width: 480px;
}

.slide-counter-label {
  position: absolute; top: 26px; right: 26px; z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; color: rgba(255,255,255,0.35); letter-spacing: 2px;
}

/* Dots */
.slider-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.dot.active { background: #fff; width: 44px; }

/* Arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4); color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; transition: 0.2s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(255,255,255,0.38); }
.arrow-prev { left: 16px; }
.arrow-next { right: 16px; }

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 13px 32px; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(30,158,82,0.28);
}
.btn-primary:hover {
  background: #146e38; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,158,82,0.35);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--green);
  color: var(--green);
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 11px 30px; border-radius: var(--radius);
  transition: 0.2s; background: transparent;
}
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-full { width: 100%; text-align: center; }

/* ========================================
   SECTIONS — shared
   ======================================== */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--text); line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.section-title.center { text-align: center; }
.section-sub {
  font-size: 1rem; color: var(--text-muted);
  margin-bottom: 44px;
}
.section-sub.center { text-align: center; }

/* ========================================
   INTRO / HOME
   ======================================== */
.intro-section {
  padding: 80px 0;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.intro-text p { color: var(--text); line-height: 1.75; margin-bottom: 16px; font-size: 0.97rem; }
.intro-text .btn-outline { margin-top: 12px; }

.intro-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.stat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem; color: var(--green); line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ========================================
   ACCEPT SECTION
   ======================================== */
.accept-section { padding: 80px 0; background: var(--bg); }
.accept-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.accept-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: 0.25s;
  box-shadow: var(--shadow);
}
.accept-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.accept-icon { font-size: 2.2rem; margin-bottom: 14px; }
.accept-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.accept-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--green) 0%, #146e38 100%);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; color: #fff; margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,0.82); font-size: 1rem; }
.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-section .btn-primary {
  background: #fff; color: var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.cta-section .btn-primary:hover { background: #eafbf1; color: #146e38; }
.cta-section .btn-outline { border-color: rgba(255,255,255,0.7); color: #fff; }
.cta-section .btn-outline:hover { background: rgba(255,255,255,0.18); }

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-desc { margin-bottom: 0; }
.about-desc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 32px; }
.about-desc-grid p { color: var(--text); line-height: 1.75; margin-bottom: 16px; font-size: 0.97rem; }

/* Process */
.process-section { padding: 80px 0; background: var(--bg); }
.process-steps {
  display: flex; align-items: flex-start;
  overflow-x: auto; padding-bottom: 16px;
  margin-top: 48px;
}
.process-step {
  flex: 1; min-width: 160px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.25s;
}
.process-step:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-arrow {
  padding: 0 8px; color: var(--green-dim);
  font-size: 1.6rem; align-self: center; flex-shrink: 0;
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; color: var(--green);
  margin-bottom: 8px;
}
.process-step h3 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.process-step p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* Services */
.services-section { padding: 80px 0; background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative; overflow: hidden;
  transition: 0.25s;
  box-shadow: var(--shadow);
}
.service-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem; color: rgba(30,158,82,0.07);
  position: absolute; top: 4px; right: 14px;
  line-height: 1;
}
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.service-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.service-card ul { list-style: none; }
.service-card ul li {
  font-size: 0.82rem; color: var(--text-muted); padding: 4px 0;
  padding-left: 18px; position: relative;
}
.service-card ul li::before {
  content: '✓'; position: absolute; left: 0; color: var(--green); font-size: 0.78rem; font-weight: 700;
}

/* Certificates */
.cert-section { padding: 60px 0; background: var(--bg3); border-top: 1px solid var(--border); }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.cert-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  transition: 0.2s; box-shadow: var(--shadow);
}
.cert-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cert-icon { font-size: 2rem; margin-bottom: 12px; }
.cert-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.cert-card p { font-size: 0.8rem; color: var(--text-muted); }

/* ========================================
   PAGE HERO (Contacts)
   ======================================== */
.page-hero {
  position: relative;
  width: 80%; margin: 68px auto 0;
  height: 540px;
  background: linear-gradient(135deg, #1a6e3a 0%, #27ae60 50%, #1a5030 100%);
  display: flex; align-items: center;
  padding: 0 64px;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 48px, rgba(255,255,255,0.05) 48px, rgba(255,255,255,0.05) 50px);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,40,20,0.45) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem); color: #fff;
  line-height: 1; margin: 12px 0 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.page-hero-content p { font-size: 1rem; color: rgba(255,255,255,0.88); max-width: 500px; }

/* ========================================
   CONTACTS PAGE
   ======================================== */
.contacts-section { padding: 80px 0; background: var(--bg3); }
.contacts-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }

.contacts-info .section-title { margin-bottom: 28px; }

.contact-block {
  display: flex; gap: 16px;
  margin-bottom: 28px; align-items: flex-start;
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-block strong { display: block; color: var(--text); font-size: 0.82rem; font-weight: 700; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-block p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin: 0; }
.contact-block p a { color: var(--text); }
.contact-block p a:hover { color: var(--green); }

.social-links { display: flex; gap: 10px; margin-top: 12px; }
.social-link {
  width: 42px; height: 42px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-muted);
  transition: 0.2s;
}
.social-link:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* Form */
.form-wrapper .section-title { margin-bottom: 8px; }
.form-note { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid #c8dfd0;
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,158,82,0.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #fff; }

/* Captcha */
.captcha-block {
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
}
.captcha-block label { font-size: 0.88rem; color: var(--text-muted); display: block; margin-bottom: 10px; }
.captcha-question { color: var(--green); font-weight: 700; }
.captcha-row { display: flex; gap: 10px; align-items: center; }
.captcha-row input {
  flex: 1; background: var(--bg3); border: 1.5px solid #c8dfd0;
  border-radius: var(--radius); color: var(--text); padding: 10px 14px;
  font-family: 'Exo 2', sans-serif; font-size: 0.95rem; outline: none;
  transition: border-color 0.2s;
}
.captcha-row input:focus { border-color: var(--green); }
.captcha-refresh {
  background: var(--green-dark); border: 1.5px solid var(--border);
  color: var(--green); border-radius: var(--radius);
  width: 40px; height: 40px; font-size: 1.1rem; cursor: pointer; transition: 0.2s;
}
.captcha-refresh:hover { background: var(--green); color: #fff; }
.captcha-error { font-size: 0.8rem; color: #c0392b; display: block; margin-top: 6px; }

/* Consent */
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.83rem; color: var(--text-muted); }
.form-consent input[type="checkbox"] { margin-top: 2px; accent-color: var(--green); width: 16px; height: 16px; flex-shrink: 0; }

/* Alerts */
.form-success {
  background: #eafaf2; border: 1.5px solid rgba(30,158,82,0.35);
  border-radius: var(--radius); padding: 16px 20px;
  color: #146e38; font-size: 0.95rem;
}
.form-error {
  background: #fdf0f0; border: 1.5px solid rgba(192,57,43,0.3);
  border-radius: var(--radius); padding: 16px 20px;
  color: #c0392b; font-size: 0.95rem;
}

/* Map */
.map-section { padding: 60px 0 0; background: var(--bg); }
.map-section .section-sub { margin-bottom: 28px; }
.map-container {
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.map-container iframe { display: block; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #1c3328;
  padding: 48px 0 24px;
}
.footer-inner {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: start; gap: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-brand .logo-svg { height: 36px; width: auto; filter: brightness(0) invert(1) opacity(0.75); }
.footer-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: #fff; letter-spacing: 2px; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 4px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.footer-links a:hover { color: var(--green-dim); }
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.3); align-self: end; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
  .container, .nav-inner { max-width: 94%; padding: 0 24px; }
  .hero-slider, .page-hero { width: 94%; }
}

@media (max-width: 960px) {
  .hero-slider, .page-hero { width: 100%; border-radius: 0; }
  .container, .nav-inner { max-width: 100%; padding: 0 20px; }
  .intro-grid, .about-desc-grid, .contacts-grid { grid-template-columns: 1fr; }
  .accept-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); align-self: center; }
  .cta-inner { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .burger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .hero-slider { height: 420px; }
  .slide { padding: 36px 24px; }
  .page-hero { padding: 0 24px; height: 420px; }
  .accept-grid, .services-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
}

/* ========================================
   ДИНАМІЧНИЙ ДИЗАЙН — CONTACTS PAGE
   ======================================== */

/* --- Keyframes --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatParticle {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0.7; }
  33%  { transform: translateY(-28px) translateX(14px) scale(1.15); opacity: 1; }
  66%  { transform: translateY(-14px) translateX(-10px) scale(0.9); opacity: 0.8; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.7; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(30,158,82,0.25); }
  50%       { box-shadow: 0 0 0 10px rgba(30,158,82,0); }
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-7px); }
  60%       { transform: translateY(-3px); }
}
@keyframes scanLine {
  0%   { transform: translateY(-100%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(400px); opacity: 0; }
}
@keyframes borderPulse {
  0%, 100% { border-color: rgba(30,158,82,0.2); }
  50%       { border-color: rgba(30,158,82,0.6); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes ripple {
  0%   { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(2.8); opacity: 0; }
}
@keyframes countUp {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* --- Page Hero — частинки та parallax --- */
.page-hero {
  overflow: hidden;
  background: linear-gradient(120deg, #1a6e3a 0%, #27ae60 40%, #1e9e52 60%, #1a5030 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

/* Плаваючі частинки */
.page-hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  animation: floatParticle var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

/* Scan line ефект на hero */
.page-hero-scan {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  z-index: 2; pointer-events: none;
  animation: scanLine 4s linear infinite;
  animation-delay: 1s;
}

/* Hero контент — animate in */
.page-hero-content {
  animation: fadeInLeft 0.85s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.15s;
}
.page-hero-content .slide-badge {
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.3s;
}
.page-hero-content h1 {
  animation: fadeInUp 0.7s ease both;
  animation-delay: 0.45s;
}
.page-hero-content p {
  animation: fadeInUp 0.7s ease both;
  animation-delay: 0.6s;
}

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Стаггер для дочірніх елементів */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.05s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.15s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.25s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.35s; }

/* --- Contact blocks — hover glow --- */
.contact-block {
  position: relative;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.contact-block:hover {
  background: linear-gradient(120deg, rgba(30,158,82,0.06), rgba(30,158,82,0.02));
  border-color: rgba(30,158,82,0.3);
  box-shadow: 0 4px 24px rgba(30,158,82,0.10);
  transform: translateX(6px);
}

/* Іконки — pulse + bounce при hover */
.contact-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s;
  animation: pulseGlow 3s ease-in-out infinite;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg2);
}
.contact-block:hover .contact-icon {
  animation: iconBounce 0.6s ease;
  background: rgba(30,158,82,0.12);
}

/* Animated underline для посилань в контактах */
.contact-block p a {
  position: relative;
  display: inline-block;
}
.contact-block p a::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1.5px;
  background: var(--green);
  transition: width 0.3s ease;
}
.contact-block p a:hover::after { width: 100%; }

/* --- Social links --- */
.social-link {
  position: relative; overflow: hidden;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}
.social-link::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--green);
  transform: scale(0); border-radius: 50%;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  z-index: 0;
}
.social-link:hover::before { transform: scale(1); border-radius: var(--radius); }
.social-link:hover {
  color: #fff !important;
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 6px 20px rgba(30,158,82,0.35);
}
.social-link > * { position: relative; z-index: 1; }

/* --- Form — animated focus states --- */
.form-group input,
.form-group select,
.form-group textarea {
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s, background 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(30,158,82,0.12);
  transform: translateY(-1px);
  background: #fff;
}

/* Floating label ефект */
.form-group {
  position: relative;
}
.form-group label {
  transition: color 0.2s;
}
.form-group:focus-within label {
  color: var(--green);
}

/* --- Submit button --- */
.btn-primary.btn-full {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1e9e52 0%, #27ae60 50%, #1a8044 100%);
  background-size: 200% 200%;
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.3s;
  letter-spacing: 2px;
}
.btn-primary.btn-full::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  transition: transform 0.5s ease, opacity 0.5s;
  pointer-events: none;
}
.btn-primary.btn-full:active::after {
  transform: translate(-50%,-50%) scale(20);
  opacity: 0;
}
.btn-primary.btn-full:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30,158,82,0.40);
}

/* Shimmer на кнопці в стані лоадера */
#submitLoader {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  background-size: 400px 100%;
  animation: shimmer 1.5s infinite;
}

/* --- Captcha block --- */
.captcha-block {
  border-radius: 12px;
  background: linear-gradient(120deg, var(--bg2) 0%, #f0f8f4 100%);
  animation: borderPulse 3s ease-in-out infinite;
  transition: box-shadow 0.3s;
}
.captcha-block:hover {
  box-shadow: 0 4px 20px rgba(30,158,82,0.12);
}

/* --- Form success / error --- */
.form-success {
  animation: fadeInUp 0.5s ease both;
  border-left: 4px solid var(--green);
}
.form-error {
  animation: fadeInUp 0.5s ease both;
  border-left: 4px solid #c0392b;
}

/* --- Map section --- */
.map-container {
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s;
}
.map-container::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--green), #27ae60, var(--green));
  background-size: 200% 100%;
  animation: gradientShift 3s linear infinite;
  z-index: 5;
}
.map-container:hover { box-shadow: 0 -4px 40px rgba(30,158,82,0.15); }

/* --- Section title — animated accent --- */
.section-title .accent {
  position: relative;
  display: inline-block;
}
.section-title .accent::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible .section-title .accent::after,
.reveal.visible .section-title .accent::after { transform: scaleX(1); transition-delay: 0.4s; }

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.1ms !important;
  }
}

/* ========================================
   ДИНАМІЧНИЙ ДИЗАЙН — INDEX / ABOUT
   ======================================== */

/* Hero slider particles & scan */
.hero-particles {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero-scan {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.35), transparent);
  z-index: 3; pointer-events: none;
  animation: scanLine 5s linear infinite;
  animation-delay: 0.5s;
}

/* Slide content appear */
.slide-active .slide-content {
  animation: fadeInUp 0.75s cubic-bezier(0.22,1,0.36,1) both;
}
.slide-active .slide-badge {
  animation: fadeInUp 0.55s ease both;
  animation-delay: 0.1s;
}
.slide-active .slide-content h1 {
  animation: fadeInUp 0.65s ease both;
  animation-delay: 0.22s;
}
.slide-active .slide-content p {
  animation: fadeInUp 0.65s ease both;
  animation-delay: 0.36s;
}
.slide-active .slide-content .btn-primary {
  animation: fadeInUp 0.65s ease both;
  animation-delay: 0.48s;
}

/* Accept cards hover glow */
.accept-card {
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
}
.accept-card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 40px rgba(30,158,82,0.18);
}
.accept-icon {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  display: inline-block;
}
.accept-card:hover .accept-icon {
  transform: scale(1.25) rotate(-8deg);
}

/* Stat cards — pulse on hover */
.stat-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.stat-card:hover {
  box-shadow: 0 8px 32px rgba(30,158,82,0.20);
}
.stat-num {
  transition: color 0.3s, transform 0.3s;
}
.stat-card:hover .stat-num {
  transform: scale(1.08);
  color: #146e38;
}

/* Service cards tilt */
.service-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.service-card:hover {
  box-shadow: 0 16px 48px rgba(30,158,82,0.18);
}
.service-num {
  transition: color 0.4s, transform 0.4s;
}
.service-card:hover .service-num {
  color: rgba(30,158,82,0.18);
  transform: scale(1.05) translateX(4px);
}

/* Cert cards */
.cert-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.cert-card:hover {
  box-shadow: 0 10px 36px rgba(30,158,82,0.18);
}
.cert-icon {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  display: inline-block;
}
.cert-card:hover .cert-icon {
  transform: scale(1.3) rotate(10deg);
}

/* CTA section animated gradient */
.cta-section {
  background: linear-gradient(120deg, #1a6e3a 0%, #27ae60 40%, #1a9e52 60%, #146e38 100%);
  background-size: 200% 200%;
  animation: gradientShift 7s ease infinite;
}
.cta-section .btn-primary {
  position: relative; overflow: hidden;
}
.cta-section .btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}
.cta-section .btn-primary:hover::after {
  transform: translateX(120%) skewX(-15deg);
}

/* Process arrows animate */
.process-arrow {
  animation: pulseGlow 2.5s ease-in-out infinite;
  border-radius: 50%;
}

/* Footer hover links */
.footer-links a {
  position: relative;
  transition: color 0.25s, padding-left 0.25s;
}
.footer-links a:hover {
  padding-left: 8px;
  color: var(--green-dim);
}

/* ========================================
   UI/UX PRO MAX — AURORA + GLASSMORPHISM
   ======================================== */

/* ── Aurora background on body ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%,   rgba(30,158,82,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%,  rgba(39,174,96,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%,   rgba(30,158,82,0.03) 0%, transparent 70%);
  pointer-events: none;
  animation: auroraShift 12s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0%   { background-position: 0% 0%, 100% 100%, 50% 50%; opacity: 1; }
  50%  { background-position: 10% 5%,  90% 90%,  55% 45%; opacity: 0.85; }
  100% { background-position: 5% 10%, 95% 95%,  45% 55%; opacity: 1; }
}

/* ── Glassmorphism navbar upgrade ── */
.navbar {
  background: rgba(244,248,245,0.75) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid rgba(30,158,82,0.12) !important;
}
.navbar.scrolled {
  background: rgba(244,248,245,0.92) !important;
  box-shadow: 0 4px 32px rgba(30,80,50,0.10), 0 1px 0 rgba(30,158,82,0.08) !important;
}

/* ── Logo glow on hover ── */
.logo:hover {
  text-shadow: 0 0 20px rgba(30,158,82,0.4);
}

/* ── Nav links — neon underline ── */
.nav-links a::after {
  background: linear-gradient(90deg, var(--green), #27ae60, var(--green)) !important;
  background-size: 200% 100% !important;
  animation: neonSlide 2s linear infinite paused;
  height: 2px;
  box-shadow: 0 0 8px rgba(30,158,82,0.5);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  animation-play-state: running;
}
@keyframes neonSlide {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ── Hero glassmorphism overlay ── */
.slide-overlay,
.page-hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(10,40,20,0.55) 0%,
    rgba(20,80,40,0.35) 50%,
    rgba(10,40,20,0.60) 100%
  ) !important;
  backdrop-filter: blur(2px);
}

/* ── Slide badge — pill glass ── */
.slide-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(30,158,82,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* ── Hero h1 — glow text ── */
.slide-content h1,
.page-hero-content h1 {
  text-shadow:
    0 0 40px rgba(30,158,82,0.3),
    0 2px 4px rgba(0,0,0,0.3);
}
.slide-content h1 .accent,
.page-hero-content h1 .accent {
  background: linear-gradient(135deg, #27ae60, #52d68a, #1e9e52);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(39,174,96,0.5));
}

/* ── Buttons — aurora glow ── */
.btn-primary {
  background: linear-gradient(135deg, #1e9e52 0%, #27ae60 50%, #1a8044 100%) !important;
  background-size: 200% 200% !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  box-shadow:
    0 4px 20px rgba(30,158,82,0.35),
    inset 0 1px 0 rgba(255,255,255,0.2) !important;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1) !important;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 8px 32px rgba(30,158,82,0.50),
    0 0 20px rgba(30,158,82,0.20),
    inset 0 1px 0 rgba(255,255,255,0.25) !important;
}

.btn-outline {
  border: 1.5px solid var(--green) !important;
  background: rgba(30,158,82,0.05) !important;
  backdrop-filter: blur(8px) !important;
  transition: all 0.3s ease !important;
  position: relative; overflow: hidden;
}
.btn-outline:hover {
  background: rgba(30,158,82,0.12) !important;
  box-shadow: 0 0 20px rgba(30,158,82,0.2), inset 0 0 20px rgba(30,158,82,0.05) !important;
  transform: translateY(-2px) !important;
}

/* ── Glass cards (accept / service / cert) ── */
.accept-card,
.service-card,
.cert-card {
  background: rgba(255,255,255,0.65) !important;
  backdrop-filter: blur(16px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(160%) !important;
  border: 1px solid rgba(30,158,82,0.15) !important;
  box-shadow:
    0 4px 24px rgba(30,80,50,0.06),
    inset 0 1px 0 rgba(255,255,255,0.8) !important;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1) !important;
}
.accept-card:hover,
.service-card:hover,
.cert-card:hover {
  background: rgba(255,255,255,0.85) !important;
  border-color: rgba(30,158,82,0.35) !important;
  box-shadow:
    0 16px 48px rgba(30,80,50,0.12),
    0 0 0 1px rgba(30,158,82,0.15),
    inset 0 1px 0 rgba(255,255,255,0.9) !important;
  transform: translateY(-6px) !important;
}

/* ── Stat cards — glass + aurora glow ── */
.stat-card {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.8) 0%,
    rgba(234,243,236,0.6) 100%
  ) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(30,158,82,0.18) !important;
  box-shadow:
    0 4px 20px rgba(30,80,50,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9) !important;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1) !important;
}
.stat-card:hover {
  box-shadow:
    0 12px 40px rgba(30,158,82,0.18),
    0 0 30px rgba(30,158,82,0.08),
    inset 0 1px 0 rgba(255,255,255,1) !important;
  transform: translateY(-4px) !important;
}
.stat-num {
  background: linear-gradient(135deg, #1e9e52, #27ae60) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  filter: drop-shadow(0 1px 8px rgba(30,158,82,0.25));
}

/* ── Contact blocks — glass ── */
.contact-block {
  background: rgba(255,255,255,0.55) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(30,158,82,0.12) !important;
  box-shadow: 0 2px 12px rgba(30,80,50,0.04), inset 0 1px 0 rgba(255,255,255,0.8) !important;
}
.contact-block:hover {
  background: rgba(255,255,255,0.82) !important;
  border-color: rgba(30,158,82,0.28) !important;
  box-shadow:
    0 8px 28px rgba(30,80,50,0.10),
    inset 0 1px 0 rgba(255,255,255,1) !important;
}

/* ── Form wrapper — glass card ── */
.form-wrapper,
.contacts-info {
  background: rgba(255,255,255,0.60);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(30,158,82,0.12);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(30,80,50,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}

/* ── Form inputs — glass ── */
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(8px) !important;
  border: 1.5px solid rgba(30,158,82,0.15) !important;
  transition: all 0.25s ease !important;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(255,255,255,0.95) !important;
  border-color: var(--green) !important;
  box-shadow: 0 0 0 4px rgba(30,158,82,0.10), 0 2px 12px rgba(30,158,82,0.08) !important;
}

/* ── Section titles — gradient accent ── */
.section-title .accent {
  background: linear-gradient(135deg, #1e9e52 0%, #27ae60 60%, #52d68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CTA section — aurora gradient ── */
.cta-section {
  background: linear-gradient(
    135deg,
    #0d4a26 0%,
    #1a6e3a 25%,
    #1e9e52 50%,
    #1a8044 75%,
    #0d4a26 100%
  ) !important;
  background-size: 300% 300% !important;
  animation: auroraGreen 8s ease infinite !important;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(82,214,138,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(30,158,82,0.20) 0%, transparent 60%);
  pointer-events: none;
}
@keyframes auroraGreen {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Footer — glass ── */
.footer {
  background: rgba(20,60,35,0.96) !important;
  backdrop-filter: blur(20px) !important;
  border-top: 1px solid rgba(30,158,82,0.2) !important;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.15) !important;
}

/* ── Map — glass frame ── */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(30,80,50,0.15), 0 0 0 1px rgba(30,158,82,0.12);
}

/* ── Scroll bar styling ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1e9e52, #27ae60);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: #146e38; }

/* ── Selection color ── */
::selection {
  background: rgba(30,158,82,0.2);
  color: #0d4a26;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
  .cta-section { animation: none !important; }
}
