/* Joe Electro Solutions — header, hero & brand system */

:root {
  --je-navy: #07184f;
  --je-blue: #0874d1;
  --je-yellow: #fdb515;
  --je-bg: #f6f9ff;
  --je-border: #dce6f5;
  --je-text: #3a4d6b;
  --je-white: #ffffff;
  --je-radius-sm: 10px;
  --je-radius-md: 16px;
  --je-radius-lg: 24px;
  --je-shadow-sm: 0 8px 24px rgba(7, 24, 79, 0.08);
  --je-shadow-md: 0 16px 40px rgba(7, 24, 79, 0.1);
  --je-header-offset: 145px;
  --je-mobile-header-height: 72px;
  --je-mobile-action-bar-height: 56px;
}

.je-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10050;
  padding: 10px 16px;
  border-radius: var(--je-radius-sm);
  background: var(--je-navy);
  color: var(--je-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  box-shadow: var(--je-shadow-sm);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.je-skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--je-yellow);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .je-skip-link {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* overflow-x on html/body breaks position:sticky (style.css sets hidden) */
html,
body {
  overflow-x: clip;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header_area.header_area_six.je-site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100%;
  left: auto;
  background: #ffffff;
  overflow: visible;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.header_area.header_area_six.je-site-header.navbar_fixed {
  position: sticky;
  top: 0;
  left: auto;
  width: 100%;
  box-shadow: none;
}

.header_area.header_area_six.je-site-header.is-sticky {
  box-shadow: 0 8px 24px rgba(7, 24, 79, 0.1);
}

.header_area_six.je-site-header + section,
.header_area_six.je-site-header + .joe-hero {
  margin-top: 0 !important;
}

section[id] {
  scroll-margin-top: var(--je-header-offset) !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--je-header-offset) + 20px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.header_area.header_area_six .container {
  max-width: 1540px;
  padding-left: 24px;
  padding-right: 24px;
}

.je-header-top {
  background: var(--je-bg);
  border-bottom: 1px solid var(--je-border);
  font-size: 13px;
}

.je-header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
  padding: 7px 0;
}

.je-header-top__phone-icon {
  display: none;
  font-size: 14px;
  line-height: 1;
  margin-right: 4px;
}

.je-header-top__contacts,
.je-header-top__social {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.je-header-top__contacts {
  flex-wrap: wrap;
  gap: 18px;
}

.je-header-top__social {
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
}

.je-header-top__contacts a {
  color: var(--je-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.je-header-top__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.je-header-top__email-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.je-header-top__email-icon {
  display: none;
  font-size: 15px;
  line-height: 1;
}

.je-header-top__contacts a:hover,
.je-header-top__contacts a:focus {
  color: var(--je-blue);
}

.je-header-top__contacts a:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

.je-header-top__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--je-white);
  border: 1px solid rgba(7, 24, 79, 0.16);
  color: var(--je-navy);
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(7, 24, 79, 0.06);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.je-header-top__social-link i {
  font-size: 16px;
  line-height: 1;
  color: inherit;
}

.je-header-top__social-link--facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: var(--je-white);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.28);
  transform: translateY(-1px);
}

.je-header-top__social-link--instagram:hover {
  background: var(--je-blue);
  border-color: var(--je-blue);
  color: var(--je-white);
  box-shadow: 0 4px 12px rgba(8, 116, 209, 0.28);
  transform: translateY(-1px);
}

.je-header-top__social-link:focus-visible {
  outline: 3px solid rgba(253, 181, 21, 0.88);
  outline-offset: 3px;
}

.je-header-top__social-link--facebook:focus-visible {
  background: #1877f2;
  border-color: #1877f2;
  color: var(--je-white);
}

.je-header-top__social-link--instagram:focus-visible {
  background: var(--je-blue);
  border-color: var(--je-blue);
  color: var(--je-white);
}

.header_area.header_area_six .je-main-nav.menu_one,
.header_area.navbar_fixed .header_area.header_area_six .je-main-nav.menu_one {
  padding: 0;
}

.je-main-nav .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.je-main-nav .navbar-brand {
  padding: 0;
  margin-right: 0;
  flex-shrink: 0;
}

.je-main-nav .navbar-toggler {
  flex-shrink: 0;
  margin-left: auto;
}

.header_area_six.je-site-header .menu > .nav-item + .nav-item {
  margin-left: 0;
}

.header_area_six.je-site-header .menu > .nav-item {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.je-logo {
  display: block;
  height: 60px;
  width: auto;
  max-width: 215px;
}

.je-main-nav .menu > .nav-item.submenu,
.je-main-nav .menu > .nav-item.mega_menu {
  padding-bottom: 0 !important;
}

.je-main-nav .menu > .nav-item > .nav-link {
  color: var(--je-navy);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  position: relative;
  transition: color 0.2s ease;
}

.je-main-nav .menu > .nav-item > .nav-link:hover {
  color: var(--je-blue);
}

.je-main-nav .menu > .nav-item > .nav-link:focus {
  color: var(--je-blue);
}

.je-main-nav .menu > .nav-item > .nav-link:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

.je-main-nav .menu > .nav-item.is-nav-active > .nav-link,
.je-main-nav .menu > .nav-item.active > .nav-link,
.je-main-nav .menu > .nav-item > .nav-link[aria-current="location"] {
  color: var(--je-blue);
  font-weight: 600;
}

.je-main-nav .menu > .nav-item > .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--je-blue);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.je-main-nav .menu > .nav-item > .nav-link:hover::after,
.je-main-nav .menu > .nav-item > .nav-link:focus-visible::after {
  transform: scaleX(1);
  opacity: 0.4;
}

.je-main-nav .menu > .nav-item.is-nav-active > .nav-link::after,
.je-main-nav .menu > .nav-item.active > .nav-link::after,
.je-main-nav .menu > .nav-item > .nav-link[aria-current="location"]::after {
  transform: scaleX(1);
  opacity: 1;
  background: linear-gradient(90deg, var(--je-blue) 0%, var(--je-blue) 70%, var(--je-yellow) 100%);
}

.je-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--je-radius-sm);
  background: var(--je-blue);
  border: 1px solid var(--je-blue);
  color: var(--je-white) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(8, 116, 209, 0.22);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.je-nav-cta:hover,
.je-nav-cta:focus {
  background: #0665b8;
  border-color: #0665b8;
  color: var(--je-white) !important;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(8, 116, 209, 0.28);
}

.je-nav-cta:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.joe-hero {
  background: linear-gradient(180deg, var(--je-bg) 0%, var(--je-white) 100%);
  padding: 50px 0 32px;
  overflow: hidden;
}

.joe-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}

.joe-hero-content {
  max-width: 680px;
  min-width: 0;
}

.joe-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(8, 116, 209, 0.1);
  border: 1px solid rgba(8, 116, 209, 0.18);
  color: var(--je-blue);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.joe-hero-title {
  margin: 0 0 18px;
  color: var(--je-navy);
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.08;
  font-weight: 700;
}

.joe-hero-title-line,
.joe-hero-highlight {
  display: block;
}

.joe-hero-highlight {
  color: var(--je-blue);
}

.joe-hero-lead {
  margin: 0 0 22px;
  color: var(--je-text);
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.6;
  max-width: 38rem;
}

.joe-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.joe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--je-radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.joe-btn--primary {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-height: 52px;
  padding: 10px 22px;
  background: var(--je-blue);
  border-color: var(--je-blue);
  color: var(--je-white);
}

.joe-hero-call-label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.joe-hero-call-number {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.92;
}

.joe-btn--primary:hover,
.joe-btn--primary:focus {
  background: var(--je-navy);
  border-color: var(--je-navy);
  color: var(--je-white);
  text-decoration: none;
}

.joe-btn--secondary {
  background: var(--je-white);
  border-color: var(--je-blue);
  color: var(--je-blue);
}

.joe-btn--secondary:hover,
.joe-btn--secondary:focus {
  background: var(--je-bg);
  color: var(--je-navy);
  text-decoration: none;
}

.joe-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #1fa855;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.joe-hero-whatsapp:hover,
.joe-hero-whatsapp:focus {
  color: #157a3d;
  text-decoration: underline;
}

.joe-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.joe-hero-chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--je-white);
  border: 1px solid var(--je-border);
  color: var(--je-navy);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.joe-hero-visual {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
  padding: 24px 20px 28px;
  border-radius: var(--je-radius-lg);
  background: linear-gradient(145deg, #e8f3ff 0%, #f8fbff 55%, #eef5ff 100%);
  border: 1px solid var(--je-border);
  box-shadow: var(--je-shadow-md);
  overflow: hidden;
}

.joe-hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.joe-hero-shape--one {
  width: 160px;
  height: 160px;
  top: -36px;
  right: -24px;
  background: rgba(253, 181, 21, 0.18);
}

.joe-hero-shape--two {
  width: 110px;
  height: 110px;
  left: -24px;
  bottom: 36px;
  background: rgba(8, 116, 209, 0.12);
}

.joe-hero-picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.joe-hero-picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.joe-hero-card {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  border-radius: var(--je-radius-sm);
  background: var(--je-white);
  border: 1px solid var(--je-border);
  box-shadow: var(--je-shadow-sm);
  color: var(--je-navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.joe-hero-card--area {
  top: 16px;
  left: 16px;
}

.joe-hero-card--call {
  right: 16px;
  bottom: 16px;
}

/* Trust strip */
.joe-trust-strip {
  margin-top: 28px;
}

.joe-trust-strip-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.joe-trust-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 14px 16px;
  border-radius: var(--je-radius-md);
  background: var(--je-white);
  border: 1px solid var(--je-border);
  box-shadow: var(--je-shadow-sm);
}

.joe-trust-strip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--je-radius-sm);
  background: rgba(8, 116, 209, 0.1);
  color: var(--je-blue);
  font-size: 18px;
}

.joe-trust-strip-text {
  color: var(--je-navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

/* Legacy je-btn aliases for other sections */
.je-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--je-radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.je-btn--primary {
  background: var(--je-blue);
  border-color: var(--je-blue);
  color: var(--je-white);
}

.je-btn--primary:hover,
.je-btn--primary:focus {
  background: var(--je-navy);
  border-color: var(--je-navy);
  color: var(--je-white);
  text-decoration: none;
}

.je-btn--secondary {
  background: var(--je-white);
  border-color: var(--je-blue);
  color: var(--je-blue);
}

.je-btn--secondary:hover,
.je-btn--secondary:focus {
  background: var(--je-bg);
  color: var(--je-navy);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Site-wide component overrides (preserved sections)
   -------------------------------------------------------------------------- */

.btn_three,
.contact_form_box .btn_three {
  background: var(--je-blue);
  border-color: var(--je-blue);
}

.btn_three:hover,
.contact_form_box .btn_three:hover {
  color: var(--je-blue);
}

.sec_subtitle {
  max-width: 640px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.je-about {
  background: var(--je-bg);
  overflow: hidden;
  padding: 80px 0;
}

.je-about .container {
  max-width: 1540px;
  padding-left: 24px;
  padding-right: 24px;
}

.je-about-grid {
  display: grid;
  grid-template-columns: 48% minmax(0, 52%);
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
}

.je-about-image-wrap {
  position: relative;
  border-radius: var(--je-radius-lg);
  overflow: hidden;
  border: 1px solid var(--je-border);
  background: var(--je-white);
  box-shadow: var(--je-shadow-sm);
  line-height: 0;
}

.je-about-image-wrap picture {
  display: block;
  width: 100%;
}

.je-about-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.je-about-image-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  margin: 0;
  padding: 10px 14px;
  border-radius: var(--je-radius-sm);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--je-border);
  color: var(--je-navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 4px 16px rgba(7, 24, 79, 0.08);
}

.je-about__eyebrow {
  margin: 0 0 12px;
  color: var(--je-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.je-about__title {
  margin: 0 0 16px;
  color: var(--je-navy);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
}

.je-about__text {
  margin: 0 0 14px;
  color: var(--je-text);
  font-size: 16px;
  line-height: 1.65;
}

.je-about__text--secondary {
  margin-bottom: 20px;
}

.je-about__benefits {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.je-about__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--je-text);
  font-size: 15px;
  line-height: 1.45;
}

.je-about__benefits li i {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--je-yellow);
  font-size: 14px;
  line-height: 1;
}

.je-about__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.je-about__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--je-radius-sm);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.je-about__cta-btn--primary {
  background: var(--je-blue);
  border-color: var(--je-blue);
  color: var(--je-white) !important;
}

.je-about__cta-btn--primary:hover,
.je-about__cta-btn--primary:focus {
  background: var(--je-navy);
  border-color: var(--je-navy);
  color: var(--je-white) !important;
  text-decoration: none;
}

.je-about__cta-btn--primary:focus-visible,
.je-about__cta-link:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

.je-about__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 4px;
  color: var(--je-blue);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.je-about__cta-link:hover,
.je-about__cta-link:focus {
  color: var(--je-navy);
  text-decoration: underline;
}

.je-about-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
  align-items: stretch;
}

.je-about-value-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border-radius: 20px;
  background: var(--je-white);
  border: 1px solid var(--je-border);
  box-shadow: var(--je-shadow-sm);
}

.je-about-value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(8, 116, 209, 0.1);
  border: 1px solid rgba(8, 116, 209, 0.18);
  color: var(--je-blue);
}

.je-about-value-card__icon i {
  font-size: 22px;
  line-height: 1;
}

.je-about-value-card__accent {
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 12px;
  border-radius: 2px;
  background: var(--je-yellow);
}

.je-about-value-card__title {
  margin: 0 0 10px;
  color: var(--je-navy);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.je-about-value-card__text {
  margin: 0;
  color: var(--je-text);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .je-about-grid {
    gap: 40px;
  }

  .je-about-values {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .je-about {
    padding: 56px 0;
  }

  .je-about .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .je-about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .je-about-content {
    order: 1;
  }

  .je-about-visual {
    order: 2;
  }

  .je-about__benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .je-about__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .je-about__cta-btn,
  .je-about__cta-link {
    width: 100%;
    text-align: center;
  }

  .je-about-values {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .je-about-image-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .je-about__cta-btn {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

.je-services {
  background: var(--je-bg);
  overflow: hidden;
}

.je-services .container {
  max-width: 1540px;
  padding-left: 24px;
  padding-right: 24px;
}

.je-services.sec_pad {
  padding-top: 80px;
  padding-bottom: 80px;
}

.je-services__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
}

.je-services__eyebrow {
  margin: 0 0 12px;
  color: var(--je-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.je-services__title {
  margin: 0 0 16px;
  color: var(--je-navy);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
}

.je-services__lead {
  margin: 0 auto;
  max-width: 720px;
  color: var(--je-text);
  font-size: 18px;
  line-height: 1.65;
}

.je-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.je-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--je-border);
  border-radius: 20px;
  background: var(--je-white);
  box-shadow: var(--je-shadow-sm);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.je-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 116, 209, 0.35);
  box-shadow: var(--je-shadow-md);
}

.je-service-card--featured {
  border-color: rgba(8, 116, 209, 0.28);
  box-shadow: 0 12px 32px rgba(7, 24, 79, 0.1);
}

.je-service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.je-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(8, 116, 209, 0.1);
  border: 1px solid rgba(8, 116, 209, 0.18);
  color: var(--je-blue);
  transition: transform 0.22s ease;
}

.je-service-icon i {
  font-size: 24px;
  line-height: 1;
}

.je-service-card:hover .je-service-icon {
  transform: translateY(-2px);
}

.je-service-number {
  color: rgba(7, 24, 79, 0.28);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
}

.je-service-card-meta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.je-service-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(253, 181, 21, 0.16);
  border: 1px solid rgba(253, 181, 21, 0.45);
  color: var(--je-navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.je-service-card--featured .je-service-card-top {
  margin-bottom: 12px;
}

.je-service-card__title {
  margin: 0 0 8px;
  color: var(--je-navy);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}

.je-service-card__desc {
  margin: 0 0 10px;
  color: var(--je-text);
  font-size: 16px;
  line-height: 1.5;
}

.je-service-card__list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  flex: 1 1 auto;
}

.je-service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
  color: var(--je-text);
  font-size: 15px;
  line-height: 1.45;
}

.je-service-card__list li:last-child {
  margin-bottom: 0;
}

.je-service-card__list i {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--je-yellow);
  font-size: 12px;
  line-height: 1;
}

.je-service-card__trust {
  margin: 0 0 12px;
  padding-top: 10px;
  border-top: 1px solid var(--je-border);
  color: var(--je-navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.je-service-card__trust::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--je-yellow);
  vertical-align: middle;
}

.je-service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  padding: 12px 18px;
  border: 1px solid var(--je-blue);
  border-radius: var(--je-radius-sm);
  background: var(--je-blue);
  color: var(--je-white) !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.je-service-cta:hover,
.je-service-cta:focus {
  background: var(--je-navy);
  border-color: var(--je-navy);
  color: var(--je-white) !important;
  text-decoration: none;
}

.je-service-cta:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

.je-services__reassurance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding: 20px 24px;
  border: 1px solid var(--je-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.je-services__reassurance-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  color: var(--je-text);
  font-size: 15px;
  line-height: 1.5;
}

.je-services__reassurance-text a {
  color: var(--je-blue);
  font-weight: 600;
  text-decoration: none;
}

.je-services__reassurance-text a:hover,
.je-services__reassurance-text a:focus {
  color: var(--je-navy);
  text-decoration: underline;
}

.je-services__reassurance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.je-services__reassurance-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--je-border);
  border-radius: var(--je-radius-sm);
  background: var(--je-white);
  color: var(--je-navy);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.je-services__reassurance-btn:hover,
.je-services__reassurance-btn:focus {
  text-decoration: none;
}

.je-services__reassurance-btn--call:hover,
.je-services__reassurance-btn--call:focus {
  border-color: rgba(8, 116, 209, 0.35);
  color: var(--je-blue);
}

.je-services__reassurance-btn--whatsapp:hover,
.je-services__reassurance-btn--whatsapp:focus {
  border-color: rgba(31, 168, 85, 0.35);
  color: #1fa855;
}

.je-services__reassurance-btn:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .je-service-card,
  .je-service-icon {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .je-service-card:hover {
    transform: none;
  }

  .je-service-card:hover .je-service-icon {
    transform: none;
  }
}

@media (max-width: 1199px) {
  .je-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .je-service-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .je-services.sec_pad {
    padding-top: 56px;
    padding-bottom: 80px;
  }

  .je-services .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .je-services__header {
    margin-bottom: 32px;
  }

  .je-services__lead {
    font-size: 16px;
  }

  .je-services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .je-service-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .je-service-card {
    padding: 20px;
  }

  .je-service-card__desc,
  .je-service-card__list li {
    font-size: 15px;
  }

  .je-service-badge {
    font-size: 11px;
  }

  .je-service-cta {
    width: 100%;
  }

  .je-services__reassurance {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .je-services__reassurance-actions {
    justify-content: center;
  }

  .je-services__reassurance-btn {
    flex: 1 1 0;
  }
}

/* --------------------------------------------------------------------------
   How It Works
   -------------------------------------------------------------------------- */

.je-process {
  background: var(--je-white);
  border-top: 1px solid var(--je-border);
  border-bottom: 1px solid var(--je-border);
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 64px;
}

.je-process .container {
  max-width: 1540px;
  padding-left: 24px;
  padding-right: 24px;
}

.je-process__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.je-process__eyebrow {
  margin: 0 0 12px;
  color: var(--je-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.je-process__title {
  margin: 0 0 14px;
  color: var(--je-navy);
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.2;
  font-weight: 700;
}

.je-process__lead {
  margin: 0 auto;
  max-width: 640px;
  color: var(--je-text);
  font-size: 17px;
  line-height: 1.6;
}

.je-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.je-process__steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--je-border);
  z-index: 0;
  pointer-events: none;
}

.je-process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.je-process__step::after {
  display: none;
}

.je-process__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.je-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--je-blue);
  background: var(--je-white);
  color: var(--je-navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.je-process__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(8, 116, 209, 0.08);
  color: var(--je-blue);
}

.je-process__icon i {
  font-size: 20px;
  line-height: 1;
}

.je-process__step-body {
  max-width: 240px;
}

.je-process__step-title {
  margin: 0 0 8px;
  color: var(--je-navy);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.je-process__step-desc {
  margin: 0;
  color: var(--je-text);
  font-size: 15px;
  line-height: 1.5;
}

.je-process__note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(253, 181, 21, 0.1);
  border: 1px solid rgba(253, 181, 21, 0.28);
  color: var(--je-text);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.je-process__note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(8, 116, 209, 0.1);
  color: var(--je-blue);
}

.je-process__note-icon i {
  font-size: 15px;
  line-height: 1;
}

.je-process__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
}

.je-process__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--je-radius-sm);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.je-process__cta-btn--primary {
  background: var(--je-blue);
  border-color: var(--je-blue);
  color: var(--je-white) !important;
}

.je-process__cta-btn--primary:hover,
.je-process__cta-btn--primary:focus {
  background: var(--je-navy);
  border-color: var(--je-navy);
  color: var(--je-white) !important;
  text-decoration: none;
}

.je-process__cta-btn--primary:focus-visible,
.je-process__cta-link:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

.je-process__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 4px;
  color: var(--je-blue);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.je-process__cta-link:hover,
.je-process__cta-link:focus {
  color: var(--je-navy);
  text-decoration: underline;
}

@media (max-width: 1199px) {
  .je-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
    column-gap: 24px;
  }

  .je-process__steps::before {
    display: none;
  }

  .je-process__step:nth-child(1)::after,
  .je-process__step:nth-child(3)::after {
    content: "";
    display: block;
    position: absolute;
    top: 23px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: var(--je-border);
    z-index: 0;
    pointer-events: none;
  }

  .je-process__step:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 28px - 24px);
    background: var(--je-border);
    z-index: 0;
    pointer-events: none;
  }

  .je-process__step-body {
    max-width: 280px;
  }
}

@media (max-width: 767px) {
  .je-process {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .je-process .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .je-process__header {
    margin-bottom: 32px;
  }

  .je-process__lead {
    font-size: 16px;
  }

  .je-process__steps {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }

  .je-process__steps::before {
    display: none;
  }

  .je-process__step {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 16px;
    align-items: start;
    text-align: left;
  }

  .je-process__step:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 48px;
    left: 27px;
    width: 2px;
    height: calc(100% - 48px + 24px);
    background: var(--je-border);
    z-index: 0;
    pointer-events: none;
    transform: none;
  }

  .je-process__marker {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }

  .je-process__step-body {
    max-width: none;
    padding-top: 4px;
  }

  .je-process__step-title {
    font-size: 17px;
  }

  .je-process__step-desc {
    font-size: 14px;
  }

  .je-process__note {
    font-size: 13px;
    padding: 12px 14px;
  }

  .je-process__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .je-process__cta-btn,
  .je-process__cta-link {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .je-process__cta-btn {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Projects (service applications)
   -------------------------------------------------------------------------- */

.je-projects {
  background: var(--je-white);
  padding: 72px 0 80px;
}

.je-projects .container {
  max-width: 1540px;
  padding-left: 24px;
  padding-right: 24px;
}

.je-projects-header {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.je-projects__eyebrow {
  margin: 0 0 12px;
  color: var(--je-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.je-projects__title {
  margin: 0 0 16px;
  color: var(--je-navy);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
}

.je-projects__lead {
  margin: 0;
  color: var(--je-text);
  font-size: 18px;
  line-height: 1.65;
}

.je-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
}

.je-project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  border: 1px solid var(--je-border);
  border-radius: 18px;
  background: var(--je-white);
  box-shadow: var(--je-shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.je-project-card:hover,
.je-project-card:focus-within {
  border-color: rgba(8, 116, 209, 0.35);
  box-shadow: var(--je-shadow-md);
}

.je-project-card-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.je-project-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.je-project-card-media--electrical {
  background: linear-gradient(145deg, #eef5ff 0%, #dcecff 100%);
}

.je-project-card-media--electrical::before {
  background:
    repeating-linear-gradient(90deg, rgba(8, 116, 209, 0.06) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(0deg, rgba(8, 116, 209, 0.05) 0 1px, transparent 1px 24px);
}

.je-project-card-media--ac {
  background: linear-gradient(145deg, #edf7ff 0%, #d9eeff 100%);
}

.je-project-card-media--ac::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(8, 116, 209, 0.08) 0 36px, transparent 37px),
    radial-gradient(circle at 82% 68%, rgba(8, 116, 209, 0.06) 0 44px, transparent 45px),
    repeating-linear-gradient(125deg, rgba(8, 116, 209, 0.05) 0 2px, transparent 2px 18px);
}

.je-project-card-media--maintenance {
  background: linear-gradient(145deg, #eef4ff 0%, #e3eeff 72%, rgba(253, 181, 21, 0.14) 100%);
}

.je-project-card-media--maintenance::before {
  background:
    repeating-linear-gradient(0deg, rgba(7, 24, 79, 0.04) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(7, 24, 79, 0.04) 0 1px, transparent 1px 22px);
}

.je-project-card-media__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--je-blue);
  box-shadow: 0 8px 20px rgba(7, 24, 79, 0.08);
}

.je-project-card-media__icon svg {
  display: block;
  width: 32px;
  height: 32px;
}

.je-project-card-media--maintenance .je-project-card-media__icon {
  color: var(--je-blue);
  box-shadow: 0 8px 20px rgba(7, 24, 79, 0.08), inset 0 0 0 2px rgba(253, 181, 21, 0.35);
}

.je-project-card-media--maintenance .je-project-icon-accent {
  stroke: var(--je-yellow);
}

.je-project-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px 24px 24px;
  min-height: 0;
}

.je-project-card-category {
  margin: 0 0 10px;
  color: var(--je-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.je-project-card-title {
  margin: 0 0 12px;
  color: var(--je-navy);
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.3;
  font-weight: 700;
}

.je-project-card-summary {
  margin: 0 0 16px;
  color: var(--je-text);
  font-size: 15px;
  line-height: 1.5;
}

.je-project-card-scope {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 9px;
  flex: 1 1 auto;
}

.je-project-card-scope li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--je-text);
  font-size: 14px;
  line-height: 1.45;
}

.je-project-card-scope i {
  color: var(--je-blue);
  font-size: 13px;
  line-height: 1.45;
}

.je-project-card-action.je-service-cta {
  width: 100%;
  margin-top: auto;
  min-height: 44px;
}

.je-projects-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--je-border);
  border-radius: 14px;
  background: var(--je-bg);
}

.je-projects-note__text {
  margin: 0;
  color: var(--je-text);
  font-size: 14px;
  line-height: 1.55;
}

.je-projects-note__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.je-projects-note__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--je-radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.je-projects-note__btn--primary {
  border: 1px solid var(--je-blue);
  background: var(--je-blue);
  color: var(--je-white);
}

.je-projects-note__btn--primary:hover,
.je-projects-note__btn--primary:focus {
  background: #0668bd;
  border-color: #0668bd;
  color: var(--je-white);
  text-decoration: none;
}

.je-projects-note__btn--secondary {
  border: 1px solid var(--je-border);
  background: var(--je-white);
  color: var(--je-navy);
}

.je-projects-note__btn--secondary:hover,
.je-projects-note__btn--secondary:focus {
  border-color: rgba(8, 116, 209, 0.35);
  color: var(--je-blue);
  text-decoration: none;
}

.je-projects-note__btn:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

@media (max-width: 1023px) {
  .je-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .je-project-card-media {
    height: 160px;
  }

  .je-project-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .je-projects {
    padding: 60px 0 72px;
  }

  .je-projects .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .je-projects-header {
    margin-bottom: 30px;
  }

  .je-projects__lead {
    font-size: 16px;
  }

  .je-project-card-media {
    height: 140px;
  }

  .je-projects-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .je-project-card:last-child {
    grid-column: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .je-project-card-body {
    padding: 20px 18px;
  }

  .je-projects-note {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 16px;
  }

  .je-projects-note__actions {
    flex-direction: column;
  }

  .je-projects-note__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .je-project-card,
  .je-projects-note__btn {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.je-gallery {
  background: var(--je-bg);
  padding: 80px 0 88px;
}

.je-gallery .container {
  max-width: 1540px;
  padding-left: 24px;
  padding-right: 24px;
}

.je-gallery-header {
  max-width: 680px;
  margin: 0 auto 30px;
  text-align: center;
}

.je-gallery__eyebrow {
  margin: 0 0 12px;
  color: var(--je-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.je-gallery__title {
  margin: 0 0 16px;
  color: var(--je-navy);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
}

.je-gallery__lead {
  margin: 0 auto;
  max-width: 680px;
  color: var(--je-text);
  font-size: 18px;
  line-height: 1.65;
}

.je-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.je-gallery-filters__btn {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--je-border);
  border-radius: 999px;
  background: var(--je-white);
  color: var(--je-navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.je-gallery-filters__btn:hover,
.je-gallery-filters__btn:focus {
  border-color: rgba(8, 116, 209, 0.35);
  color: var(--je-blue);
}

.je-gallery-filters__btn.is-active,
.je-gallery-filters__btn[aria-pressed="true"] {
  border-color: var(--je-blue);
  background: var(--je-blue);
  color: var(--je-white);
  box-shadow: var(--je-shadow-sm);
}

.je-gallery-filters__btn:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

.je-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}

.je-gallery-item {
  margin: 0;
  min-width: 0;
}

.je-gallery-item--feature {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.je-gallery-item--feature .je-gallery-media {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
}

.je-gallery-item--wide {
  grid-column: span 2;
}

.je-gallery-item[hidden] {
  display: none;
}

.je-gallery-media {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid var(--je-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--je-white);
  box-shadow: var(--je-shadow-sm);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.je-gallery-media--ratio-43 {
  aspect-ratio: 4 / 3;
}

.je-gallery-media--ratio-1610 {
  aspect-ratio: 16 / 10;
}

.je-gallery-item--feature .je-gallery-media--ratio-43 {
  height: 100%;
  aspect-ratio: auto;
  min-height: 100%;
}

.je-gallery-media picture,
.je-gallery-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.je-gallery-media img {
  object-fit: cover;
  object-position: center;
  transition: transform 0.25s ease;
}

.je-gallery-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 24, 79, 0) 42%, rgba(7, 24, 79, 0.72) 100%);
  pointer-events: none;
  transition: background 0.25s ease;
}

.je-gallery-media:hover::after,
.je-gallery-media:focus-visible::after {
  background: linear-gradient(180deg, rgba(7, 24, 79, 0.08) 20%, rgba(7, 24, 79, 0.78) 100%);
}

@media (hover: hover) and (pointer: fine) {
  .je-gallery-media:hover img,
  .je-gallery-media:focus-visible img {
    transform: scale(1.03);
  }
}

.je-gallery-media:focus {
  outline: none;
}

.je-gallery-media:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

.je-gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 18px 18px 16px;
  color: var(--je-white);
  pointer-events: none;
}

.je-gallery-caption__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--je-yellow);
}

.je-gallery-caption__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.je-gallery-caption__detail {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.je-gallery-caption__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--je-white);
}

.je-gallery-caption__action::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(currentColor, currentColor) center/8px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center/2px 8px no-repeat;
  opacity: 0.95;
}

@media (hover: hover) and (pointer: fine) {
  .je-gallery-caption__action {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .je-gallery-media:hover .je-gallery-caption__action,
  .je-gallery-media:focus-visible .je-gallery-caption__action {
    opacity: 1;
    transform: translateY(0);
  }
}

.je-gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid var(--je-border);
  border-radius: 16px;
  background: var(--je-white);
  box-shadow: var(--je-shadow-sm);
}

.je-gallery-cta__title {
  margin: 0 0 6px;
  color: var(--je-navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.je-gallery-cta__text {
  margin: 0;
  color: var(--je-text);
  font-size: 15px;
  line-height: 1.55;
}

.je-gallery-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.je-gallery-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--je-radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.je-gallery-cta__btn--primary {
  border: 1px solid var(--je-blue);
  background: var(--je-blue);
  color: var(--je-white);
}

.je-gallery-cta__btn--primary:hover,
.je-gallery-cta__btn--primary:focus {
  background: #0668bd;
  border-color: #0668bd;
  color: var(--je-white);
  text-decoration: none;
}

.je-gallery-cta__btn--secondary {
  border: 1px solid var(--je-border);
  background: var(--je-white);
  color: var(--je-navy);
}

.je-gallery-cta__btn--secondary:hover,
.je-gallery-cta__btn--secondary:focus {
  border-color: rgba(8, 116, 209, 0.35);
  color: var(--je-blue);
  text-decoration: none;
}

.je-gallery-cta__btn:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

.je-gallery-dialog {
  width: min(96vw, 1100px);
  max-height: 92vh;
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
  overflow: visible;
}

.je-gallery-dialog::backdrop {
  background: rgba(7, 24, 79, 0.82);
}

.je-gallery-dialog__panel {
  position: relative;
  padding: 16px;
  border-radius: 16px;
  background: var(--je-navy);
  box-shadow: var(--je-shadow-md);
}

.je-gallery-dialog__figure {
  margin: 0;
}

.je-gallery-dialog__image {
  display: block;
  width: 100%;
  max-height: calc(92vh - 120px);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 10px;
  background: #000;
}

.je-gallery-dialog__caption {
  margin: 12px 8px 0;
  color: var(--je-white);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.je-gallery-dialog__nav {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--je-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--je-white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.je-gallery-dialog__nav-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.je-gallery-dialog__nav-row .je-gallery-dialog__nav {
  flex: 1 1 0;
}

@media (min-width: 768px) {
  .je-gallery-dialog__nav-row {
    display: block;
    margin-top: 0;
  }

  .je-gallery-dialog__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 14px;
    flex: none;
  }

  .je-gallery-dialog__nav--prev {
    left: 12px;
  }

  .je-gallery-dialog__nav--next {
    right: 12px;
  }
}

.je-gallery-dialog__close:hover,
.je-gallery-dialog__close:focus,
.je-gallery-dialog__nav:hover,
.je-gallery-dialog__nav:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
}

.je-gallery-dialog__close:focus-visible,
.je-gallery-dialog__nav:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

.je-gallery-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 0 14px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--je-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--je-white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.je-gallery-dialog__nav[hidden] {
  display: none;
}

@media (max-width: 1023px) {
  .je-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .je-gallery-item--feature,
  .je-gallery-item--wide {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .je-gallery {
    padding: 56px 0 64px;
  }

  .je-gallery .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .je-gallery-header {
    margin-bottom: 26px;
  }

  .je-gallery__title {
    margin-bottom: 16px;
  }

  .je-gallery__lead {
    font-size: 16px;
  }

  .je-gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 8px;
    overflow: visible;
    margin-bottom: 26px;
  }

  .je-gallery-filters__btn {
    flex: 0 1 auto;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .je-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }

  .je-gallery-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 18px;
  }

  .je-gallery-cta__actions {
    flex-direction: column;
  }

  .je-gallery-cta__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .je-gallery-media img,
  .je-gallery-media::after,
  .je-gallery-caption__action,
  .je-gallery-filters__btn,
  .je-gallery-cta__btn,
  .je-gallery-dialog__close,
  .je-gallery-dialog__nav {
    transition: none;
  }
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--je-radius-sm);
  margin-bottom: 20px;
  font-size: 14px;
}

.form-message.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.footer_area .f_list a:hover {
  color: var(--je-yellow);
}

.f-logo .je-logo {
  height: 56px;
}

.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 32px;
  width: 52px;
  height: 52px;
  z-index: 1035;
}

@media (min-width: 1200px) {
  .whatsapp-float {
    right: max(24px, calc((100vw - 1540px) / 2 - 68px));
  }
}

@media (min-width: 1540px) {
  .whatsapp-float {
    right: calc((100vw - 1540px) / 2 - 68px);
  }
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: var(--je-shadow-sm);
}

/* Mobile action bar */
.je-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  background: var(--je-white);
  border-top: 1px solid var(--je-border);
  box-shadow: 0 -4px 20px rgba(7, 24, 79, 0.08);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.je-mobile-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 56px;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--je-navy);
  text-decoration: none;
  border-right: 1px solid var(--je-border);
}

.je-mobile-bar__btn:last-child {
  border-right: none;
}

.je-mobile-bar__btn--call {
  color: var(--je-blue);
}

.je-mobile-bar__btn--whatsapp {
  color: #1fa855;
}

.je-mobile-bar__btn--book {
  background: var(--je-blue);
  color: var(--je-white);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (min-width: 1200px) {
  .header_area.header_area_six .je-main-nav .container {
    display: grid;
    grid-template-columns: minmax(200px, 220px) minmax(0, 1fr) minmax(180px, 200px);
    align-items: center;
    column-gap: 24px;
    min-height: 84px;
    max-height: 88px;
    flex-wrap: nowrap;
  }

  .header_area.header_area_six .je-main-nav .navbar-brand {
    grid-column: 1;
    grid-row: 1;
    margin-right: 0;
  }

  .header_area.header_area_six .je-main-nav .navbar-collapse {
    display: contents !important;
  }

  .header_area.header_area_six .je-main-nav .navbar-nav {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 24px;
    width: 100%;
    margin: 0;
    min-width: 0;
  }

  .header_area.header_area_six .je-main-nav .navbar-nav .nav-item {
    margin: 0;
  }

  .header_area.header_area_six .je-main-nav .navbar-nav .nav-link {
    padding: 12px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .header_area.header_area_six .je-main-nav .menu > .nav-item > .nav-link::after {
    left: 0;
    right: 0;
  }

  .header_area.header_area_six .je-main-nav .je-nav-cta {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    margin: 0;
    width: auto;
    min-width: 180px;
    max-width: 200px;
  }
}

@media (min-width: 1200px) and (max-width: 1279px) {
  .je-logo {
    height: 56px;
    max-width: 205px;
  }

  .header_area.header_area_six .je-main-nav .container {
    grid-template-columns: minmax(180px, 200px) minmax(0, 1fr) minmax(170px, 190px);
    column-gap: 16px;
  }

  .header_area.header_area_six .je-main-nav .navbar-nav {
    gap: 16px;
  }

  .header_area.header_area_six .je-main-nav .navbar-nav .nav-link {
    font-size: 14px;
  }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  .header_area.header_area_six .je-main-nav .navbar-nav {
    gap: 22px;
  }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  .header_area.header_area_six .je-main-nav .navbar-nav {
    gap: 28px;
  }
}

@media (min-width: 1920px) {
  .header_area.header_area_six .je-main-nav .navbar-nav {
    gap: 32px;
  }
}

@media (min-width: 1200px) {
  .je-header-top__phone-icon {
    display: inline-flex;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header_area.header_area_six .je-main-nav .navbar-brand {
    margin-right: 16px;
  }

  .header_area.header_area_six .je-main-nav .navbar-nav {
    gap: 16px;
  }
}

@media (max-width: 1199px) {
  .header_area.header_area_six .je-main-nav .container {
    min-height: 72px;
    max-height: none;
    flex-wrap: wrap;
    align-items: center;
  }

  .header_area.header_area_six .je-main-nav .navbar-collapse.collapse:not(.show):not(.collapsing) {
    display: none;
  }

  .header_area.header_area_six .je-main-nav .navbar-collapse.show,
  .header_area.header_area_six .je-main-nav .navbar-collapse.collapsing {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    max-height: calc(
      100vh - var(--je-mobile-header-height) - var(--je-mobile-action-bar-height) -
        env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)
    );
    max-height: calc(
      100dvh - var(--je-mobile-header-height) - var(--je-mobile-action-bar-height) -
        env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)
    );
    background: var(--je-white);
    border-top: 1px solid var(--je-border);
    box-shadow: 0 8px 24px rgba(7, 24, 79, 0.1);
  }

  .header_area.header_area_six .je-main-nav .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    margin: 0;
    padding: 4px 0 8px;
  }

  .header_area.header_area_six.je-site-header .je-main-nav .menu {
    padding: 0;
    margin-top: 0;
    background: transparent;
  }

  .header_area.header_area_six.je-site-header .menu > .nav-item {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header_area.header_area_six .je-main-nav .navbar-nav .nav-item {
    margin: 0;
  }

  .header_area.header_area_six .je-main-nav .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal;
  }

  .header_area.header_area_six .je-main-nav .menu > .nav-item > .nav-link::after {
    display: none;
  }

  .header_area.header_area_six .je-main-nav .menu > .nav-item.is-nav-active > .nav-link,
  .header_area.header_area_six .je-main-nav .menu > .nav-item.active > .nav-link,
  .header_area.header_area_six .je-main-nav .menu > .nav-item > .nav-link[aria-current="location"] {
    background: rgba(8, 116, 209, 0.08);
    color: var(--je-blue);
    font-weight: 600;
  }

  .header_area.header_area_six .je-main-nav .navbar-collapse .je-nav-cta {
    display: none;
  }
}

@media (max-width: 991px) {
  .header_area.header_area_six .je-main-nav .navbar-collapse.show,
  .header_area.header_area_six .je-main-nav .navbar-collapse.collapsing {
    margin-top: 0;
    padding-bottom: 0;
  }

  .je-main-nav .menu > .nav-item > .nav-link {
    padding: 12px 20px;
  }

  .joe-hero {
    padding: 32px 0 24px;
  }

  .joe-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    gap: 28px;
  }

  .joe-hero-title {
    font-size: clamp(34px, 5vw, 42px);
  }

  .joe-trust-strip-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .header_area.header_area_six .je-main-nav .container {
    min-height: 64px;
  }

  .je-logo {
    height: 48px;
    max-width: 180px;
  }

  .header_area.header_area_six .je-main-nav .navbar-toggler {
    margin-left: 16px;
  }

  .joe-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .joe-hero-content {
    max-width: none;
    text-align: left;
  }

  .joe-hero-title {
    font-size: clamp(34px, 8vw, 42px);
  }

  .joe-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .joe-hero-actions .joe-btn {
    width: 100%;
  }

  .joe-hero-actions .joe-btn--primary {
    align-items: center;
  }

  .joe-hero-visual {
    margin: 0 auto;
    max-width: 100%;
  }

  .joe-hero-card {
    font-size: 12px;
    padding: 8px 10px;
  }

  .joe-trust-strip-list {
    grid-template-columns: 1fr;
  }

  .je-header-top {
    overflow: visible;
  }

  .je-header-top__inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    min-height: 50px;
    padding: 7px 0;
  }

  .je-header-top__contacts {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    font-size: 11px;
    line-height: 1.2;
    min-width: 0;
  }

  .je-header-top__contacts li {
    width: auto;
    min-width: 0;
  }

  .je-header-top__contacts a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .je-header-top__label {
    display: none;
  }

  .je-header-top__social {
    display: none;
    width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .je-logo {
    height: 48px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0));
  }

  .je-mobile-bar {
    display: grid;
  }

  .whatsapp-float {
    display: none;
  }
}

@media (max-width: 430px) {
  .je-header-top__email-text {
    display: none;
  }

  .je-header-top__email-icon {
    display: inline-flex;
  }

  .je-header-top__contacts {
    gap: 8px;
    font-size: 10px;
  }
}

/* Contact form honeypot (spam protection, not visible to users) */
.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.je-contact {
  background: var(--je-bg);
  overflow: hidden;
  padding: 72px 0 28px;
}

.je-contact .container {
  max-width: 1540px;
  padding-left: 24px;
  padding-right: 24px;
}

.je-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 32px;
  align-items: stretch;
}

.je-contact-info {
  min-width: 0;
}

.je-contact-info-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  border: 1px solid var(--je-border);
  border-radius: 20px;
  background: var(--je-white);
  box-shadow: var(--je-shadow-sm);
}

.je-contact-info-card__main {
  flex: 1 1 auto;
  min-height: 0;
}

.je-contact-support {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--je-border);
}

.je-contact-support__title {
  margin: 0 0 12px;
  color: var(--je-navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.je-contact-support__list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.je-contact-support__list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--je-text);
  font-size: 14px;
  line-height: 1.45;
}

.je-contact-support__list i {
  color: var(--je-blue);
  font-size: 14px;
  line-height: 1.45;
}

.je-contact-support__note {
  margin: 0;
  color: var(--je-text);
  font-size: 13px;
  line-height: 1.5;
}

.je-contact__eyebrow {
  margin: 0 0 12px;
  color: var(--je-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.je-contact__title {
  margin: 0 0 14px;
  color: var(--je-navy);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
}

.je-contact__lead {
  margin: 0 0 20px;
  color: var(--je-text);
  font-size: 17px;
  line-height: 1.65;
}

.je-contact-cards {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.je-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--je-border);
  border-radius: 14px;
  background: var(--je-bg);
  box-shadow: none;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.je-contact-card:hover,
.je-contact-card:focus {
  border-color: rgba(8, 116, 209, 0.35);
  box-shadow: var(--je-shadow-md);
  text-decoration: none;
  color: inherit;
}

.je-contact-card:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

.je-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(8, 116, 209, 0.1);
  border: 1px solid rgba(8, 116, 209, 0.18);
  color: var(--je-blue);
}

.je-contact-card__icon i {
  font-size: 20px;
  line-height: 1;
}

.je-contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.je-contact-card__label {
  color: var(--je-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.je-contact-card__value {
  color: var(--je-navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.je-contact-card__hint {
  color: var(--je-text);
  font-size: 14px;
  line-height: 1.45;
}

.je-contact-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--je-bg);
  border: 1px solid var(--je-border);
}

.je-contact-address__icon {
  color: var(--je-blue);
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}

.je-contact-address__text {
  margin: 0;
  color: var(--je-navy);
  font-size: 15px;
  line-height: 1.55;
}

.je-contact-note {
  margin: 0;
  color: var(--je-text);
  font-size: 14px;
  line-height: 1.55;
}

.je-contact-form-card {
  height: 100%;
  padding: 28px;
  border: 1px solid var(--je-border);
  border-radius: 20px;
  background: var(--je-white);
  box-shadow: var(--je-shadow-sm);
}

.je-contact-form-card__title {
  margin: 0 0 8px;
  color: var(--je-navy);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}

.je-contact-form-card__lead {
  margin: 0 0 22px;
  color: var(--je-text);
  font-size: 15px;
  line-height: 1.55;
}

.je-contact-form {
  position: relative;
}

.je-contact-status {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.je-contact-status:empty {
  display: none;
}

.je-contact-status.is-success {
  background: rgba(8, 116, 209, 0.1);
  border: 1px solid rgba(8, 116, 209, 0.22);
  color: var(--je-navy);
}

.je-contact-status.is-error {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.22);
  color: #8a1f2d;
}

.je-contact-status.is-rate-limit {
  background: rgba(253, 181, 21, 0.12);
  border: 1px solid rgba(253, 181, 21, 0.35);
  color: var(--je-navy);
}

.je-contact-field {
  margin-bottom: 16px;
}

.je-contact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--je-navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.je-contact-required {
  color: var(--je-blue);
}

.je-contact-optional {
  color: var(--je-text);
  font-size: 12px;
  font-weight: 500;
}

.je-contact-input,
.je-contact-select,
.je-contact-textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--je-border);
  border-radius: 14px;
  background: var(--je-white);
  color: var(--je-navy);
  font-size: 15px;
  line-height: 1.45;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.je-contact-textarea {
  min-height: 145px;
  resize: vertical;
}

.je-contact-input:focus,
.je-contact-select:focus,
.je-contact-textarea:focus {
  outline: none;
  border-color: var(--je-blue);
  box-shadow: 0 0 0 3px rgba(8, 116, 209, 0.14);
}

.je-contact-input[aria-invalid="true"],
.je-contact-select[aria-invalid="true"],
.je-contact-textarea[aria-invalid="true"] {
  border-color: #d9534f;
  box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.12);
}

.je-contact-help {
  margin: 8px 0 0;
  color: var(--je-text);
  font-size: 13px;
  line-height: 1.45;
}

.je-contact-error {
  margin: 8px 0 0;
  color: #b42318;
  font-size: 13px;
  line-height: 1.45;
}

.je-contact-error:empty {
  display: none;
}

.je-contact-field--consent {
  margin-bottom: 20px;
}

.je-contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--je-text);
  font-size: 14px;
  line-height: 1.55;
  cursor: pointer;
}

.je-contact-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--je-blue);
}

.je-contact-consent a {
  color: var(--je-blue);
  font-weight: 600;
  text-decoration: none;
}

.je-contact-consent a:hover,
.je-contact-consent a:focus {
  color: var(--je-navy);
  text-decoration: underline;
}

.je-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--je-blue);
  border-radius: 14px;
  background: var(--je-blue);
  color: var(--je-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.je-contact-submit:hover,
.je-contact-submit:focus {
  background: var(--je-navy);
  border-color: var(--je-navy);
}

.je-contact-submit:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

.je-contact-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.je-contact-map {
  margin-top: 28px;
  border: 1px solid var(--je-border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--je-white);
  box-shadow: var(--je-shadow-sm);
}

.je-contact-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

@media (max-width: 1023px) {
  .je-contact {
    padding-bottom: 24px;
  }

  .je-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .je-contact-info-card {
    height: auto;
  }

  .je-contact-map iframe {
    height: 280px;
  }
}

@media (max-width: 1199px) {
  .je-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 40px;
  }

  .je-footer-brand {
    grid-column: 1 / -1;
  }

  .je-footer-links__list--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .je-contact {
    padding: 56px 0 20px;
  }

  .je-contact .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .je-contact-info-card,
  .je-contact-form-card {
    padding: 22px 18px;
  }

  .je-contact-map {
    margin-top: 20px;
  }

  .je-contact-map iframe {
    height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .je-contact-card,
  .je-contact-submit,
  .je-contact-input,
  .je-contact-select,
  .je-contact-textarea {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.je-faq {
  background: var(--je-white);
  padding: 88px 0;
}

.je-faq .container {
  max-width: 1540px;
  padding-left: 24px;
  padding-right: 24px;
}

.je-faq-header {
  max-width: 620px;
  margin-bottom: 44px;
}

.je-faq__eyebrow {
  margin: 0 0 12px;
  color: var(--je-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.je-faq__title {
  margin: 0 0 16px;
  color: var(--je-navy);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
}

.je-faq__lead {
  margin: 0;
  max-width: 620px;
  color: var(--je-text);
  font-size: 18px;
  line-height: 1.65;
}

.je-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 56px;
  align-items: start;
}

.je-faq-support {
  padding: 24px;
  border: 1px solid rgba(8, 116, 209, 0.2);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(7, 24, 79, 0.97) 0%, rgba(8, 116, 209, 0.88) 100%);
  color: var(--je-white);
  box-shadow: var(--je-shadow-sm);
}

@media (min-width: 1025px) {
  .je-faq-support {
    position: sticky;
    top: calc(var(--je-header-offset) + 16px);
  }
}

.je-faq-support__eyebrow {
  margin: 0 0 10px;
  color: var(--je-yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.je-faq-support__title {
  margin: 0 0 10px;
  color: var(--je-white);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.je-faq-support__text {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.55;
}

.je-faq-support__actions {
  display: grid;
  gap: 10px;
}

.je-faq-support__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--je-radius-sm);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.je-faq-support__btn--primary {
  border: 1px solid var(--je-yellow);
  background: var(--je-yellow);
  color: var(--je-navy);
}

.je-faq-support__btn--primary:hover,
.je-faq-support__btn--primary:focus {
  background: #ffc94a;
  border-color: #ffc94a;
  color: var(--je-navy);
  text-decoration: none;
}

.je-faq-support__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--je-white);
}

.je-faq-support__btn--secondary:hover,
.je-faq-support__btn--secondary:focus {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
  color: var(--je-white);
  text-decoration: none;
}

.je-faq-support__btn:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

.je-faq-list {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.je-faq-item {
  position: relative;
  border: 1px solid var(--je-border);
  border-radius: 14px;
  background: var(--je-white);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.je-faq-item.is-open {
  border-color: rgba(8, 116, 209, 0.45);
  background: rgba(246, 249, 255, 0.92);
  box-shadow: var(--je-shadow-sm);
}

.je-faq-item.is-open::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--je-blue);
  border-radius: 14px 0 0 14px;
}

.je-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 22px 22px 22px 24px;
  border: 0;
  background: transparent;
  color: var(--je-navy);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.je-faq-item.is-open .je-faq-question {
  color: var(--je-blue);
}

.je-faq-question:focus {
  outline: none;
}

.je-faq-question:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: -2px;
}

.je-faq-question__text {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 8px;
}

.je-faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(8, 116, 209, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}

.je-faq-item.is-open .je-faq-icon {
  background: rgba(8, 116, 209, 0.16);
}

.je-faq-icon::before,
.je-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--je-blue);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.je-faq-icon::before {
  width: 14px;
  height: 2px;
}

.je-faq-icon::after {
  width: 2px;
  height: 14px;
}

.je-faq-item.is-open .je-faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.je-faq-answer {
  padding: 0 24px 22px;
}

.je-faq-answer[hidden] {
  display: none;
}

.je-faq-answer p {
  margin: 0;
  max-width: 65ch;
  color: var(--je-text);
  font-size: 16px;
  line-height: 1.65;
}

.je-faq-answer a {
  color: var(--je-blue);
  font-weight: 600;
  text-decoration: none;
}

.je-faq-answer a:hover,
.je-faq-answer a:focus {
  color: var(--je-navy);
  text-decoration: underline;
}

.je-faq-answer a:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

@media (max-width: 1199px) {
  .je-faq-layout {
    gap: 36px;
  }
}

@media (max-width: 1023px) {
  .je-faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .je-faq-support {
    position: static;
  }
}

@media (max-width: 767px) {
  .je-faq {
    padding: 60px 0;
  }

  .je-faq .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .je-faq-header {
    margin-bottom: 30px;
  }

  .je-faq__lead {
    font-size: 16px;
  }

  .je-faq-support {
    padding: 20px 18px;
  }

  .je-faq-question {
    padding: 17px 16px 17px 18px;
    font-size: 17px;
    min-height: 44px;
  }

  .je-faq-answer {
    padding: 0 18px 18px;
  }

  .je-faq-answer p {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .je-faq-item,
  .je-faq-question,
  .je-faq-icon,
  .je-faq-icon::before,
  .je-faq-icon::after,
  .je-faq-support__btn {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.je-footer {
  position: relative;
  z-index: 1041;
  background: var(--je-navy);
  color: rgba(255, 255, 255, 0.88);
  font-family: "Poppins", sans-serif;
}

.je-footer .container {
  max-width: 1540px;
  padding-left: 24px;
  padding-right: 24px;
}

.je-footer-cta {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 0 24px 6px;
}

.je-footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  padding: 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--je-radius-md);
  background: linear-gradient(135deg, #0a2a7a 0%, var(--je-navy) 100%);
  box-shadow: var(--je-shadow-md);
}

.je-footer-cta__eyebrow {
  margin: 0 0 8px;
  color: var(--je-yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.je-footer-cta__title {
  margin: 0 0 8px;
  color: var(--je-white);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.25;
  font-weight: 700;
}

.je-footer-cta__text {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.je-footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.je-footer-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--je-radius-sm);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.je-footer-cta__btn--primary {
  background: var(--je-blue);
  border-color: var(--je-blue);
  color: var(--je-white);
}

.je-footer-cta__btn--primary:hover,
.je-footer-cta__btn--primary:focus {
  background: #0664b8;
  border-color: #0664b8;
  color: var(--je-white);
  text-decoration: none;
}

.je-footer-cta__btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--je-white);
}

.je-footer-cta__btn--secondary:hover,
.je-footer-cta__btn--secondary:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--je-white);
  text-decoration: none;
}

.je-footer-cta__btn:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

.je-footer-main {
  padding: 52px 0 44px;
}

.je-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 40px clamp(32px, 4vw, 56px);
  align-items: start;
}

.je-footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 26px;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.je-footer-logo:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 3px;
}

.je-footer-logo img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

@media (max-width: 1199px) {
  .je-footer-logo img {
    width: 190px;
  }
}

@media (max-width: 767px) {
  .je-footer-logo img {
    width: 180px;
  }
}

.je-footer-brand__text {
  margin: 0 0 14px;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.je-footer-brand__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.je-footer-brand__contacts a {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--je-white);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.je-footer-brand__contacts a:hover,
.je-footer-brand__contacts a:focus {
  color: var(--je-yellow);
  border-bottom-color: rgba(253, 181, 21, 0.55);
}

.je-footer-brand__contacts i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--je-blue);
  font-size: 18px;
  line-height: 1;
}

.je-footer-brand__contacts span {
  overflow-wrap: anywhere;
}

.je-footer-links__title,
.je-footer-info .je-footer-links__title {
  margin: 0 0 14px;
  color: var(--je-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.je-footer-links__list,
.je-footer-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.je-footer-links__list {
  display: grid;
  gap: 16px;
}

.je-footer-links__list--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
}

.je-footer-links__list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.je-footer-links__list a:hover,
.je-footer-links__list a:focus {
  color: var(--je-yellow);
  text-decoration: underline;
  text-decoration-color: rgba(253, 181, 21, 0.65);
  text-underline-offset: 3px;
}

.je-footer-links__list a:focus-visible,
.je-footer-brand__contacts a:focus-visible,
.je-footer-social a:focus-visible,
.je-footer-bottom__nav a:focus-visible {
  outline: 2px solid var(--je-yellow);
  outline-offset: 2px;
}

.je-footer-info__list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  max-width: 26ch;
}

.je-footer-info__list li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.je-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.je-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--je-white);
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.je-footer-social a:hover,
.je-footer-social a:focus {
  background: rgba(8, 116, 209, 0.25);
  border-color: rgba(8, 116, 209, 0.55);
  color: var(--je-white);
  text-decoration: none;
}

.je-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0 calc(16px + env(safe-area-inset-bottom, 0));
  background: rgba(0, 0, 0, 0.12);
}

.je-footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}

.je-footer-bottom__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.5;
}

.je-footer-bottom__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

.je-footer-bottom__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.je-footer-bottom__nav a:hover,
.je-footer-bottom__nav a:focus {
  color: var(--je-yellow);
  text-decoration: underline;
  text-decoration-color: rgba(253, 181, 21, 0.65);
  text-underline-offset: 3px;
}

.je-footer-bottom__nav a + a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .je-footer-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .je-footer-cta__title {
    font-size: clamp(20px, 4.5vw, 26px);
  }

  .je-footer-cta__actions {
    width: 100%;
  }

  .je-footer-cta__btn {
    flex: 1 1 180px;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .je-footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .je-footer-cta {
    padding: 0 16px 6px;
  }

  .je-footer-cta__inner {
    padding: 26px 18px;
  }

  .je-footer-cta__actions {
    flex-direction: column;
  }

  .je-footer-cta__btn {
    width: 100%;
    flex: none;
    white-space: normal;
  }

  .je-footer-main {
    padding: 32px 0 36px;
  }

  .je-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .je-footer-bottom {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0));
  }

  .je-footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .je-footer-bottom__nav {
    gap: 6px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .je-footer-cta__btn,
  .je-footer-links__list a,
  .je-footer-brand__contacts a,
  .je-footer-social a,
  .je-footer-bottom__nav a {
    transition: none;
  }
}
