/* Elektro Yıldız — styles.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ef-blue: #1565c0;
  --ef-blue-dark: #0d47a1;
  --ef-dark: #1a2332;
  --ef-dark-light: #243044;
  --ef-yellow: #ffc107;
  --ef-yellow-dark: #e6ac00;
  --ef-white: #ffffff;
  --ef-gray: #8892a4;
  --ef-gray-light: #f0f4f8;
  --ef-text: #2c3e50;
  --ef-radius: 8px;
  --ef-shadow: 0 4px 24px rgba(26, 35, 50, 0.12);
  --ef-transition: 0.25s ease;
  --ef-max: 1200px;
  --ef-font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ef-font);
  color: var(--ef-text);
  background: var(--ef-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ef-blue); text-decoration: none; transition: color var(--ef-transition); }
a:hover { color: var(--ef-blue-dark); }
ul { list-style: none; }

.ef-container {
  width: 100%;
  max-width: var(--ef-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header & Icon Nav ── */
.ef-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--ef-dark);
  border-bottom: 3px solid var(--ef-blue);
  height: 64px;
}

.ef-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.ef-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ef-white);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.ef-logo__icon {
  width: 36px; height: 36px;
  background: var(--ef-blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.ef-logo:hover { color: var(--ef-yellow); }

.ef-nav { display: flex; gap: 8px; }

.ef-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--ef-radius);
  font-size: 1.35rem;
  background: transparent;
  color: var(--ef-white);
  transition: background var(--ef-transition), transform var(--ef-transition);
}

.ef-nav__link:hover,
.ef-nav__link.ef-nav__link--active {
  background: var(--ef-blue);
  transform: translateY(-2px);
}

.ef-nav__link::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: var(--ef-yellow);
  color: var(--ef-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ef-transition), transform var(--ef-transition);
  z-index: 10;
}

.ef-nav__link:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.ef-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.ef-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ef-white);
  transition: var(--ef-transition);
}

.ef-burger.ef-burger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.ef-burger.ef-burger--open span:nth-child(2) { opacity: 0; }
.ef-burger.ef-burger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Main offset ── */
.ef-main { padding-top: 64px; }

/* ── Hero ── */
.ef-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ef-dark);
}

.ef-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.ef-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,35,50,0.92) 0%, rgba(21,101,192,0.55) 100%);
}

.ef-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 640px;
}

.ef-hero__badge {
  display: inline-block;
  background: var(--ef-yellow);
  color: var(--ef-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ef-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--ef-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.ef-hero__title span { color: var(--ef-yellow); }

.ef-hero__text {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.ef-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Buttons ── */
.ef-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--ef-radius);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ef-transition);
  font-family: inherit;
}

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

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

.ef-btn--warning {
  background: var(--ef-yellow);
  color: var(--ef-dark);
  border-color: var(--ef-yellow);
}

.ef-btn--warning:hover {
  background: var(--ef-yellow-dark);
  border-color: var(--ef-yellow-dark);
  color: var(--ef-dark);
}

.ef-btn--outline {
  background: transparent;
  color: var(--ef-white);
  border-color: rgba(255,255,255,0.5);
}

.ef-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--ef-white);
  border-color: var(--ef-white);
}

.ef-btn--dark {
  background: var(--ef-dark);
  color: var(--ef-white);
  border-color: var(--ef-dark);
}

.ef-btn--dark:hover {
  background: var(--ef-dark-light);
  color: var(--ef-white);
}

/* ── Emergency Banner ── */
.ef-emergency {
  background: var(--ef-yellow);
  padding: 20px 0;
}

.ef-emergency__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ef-emergency__text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ef-emergency__icon { font-size: 2rem; }

.ef-emergency__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ef-dark);
}

.ef-emergency__sub {
  font-size: 0.9rem;
  color: var(--ef-dark);
  opacity: 0.8;
}

.ef-emergency__phone {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ef-dark);
  white-space: nowrap;
}

.ef-emergency__phone:hover { color: var(--ef-blue-dark); }

/* ── Sections ── */
.ef-section { padding: 80px 0; }
.ef-section--gray { background: var(--ef-gray-light); }
.ef-section--dark { background: var(--ef-dark); color: var(--ef-white); }

.ef-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.ef-section__label {
  display: inline-block;
  color: var(--ef-blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.ef-section--dark .ef-section__label { color: var(--ef-yellow); }

.ef-section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ef-dark);
  margin-bottom: 12px;
}

.ef-section--dark .ef-section__title { color: var(--ef-white); }

.ef-section__desc {
  color: var(--ef-gray);
  max-width: 560px;
  margin: 0 auto;
}

.ef-section--dark .ef-section__desc { color: rgba(255,255,255,0.7); }

/* ── Services Grid ── */
.ef-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ef-service-card {
  background: var(--ef-white);
  border-radius: var(--ef-radius);
  overflow: hidden;
  box-shadow: var(--ef-shadow);
  transition: transform var(--ef-transition), box-shadow var(--ef-transition);
  border-top: 4px solid var(--ef-blue);
}

.ef-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(21,101,192,0.18);
}

.ef-service-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.ef-service-card__body { padding: 24px; }

.ef-service-card__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.ef-service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ef-dark);
  margin-bottom: 8px;
}

.ef-service-card__text {
  font-size: 0.9rem;
  color: var(--ef-gray);
  margin-bottom: 16px;
}

.ef-service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ef-blue);
}

/* ── FAQ Accordion ── */
.ef-faq { max-width: 760px; margin: 0 auto; }

.ef-faq__item {
  border: 1px solid #dde3ec;
  border-radius: var(--ef-radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--ef-white);
}

.ef-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ef-dark);
  text-align: left;
  transition: background var(--ef-transition);
}

.ef-faq__question:hover { background: var(--ef-gray-light); }

.ef-faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--ef-blue);
  color: var(--ef-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--ef-transition), background var(--ef-transition);
}

.ef-faq__item.ef-faq__item--open .ef-faq__icon {
  transform: rotate(45deg);
  background: var(--ef-yellow);
  color: var(--ef-dark);
}

.ef-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.ef-faq__item.ef-faq__item--open .ef-faq__answer {
  max-height: 300px;
}

.ef-faq__answer-inner {
  padding: 0 24px 20px;
  color: var(--ef-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Notfall Form ── */
.ef-notfall {
  background: linear-gradient(135deg, var(--ef-dark) 0%, var(--ef-dark-light) 100%);
  border-radius: 12px;
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
  border: 2px solid var(--ef-blue);
}

.ef-notfall__title {
  color: var(--ef-white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.ef-notfall__sub {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.ef-form__group { margin-bottom: 20px; }

.ef-form__label {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.ef-form__input,
.ef-form__select,
.ef-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--ef-radius);
  background: rgba(255,255,255,0.08);
  color: var(--ef-white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--ef-transition);
}

.ef-form__input:focus,
.ef-form__select:focus,
.ef-form__textarea:focus {
  outline: none;
  border-color: var(--ef-blue);
}

.ef-form__select option { background: var(--ef-dark); color: var(--ef-white); }

.ef-form__textarea { resize: vertical; min-height: 100px; }

.ef-form__hint {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* ── Certifications ── */
.ef-certs {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ef-cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  background: var(--ef-white);
  border-radius: var(--ef-radius);
  box-shadow: var(--ef-shadow);
  border-bottom: 3px solid var(--ef-blue);
  min-width: 160px;
}

.ef-cert__icon { font-size: 2.5rem; }

.ef-cert__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ef-dark);
  text-align: center;
}

.ef-cert__sub {
  font-size: 0.75rem;
  color: var(--ef-gray);
  text-align: center;
}

/* ── Reviews ── */
.ef-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ef-review {
  background: var(--ef-white);
  border-radius: var(--ef-radius);
  padding: 28px;
  box-shadow: var(--ef-shadow);
  border-left: 4px solid var(--ef-yellow);
}

.ef-review__stars { color: var(--ef-yellow); font-size: 1.1rem; margin-bottom: 12px; }

.ef-review__text {
  font-size: 0.95rem;
  color: var(--ef-gray);
  margin-bottom: 16px;
  font-style: italic;
}

.ef-review__author {
  font-weight: 700;
  color: var(--ef-dark);
  font-size: 0.9rem;
}

.ef-review__loc {
  font-size: 0.8rem;
  color: var(--ef-gray);
}

/* ── Contact CTA ── */
.ef-cta {
  background: var(--ef-blue);
  padding: 64px 0;
  text-align: center;
}

.ef-cta__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ef-white);
  margin-bottom: 12px;
}

.ef-cta__text {
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.ef-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Page Hero (subpages) ── */
.ef-page-hero {
  background: var(--ef-dark);
  padding: 60px 0;
  text-align: center;
  border-bottom: 4px solid var(--ef-blue);
}

.ef-page-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--ef-white);
  margin-bottom: 12px;
}

.ef-page-hero__sub { color: rgba(255,255,255,0.7); }

/* ── About / Team ── */
.ef-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ef-about-grid__img {
  border-radius: var(--ef-radius);
  box-shadow: var(--ef-shadow);
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.ef-about-grid__text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ef-dark);
  margin-bottom: 16px;
}

.ef-about-grid__text p {
  color: var(--ef-gray);
  margin-bottom: 16px;
}

.ef-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.ef-stat {
  text-align: center;
  padding: 24px;
  background: var(--ef-gray-light);
  border-radius: var(--ef-radius);
  border-top: 3px solid var(--ef-blue);
}

.ef-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ef-blue);
}

.ef-stat__label {
  font-size: 0.85rem;
  color: var(--ef-gray);
  margin-top: 4px;
}

/* ── Contact Page ── */
.ef-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.ef-contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.ef-contact-info__icon {
  width: 48px; height: 48px;
  background: var(--ef-blue);
  color: var(--ef-white);
  border-radius: var(--ef-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ef-contact-info__title {
  font-weight: 700;
  color: var(--ef-dark);
  margin-bottom: 4px;
}

.ef-contact-info__text { color: var(--ef-gray); font-size: 0.95rem; }

.ef-contact-form {
  background: var(--ef-gray-light);
  padding: 40px;
  border-radius: var(--ef-radius);
  border-top: 4px solid var(--ef-blue);
}

.ef-contact-form .ef-form__label { color: var(--ef-dark); }

.ef-contact-form .ef-form__input,
.ef-contact-form .ef-form__select,
.ef-contact-form .ef-form__textarea {
  background: var(--ef-white);
  color: var(--ef-text);
  border-color: #dde3ec;
}

.ef-contact-form .ef-form__input:focus,
.ef-contact-form .ef-form__select:focus,
.ef-contact-form .ef-form__textarea:focus {
  border-color: var(--ef-blue);
}

.ef-map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--ef-dark-light);
  border-radius: var(--ef-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-top: 32px;
  border: 2px dashed rgba(255,255,255,0.2);
}

/* ── Services Detail ── */
.ef-service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
}

.ef-service-detail--reverse { direction: rtl; }
.ef-service-detail--reverse > * { direction: ltr; }

.ef-service-detail__img {
  border-radius: var(--ef-radius);
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: var(--ef-shadow);
}

.ef-service-detail__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ef-dark);
  margin-bottom: 16px;
}

.ef-service-detail__text { color: var(--ef-gray); margin-bottom: 16px; }

.ef-service-detail__list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--ef-gray);
  font-size: 0.95rem;
}

.ef-service-detail__list li::before {
  content: '<i class="fa-solid fa-bolt"></i>';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* ── Privacy ── */
.ef-privacy { max-width: 800px; margin: 0 auto; }

.ef-privacy h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ef-dark);
  margin: 32px 0 12px;
}

.ef-privacy h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ef-dark);
  margin: 24px 0 8px;
}

.ef-privacy p,
.ef-privacy li {
  color: var(--ef-gray);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.ef-privacy ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }

/* ── Footer ── */
.ef-footer {
  background: var(--ef-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}

.ef-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.ef-footer__brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ef-white);
  margin-bottom: 12px;
}

.ef-footer__text { font-size: 0.9rem; line-height: 1.7; }

.ef-footer__heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ef-yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.ef-footer__links li { margin-bottom: 10px; }

.ef-footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.ef-footer__links a:hover { color: var(--ef-yellow); }

.ef-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.ef-footer__bottom a { color: rgba(255,255,255,0.6); }
.ef-footer__bottom a:hover { color: var(--ef-yellow); }

/* ── Cookie Banner ── */
.ef-cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--ef-dark);
  border-top: 3px solid var(--ef-yellow);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.ef-cookie.ef-cookie--visible { transform: translateY(0); }

.ef-cookie__inner {
  max-width: var(--ef-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ef-cookie__text {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  flex: 1;
  min-width: 240px;
}

.ef-cookie__text a { color: var(--ef-yellow); }

.ef-cookie__actions { display: flex; gap: 12px; flex-shrink: 0; }

.ef-cookie__btn {
  padding: 10px 20px;
  border-radius: var(--ef-radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
  transition: all var(--ef-transition);
}

.ef-cookie__btn--accept {
  background: var(--ef-yellow);
  color: var(--ef-dark);
  border-color: var(--ef-yellow);
}

.ef-cookie__btn--accept:hover { background: var(--ef-yellow-dark); }

.ef-cookie__btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}

.ef-cookie__btn--decline:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--ef-white);
}

/* ── Responsive: 1024px ── */
@media (max-width: 1024px) {
  .ef-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ef-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .ef-about-grid { grid-template-columns: 1fr; }
  .ef-contact-grid { grid-template-columns: 1fr; }
  .ef-service-detail { grid-template-columns: 1fr; }
  .ef-service-detail--reverse { direction: ltr; }
  .ef-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ── Responsive: 768px ── */
@media (max-width: 768px) {
  .ef-burger { display: flex; }

  .ef-nav {
    position: fixed;
    top: 64px; right: 0;
    width: 220px;
    height: calc(100vh - 64px);
    background: var(--ef-dark);
    flex-direction: column;
    padding: 24px 16px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--ef-transition);
    border-left: 2px solid var(--ef-blue);
  }

  .ef-nav.ef-nav--open { transform: translateX(0); }

  .ef-nav__link {
    width: 100%;
    justify-content: flex-start;
    padding-left: 16px;
    gap: 12px;
    font-size: 1.2rem;
  }

  .ef-nav__link::after {
    position: static;
    transform: none;
    opacity: 1;
    background: transparent;
    color: var(--ef-white);
    font-size: 0.95rem;
    padding: 0;
    pointer-events: auto;
  }

  .ef-nav__link:hover::after { transform: none; }

  .ef-hero { min-height: 480px; }
  .ef-hero__content { padding: 60px 0; }
  .ef-section { padding: 60px 0; }
  .ef-services-grid { grid-template-columns: 1fr; }
  .ef-reviews-grid { grid-template-columns: 1fr; }
  .ef-stats { grid-template-columns: 1fr; }
  .ef-notfall { padding: 32px 24px; }
  .ef-emergency__inner { flex-direction: column; text-align: center; }
  .ef-emergency__text { flex-direction: column; }
  .ef-footer__grid { grid-template-columns: 1fr; }
  .ef-certs { gap: 16px; }
  .ef-cert { min-width: 140px; padding: 20px; }
}

/* ── Responsive: 480px ── */
@media (max-width: 480px) {
  .ef-container { padding: 0 16px; }
  .ef-hero__actions { flex-direction: column; }
  .ef-btn { width: 100%; justify-content: center; }
  .ef-emergency__phone { font-size: 1.15rem; }
  .ef-contact-form { padding: 24px 20px; }
  .ef-cookie__inner { flex-direction: column; text-align: center; }
  .ef-cookie__actions { width: 100%; justify-content: center; }
  .ef-footer__bottom { flex-direction: column; text-align: center; }
  .ef-cta__actions { flex-direction: column; align-items: center; }
  .ef-cta__actions .ef-btn { width: 100%; max-width: 280px; }
}
