/* Bridge styles on top of Greenka main.css */

/* ========== Refined Header ========== */
.ev-header {
  background: #fff;
  border-bottom: 1px solid rgba(24, 35, 51, 0.06);
  position: sticky;
  top: 0;
  z-index: 200;
}
.ev-header-inner {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ev-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}
.ev-logo img {
  height: 46px;
  width: auto;
  display: block;
}

.ev-nav {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}
.ev-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ev-nav-item {
  position: relative;
  flex: 0 0 auto;
}
.ev-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  color: #182333;
  font-family: var(--heading-font-family, Rajdhani, sans-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.ev-nav-link i { font-size: 11px; opacity: .7; }
.ev-nav-link:hover,
.ev-nav-item.is-active > .ev-nav-link {
  color: #FF7300;
  background: rgba(255, 115, 0, 0.08);
}
.ev-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 230px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(24, 35, 51, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: .18s ease;
  z-index: 50;
}
.ev-nav-item:hover > .ev-submenu,
.ev-nav-item:focus-within > .ev-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.ev-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #526274;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.ev-submenu a:hover {
  background: #F6F8FA;
  color: #FF7300;
}

.ev-tools {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.ev-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ev-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #182333;
  color: #fff;
  transition: .2s ease;
  overflow: hidden;
  flex: 0 0 auto;
}
.ev-socials a:hover {
  background: #5ec251;
  transform: translateY(-1px);
}
.ev-socials i,
.ev-socials svg {
  width: 16px !important;
  height: 16px !important;
  font-size: 16px !important;
  line-height: 1 !important;
  display: block;
}
.ev-lang {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dde3ea;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  height: 34px;
}
.ev-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 100%;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 700;
  color: #6b7c8c;
  text-decoration: none;
  line-height: 1;
}
.ev-lang a.is-active {
  background: #182333;
  color: #fff;
}
.ev-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 8px 0 18px;
  border-radius: 10px;
  background: #FF7300;
  color: #fff !important;
  text-decoration: none !important;
  font-family: var(--heading-font-family, Rajdhani, sans-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(255, 115, 0, 0.25);
  transition: .2s ease;
}
.ev-cta:hover {
  background: #e66700;
  transform: translateY(-1px);
  color: #fff !important;
}
.ev-cta em {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff;
  color: #FF7300;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  flex: 0 0 auto;
}
.ev-cta em i { font-size: 14px; line-height: 1; }
.ev-menu-btn {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #182333;
}

@media (max-width: 1199.98px) {
  .ev-socials { display: none; }
}
@media (max-width: 991.98px) {
  .ev-tools { display: none !important; }
}

.mobile-nav-panel {
  position: fixed; inset: 0; background: #fff; z-index: 2000;
  transform: translateX(100%); transition: transform .28s ease; overflow: auto;
}
.mobile-nav-panel.is-open { transform: none; }

/* ========== Content helpers ========== */
.cert-card img,
.product-card img,
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .thumb,
.team-card .thumb,
.cert-card .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  background: #eef2f5;
}
.cert-card .thumb { aspect-ratio: 3/4; }
.team-card .thumb { aspect-ratio: 1; }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(24,35,51,.06);
}
.spec-table th,
.spec-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.spec-table th {
  background: #182333;
  color: #fff;
  width: 36%;
}
.form-card-ev {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(24,35,51,.08);
}
.form-card-ev label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.form-card-ev input,
.form-card-ev textarea,
.form-card-ev select {
  width: 100%;
  border: 1px solid #e5e8ec;
  border-radius: 10px;
  padding: 12px 14px;
  background: #F6F8FA;
}
.form-card-ev input:focus,
.form-card-ev textarea:focus {
  outline: none;
  border-color: #5ec251;
  box-shadow: 0 0 0 3px rgba(94,194,81,.15);
}
.form-msg { margin-top: 10px; font-weight: 600; }
.form-msg.ok { color: #5ec251; }
.form-msg.err { color: #d64545; }
.info-panel-ev {
  background: linear-gradient(160deg, #182333, #1f4d2e);
  color: #fff;
  border-radius: 16px;
  padding: 36px 30px;
  height: 100%;
}
.info-panel-ev li {
  list-style: none;
  margin: 16px 0;
}
.info-panel-ev ul { padding: 0; margin: 0; }
.info-panel-ev strong {
  display: block;
  opacity: .7;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.background-img[data-background-image] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.overlay-linear-top-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,35,51,.72), rgba(24,35,51,.45) 55%, rgba(24,35,51,.65));
  pointer-events: none;
  z-index: 0;
}
.overlay-linear-top-dark > * { position: relative; z-index: 1; }

.preloader { transition: opacity .35s ease, visibility .35s ease; }
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.spinner { width: 48px; height: 48px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.text-brand { color: #FF7300 !important; }
.bg-brand-1 { background-color: #5ec251 !important; }
.btn-with-arr-right { position: relative; }

.feature-icon {
  width: 74px;
  height: 74px;
  font-size: 32px;
  line-height: 1;
}
.feature-icon i {
  line-height: 1;
}

/* ========== Footer ========== */
.ev-footer {
  position: relative;
  color: #fff;
  background-color: #182333;
  background-size: cover;
  background-position: bottom center;
  overflow: hidden;
}
.ev-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,35,51,.92), rgba(24,35,51,.96));
  pointer-events: none;
}
.ev-footer-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 28px;
}
.ev-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(140px, auto) minmax(220px, auto);
  gap: 40px 72px;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.ev-footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
}
.ev-footer-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.ev-footer-brand p {
  margin: 0 0 22px;
  max-width: 360px;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  font-size: 15px;
}
.ev-footer h5 {
  margin: 0 0 18px;
  font-family: var(--heading-font-family, Rajdhani, sans-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.ev-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ev-footer ul li + li { margin-top: 12px; }
.ev-footer ul a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .2s ease;
}
.ev-footer ul a:hover { color: #5ec251; }
.ev-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ev-footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  transition: .2s ease;
  overflow: hidden;
  flex: 0 0 auto;
}
.ev-footer-socials a:hover {
  background: #5ec251;
  transform: translateY(-2px);
}
.ev-footer-socials i,
.ev-footer-socials svg {
  width: 18px !important;
  height: 18px !important;
  font-size: 18px !important;
  line-height: 1 !important;
  display: block;
}
.ev-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}
.ev-footer-contact i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #5ec251;
  font-size: 18px;
  line-height: 1;
}
.ev-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

.cat-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(94,194,81,.12);
  color: #5ec251;
  font-size: 26px;
  line-height: 1;
}
.cat-icon-sm {
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 10px;
  margin-bottom: 8px;
}

@media (max-width: 991.98px) {
  .ev-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .ev-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 575.98px) {
  .ev-footer-grid { grid-template-columns: 1fr; }
  .ev-footer-inner { padding: 56px 0 24px; }
}
