/*
Theme Name: Gladfix
Theme URI: https://xn--elektriker-in-der-nhe-o2b.at/
Description: Gladfix — Electrician Services WordPress Theme (Windfall child)
Author: Gladfix
Version: 1.0.0
Text Domain: gladfix
Template: windfall
*/

/* ============================================================
   GLADFIX (Windfall) — Compiled Theme Styles
   ============================================================ */
:root {
  --wndfal-primary: #e3b505;
  --wndfal-primary-dark: #b88f00;
  --wndfal-primary-light: #fff8e1;
  --wndfal-dark: #1a1d24;
  --wndfal-dark-2: #252932;
  --wndfal-text: #5a6075;
  --wndfal-heading: #1a1d24;
  --wndfal-muted: #8089a3;
  --wndfal-border: #e8eaef;
  --wndfal-bg-light: #f6f7fb;
  --wndfal-white: #ffffff;
  --wndfal-radius: 4px;
  --wndfal-shadow: 0 6px 24px rgba(26, 29, 36, 0.06);
  --wndfal-shadow-hover: 0 14px 40px rgba(26, 29, 36, 0.12);
  --wndfal-font-body: "Open Sans", system-ui, Arial, sans-serif;
  --wndfal-font-head: "Rubik", "Open Sans", system-ui, Arial, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: var(--wndfal-font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--wndfal-text);
  background: var(--wndfal-white);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--wndfal-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: var(--wndfal-primary-dark);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--wndfal-font-head);
  color: var(--wndfal-heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 14px;
}
h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}
h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 1rem;
}

/* Bootstrap-style grid */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.row.align-items-center {
  align-items: center;
}
.row.align-items-start {
  align-items: flex-start;
}
[class*="col-"] {
  padding: 0 15px;
  width: 100%;
}
.col-12,
.col-sm-6,
.col-md-3,
.col-md-4,
.col-md-6,
.col-md-8,
.col-md-12,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-8 {
    flex: 0 0 66.667%;
    max-width: 66.667%;
  }
}
@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .col-lg-5 {
    flex: 0 0 41.667%;
    max-width: 41.667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333%;
    max-width: 58.333%;
  }
  .col-lg-8 {
    flex: 0 0 66.667%;
    max-width: 66.667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
}
.textcenter {
  text-align: center;
}
.textright {
  text-align: right;
}
.textleft {
  text-align: left;
}
@media (min-width: 768px) {
  .md-textright {
    text-align: right;
  }
}
.row.flex-row-reverse {
  flex-direction: row-reverse;
}

/* Buttons */
.wndfal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--wndfal-primary);
  color: var(--wndfal-dark);
  font-family: var(--wndfal-font-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: 0;
  border-radius: var(--wndfal-radius);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.wndfal-btn:hover {
  background: var(--wndfal-dark);
  color: var(--wndfal-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(227, 181, 5, 0.35);
}
.wndfal-btn .btn-text {
  position: relative;
  z-index: 2;
}
.wndfal-btn .btn-text-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wndfal-btn.wndfal-white-btn {
  background: var(--wndfal-white);
  color: var(--wndfal-dark);
}
.wndfal-btn.wndfal-white-btn:hover {
  background: var(--wndfal-primary);
  color: var(--wndfal-dark);
}
.wndfal-btn.wndfal-outline-btn {
  background: transparent;
  color: var(--wndfal-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.wndfal-btn.wndfal-outline-btn:hover {
  background: var(--wndfal-primary);
  color: var(--wndfal-dark);
  border-color: var(--wndfal-primary);
}
.wndfal-btns-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Section title */
.section-title-wrap {
  margin-bottom: 36px;
}
.section-title-wrap.textcenter {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.section-title-wrap .vt-sub-title,
.wndfal-sub-title {
  display: inline-block;
  font-family: var(--wndfal-font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--wndfal-primary-dark);
  background: var(--wndfal-primary-light);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.section-title-wrap h2 {
  margin-bottom: 12px;
}
.section-title-wrap p {
  color: var(--wndfal-text);
  font-size: 15px;
}
.wndfal-overlay .section-title-wrap .vt-sub-title {
  background: rgba(227, 181, 5, 0.18);
  color: var(--wndfal-primary);
}

/* Wrap */
.wndfal-main-wrap {
  position: relative;
}
.main-wrap-inner {
  overflow: hidden;
}

/* Header */
.wndfal-header {
  background: var(--wndfal-white);
  box-shadow: 0 4px 18px rgba(26, 29, 36, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.wndfal-header .row {
  align-items: center;
  padding: 18px 0;
  gap: 12px 0;
}
.wndfal-header .header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.wndfal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.wndfal-brand img {
  height: 50px;
  width: auto;
}
.wndfal-brand .text-logo {
  display: flex;
  flex-direction: column;
  font-family: var(--wndfal-font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--wndfal-heading);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.wndfal-brand .text-logo small {
  font-size: 11px;
  font-weight: 500;
  color: var(--wndfal-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.wndfal-brand .text-logo span {
  color: var(--wndfal-primary);
}

/* Header contact */
.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-contact .wndfal-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wndfal-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wndfal-primary-dark);
  font-size: 18px;
  flex-shrink: 0;
}
.header-contact .contact-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.header-contact .contact-info small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--wndfal-muted);
  font-weight: 600;
}
.header-contact .contact-info a,
.header-contact .contact-info span {
  font-family: var(--wndfal-font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--wndfal-heading);
}
.header-contact .contact-info a:hover {
  color: var(--wndfal-primary-dark);
}

/* Navigation */
.navigation-wrap {
  border-top: 1px solid var(--wndfal-border);
  background: var(--wndfal-white);
}
.wndfal-navigation {
  position: relative;
}
.main-navigation {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.main-navigation > li {
  position: relative;
}
.main-navigation > li > a {
  display: block;
  font-family: var(--wndfal-font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 18px 18px;
  color: var(--wndfal-heading);
  position: relative;
}
.main-navigation > li > a:after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  height: 2px;
  background: var(--wndfal-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.main-navigation > li:hover > a,
.main-navigation > li.current-menu-item > a {
  color: var(--wndfal-primary-dark);
}
.main-navigation > li:hover > a:after,
.main-navigation > li.current-menu-item > a:after {
  transform: scaleX(1);
}
.meanmenu-reveal {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  color: var(--wndfal-heading);
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .main-navigation {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--wndfal-bg-light);
  }
  .main-navigation > li {
    width: 100%;
    border-bottom: 1px solid var(--wndfal-border);
  }
  .main-navigation > li > a {
    padding: 14px 18px;
  }
  .main-navigation > li > a:after {
    display: none;
  }
  .meanmenu-reveal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .wndfal-navigation.is-open .main-navigation {
    display: flex;
  }
  .navigation-wrap .container {
    position: relative;
  }
  .wndfal-navigation {
    padding: 6px 0;
  }
}

/* Hero Swiper */
.wndfal-swiper {
  position: relative;
  background: linear-gradient(135deg, #1a1d24 0%, #252932 55%, #1a1d24 100%);
  color: #fff;
  overflow: hidden;
}
.wndfal-swiper:before {
  content: "";
  position: absolute;
  top: -100px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(227, 181, 5, 0.18) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.wndfal-swiper:after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(227, 181, 5, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.swiper-container {
  position: relative;
  z-index: 2;
  padding: 90px 0 80px;
}
.swiper-slide-content h1 {
  color: var(--wndfal-white);
  margin-bottom: 20px;
}
.swiper-slide-content h1 span {
  color: var(--wndfal-primary);
}
.swiper-slide-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #c8ccd8;
  margin-bottom: 28px;
}
.wndfal-swiper .vt-sub-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 181, 5, 0.16);
  border: 1px solid rgba(227, 181, 5, 0.4);
  color: var(--wndfal-primary);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.swiper-slide-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
}
.swiper-slide-image:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(227, 181, 5, 0) 35%,
    rgba(227, 181, 5, 0.15) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.swiper-slide-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.wndfal-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 26px;
  margin-top: 30px;
}
.wndfal-stats h3 {
  font-size: 28px;
  color: var(--wndfal-primary);
  margin: 0 0 4px;
}
.wndfal-stats h3 + span {
  font-size: 12px;
  color: #a4a9b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Features bar */
.wndfal-features.features-style-one {
  background: var(--wndfal-primary);
  padding: 22px 0;
}
.wndfal-features.features-style-one .row {
  margin: 0;
}
.wndfal-features.features-style-one .features-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wndfal-dark);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 0;
  justify-content: center;
  text-align: left;
}
.wndfal-features.features-style-one .features-item i {
  font-size: 18px;
  color: var(--wndfal-dark);
  background: rgba(0, 0, 0, 0.08);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Sections */
section {
  padding: 90px 0;
  position: relative;
}
section.bg-light {
  background: var(--wndfal-bg-light);
}
section.bg-dark-section {
  background: var(--wndfal-dark);
  color: #c8ccd8;
}
section.bg-dark-section h2,
section.bg-dark-section h3,
section.bg-dark-section h4 {
  color: var(--wndfal-white);
}
section.bg-dark-section .section-title-wrap p {
  color: #a4a9b8;
}

/* Welcome */
.wndfal-welcome .row {
  align-items: center;
}
.wndfal-welcome .wndfal-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--wndfal-shadow-hover);
}
.wndfal-welcome .wndfal-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.wndfal-welcome .wndfal-image:hover img {
  transform: scale(1.03);
}
.wndfal-welcome .wndfal-image:after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: 80px;
  height: 80px;
  background: var(--wndfal-primary);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}
.wndfal-welcome .photo-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(26, 29, 36, 0.85);
  color: #fff;
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
}
.wndfal-welcome .welcome-content h3 {
  margin-top: 24px;
  color: var(--wndfal-heading);
}
.wndfal-welcome .welcome-content h3:first-child {
  margin-top: 0;
}

/* Service lists */
.wndfal-service-list {
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
}
.wndfal-service-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--wndfal-border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.wndfal-service-list li:last-child {
  border-bottom: 0;
}
.wndfal-service-list li:before {
  content: "\f0e7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--wndfal-primary-dark);
  font-size: 14px;
  width: 26px;
  height: 26px;
  background: var(--wndfal-primary-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wndfal-check-list {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
}
.wndfal-check-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--wndfal-text);
}
.wndfal-check-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--wndfal-primary-dark);
  flex-shrink: 0;
}

/* Services style three */
.wndfal-services.services-style-three .wndfal-services-item {
  background: var(--wndfal-white);
  padding: 36px 28px;
  border: 1px solid var(--wndfal-border);
  border-radius: 6px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}
.wndfal-services.services-style-three .wndfal-services-item:hover {
  box-shadow: var(--wndfal-shadow-hover);
  transform: translateY(-6px);
  border-color: var(--wndfal-primary);
}
.wndfal-services.services-style-three .wndfal-icon {
  width: 72px;
  height: 72px;
  background: var(--wndfal-primary-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--wndfal-primary-dark);
  font-size: 30px;
  transition: all 0.3s ease;
}
.wndfal-services.services-style-three .wndfal-services-item:hover .wndfal-icon {
  background: var(--wndfal-primary);
  color: var(--wndfal-dark);
}
.wndfal-services.services-style-three .service-info h3 {
  margin-bottom: 10px;
}
.wndfal-services.services-style-three .service-info p {
  color: var(--wndfal-text);
  margin: 0;
  font-size: 14px;
}
.wndfal-services.services-style-three .row {
  row-gap: 24px;
}

/* Feature list */
.wndfal-feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  max-width: 720px;
}
.wndfal-feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}
.wndfal-feature-list li:before {
  content: "\f0a4";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--wndfal-primary-dark);
  margin-top: 2px;
}

/* Customers / Cities */
.wndfal-customers .cities-wrap {
  background: var(--wndfal-white);
  border: 1px solid var(--wndfal-border);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--wndfal-shadow);
  margin-top: 32px;
}
.wndfal-customers .cities-wrap > p {
  font-family: var(--wndfal-font-head);
  font-weight: 700;
  color: var(--wndfal-heading);
  font-size: 15px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wndfal-customers .cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wndfal-customers .city-tag {
  background: var(--wndfal-primary-light);
  color: var(--wndfal-primary-dark);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 30px;
  border: 1px solid rgba(227, 181, 5, 0.25);
  transition: all 0.25s ease;
}
.wndfal-customers .city-tag:hover {
  background: var(--wndfal-primary);
  color: var(--wndfal-dark);
}

/* Pricing table */
.wndfal-pricing {
  margin-top: 30px;
}
.wndfal-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--wndfal-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--wndfal-shadow);
  font-size: 14px;
}
.wndfal-table thead th {
  background: var(--wndfal-dark);
  color: var(--wndfal-white);
  padding: 18px 24px;
  text-align: left;
  text-transform: uppercase;
  font-family: var(--wndfal-font-head);
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.wndfal-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--wndfal-border);
  color: var(--wndfal-text);
}
.wndfal-table tbody tr:last-child td {
  border-bottom: 0;
}
.wndfal-table tbody tr:nth-child(even) td {
  background: var(--wndfal-bg-light);
}
.wndfal-table tbody td:last-child {
  color: var(--wndfal-primary-dark);
  font-weight: 700;
  font-family: var(--wndfal-font-head);
  white-space: nowrap;
}
.wndfal-table tbody tr:hover td {
  background: var(--wndfal-primary-light);
}

/* FAQ */
.wndfal-faq .faq-group {
  margin-bottom: 34px;
}
.wndfal-faq .faq-group-title {
  font-family: var(--wndfal-font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--wndfal-primary-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--wndfal-border);
}
.wndfal-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wndfal-accordion .accordion-item {
  background: var(--wndfal-white);
  border: 1px solid var(--wndfal-border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.wndfal-accordion .accordion-item:hover {
  box-shadow: var(--wndfal-shadow);
}
.wndfal-accordion .accordion-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  font-family: var(--wndfal-font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--wndfal-heading);
  transition: background 0.2s ease;
}
.wndfal-accordion .accordion-head:hover {
  background: var(--wndfal-bg-light);
}
.wndfal-accordion .accordion-head h4 {
  margin: 0;
  font: inherit;
  color: inherit;
}
.wndfal-accordion .accordion-head .accordion-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wndfal-primary-light);
  color: var(--wndfal-primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.25s ease;
}
.wndfal-accordion .accordion-item.active .accordion-head {
  background: var(--wndfal-primary);
  color: var(--wndfal-dark);
}
.wndfal-accordion .accordion-item.active .accordion-icon {
  background: rgba(26, 29, 36, 0.15);
  color: var(--wndfal-dark);
  transform: rotate(45deg);
}
.wndfal-accordion .accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.wndfal-accordion .accordion-item.active .accordion-body {
  max-height: 600px;
}
.wndfal-accordion .accordion-body-inner {
  padding: 0 22px 18px;
  color: var(--wndfal-text);
  line-height: 1.75;
  font-size: 14.5px;
}

/* Emergency / Contact */
.wndfal-emergency.emergency-style-two {
  background: var(--wndfal-dark);
  color: #c8ccd8;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.wndfal-emergency.emergency-style-two:before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(227, 181, 5, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.wndfal-emergency.emergency-style-two h2 {
  color: var(--wndfal-white);
}
.wndfal-contact {
  position: relative;
  z-index: 2;
}
.wndfal-contact .contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.wndfal-contact .contact-detail .wndfal-icon {
  width: 48px;
  height: 48px;
  background: rgba(227, 181, 5, 0.15);
  color: var(--wndfal-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.wndfal-contact .contact-detail .contact-info-text small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8089a3;
  margin-bottom: 3px;
  font-weight: 600;
}
.wndfal-contact .contact-detail .contact-info-text a,
.wndfal-contact .contact-detail .contact-info-text span {
  font-family: var(--wndfal-font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--wndfal-white);
  line-height: 1.5;
}
.wndfal-contact .contact-detail .contact-info-text a:hover {
  color: var(--wndfal-primary);
}
.wndfal-contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 42px 30px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.wndfal-contact-card img {
  height: 60px;
  width: auto;
  margin: 0 auto 22px;
}
.wndfal-contact-card p {
  color: #c8ccd8;
  margin-bottom: 24px;
  font-size: 15px;
}
.wndfal-contact-card .wndfal-btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 18px;
}
.wndfal-contact-card small {
  display: block;
  color: #7c8295;
  font-size: 12px;
  margin-top: 14px;
}

/* Footer */
.wndfal-footer {
  background: #13151a;
  color: #8089a3;
}
.wndfal-footer .footer-wrap {
  padding: 62px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.wndfal-footer .widget-title {
  font-family: var(--wndfal-font-head);
  font-size: 16px;
  color: var(--wndfal-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--wndfal-primary);
  display: inline-block;
}
.wndfal-footer .footer-widget p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.8;
}
.wndfal-footer .footer-widget a {
  color: #b0b6cc;
}
.wndfal-footer .footer-widget a:hover {
  color: var(--wndfal-primary);
}
.wndfal-footer .footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wndfal-footer .footer-widget ul li {
  padding: 6px 0;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.wndfal-footer .footer-widget ul li i {
  color: var(--wndfal-primary);
  margin-top: 5px;
  font-size: 13px;
  flex-shrink: 0;
}
.wndfal-footer .footer-widget .footer-brand img {
  margin-bottom: 18px;
}
.wndfal-copyright {
  padding: 22px 0;
  font-size: 13px;
  color: #7c8295;
}
.wndfal-copyright .row {
  align-items: center;
}
.wndfal-copyright a {
  color: var(--wndfal-primary);
}
.wndfal-copyright a:hover {
  color: var(--wndfal-primary-dark);
}

/* Back to top */
.wndfal-back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wndfal-primary);
  color: var(--wndfal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 22px rgba(227, 181, 5, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 50;
}
.wndfal-back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.wndfal-back-top:hover {
  background: var(--wndfal-dark);
  color: var(--wndfal-primary);
}

/* Responsive */
@media (max-width: 991px) {
  section {
    padding: 64px 0;
  }
  .swiper-container {
    padding: 60px 0;
  }
  .swiper-slide-image {
    margin-top: 32px;
  }
  .swiper-slide-image img {
    height: 280px;
  }
  .wndfal-welcome .wndfal-image {
    margin-top: 28px;
  }
  .wndfal-welcome .wndfal-image img {
    height: 320px;
  }
  .wndfal-header .header-right {
    justify-content: flex-end;
  }
  .header-contact {
    display: none;
  }
}
@media (max-width: 767px) {
  section {
    padding: 52px 0;
  }
  .wndfal-stats {
    gap: 22px;
  }
  .wndfal-stats h3 {
    font-size: 24px;
  }
  .wndfal-features.features-style-one .features-item {
    justify-content: flex-start;
    font-size: 12px;
  }
  .wndfal-table thead {
    display: none;
  }
  .wndfal-table,
  .wndfal-table tbody,
  .wndfal-table tr,
  .wndfal-table td {
    display: block;
    width: 100%;
  }
  .wndfal-table tbody td {
    border-bottom: 0;
    padding: 8px 18px;
  }
  .wndfal-table tbody td:first-child {
    padding-top: 16px;
    font-weight: 600;
    color: var(--wndfal-heading);
  }
  .wndfal-table tbody td:last-child {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--wndfal-border);
  }
  .wndfal-header .row {
    padding: 14px 0;
  }
  .wndfal-brand img {
    height: 42px;
  }
  .wndfal-brand .text-logo {
    font-size: 15px;
  }
  .wndfal-brand .text-logo small {
    display: none;
  }
  /* Hide text logo on mobile */
  .text-logo.d-none-mobile {
    display: none;
  }
  /* Header: logo + btn + burger on one line */
  .wndfal-header .row {
    flex-wrap: nowrap;
    align-items: center;
    padding: 10px 0;
  }
  .wndfal-header .col-lg-3 {
    flex: 0 0 auto;
    width: auto;
  }
  .wndfal-header .col-lg-9 {
    flex: 1 1 auto;
  }
  .wndfal-brand {
    gap: 0;
  }
  /* Header phone button — smaller on mobile */
  .wndfal-header .wndfal-btn {
    padding: 10px 14px;
    font-size: 13px;
    letter-spacing: 0;
  }
  .wndfal-header .wndfal-btn .btn-text {
    font-size: 13px;
  }
  /* Service list — bold title on its own line */
  .wndfal-service-list li {
    flex-direction: column;
    gap: 2px;
  }
  .wndfal-service-list li strong {
    display: block;
    color: var(--wndfal-heading);
  }
  /* Topbar hidden on mobile */
  .wndfal-topbar {
    display: none;
  }
  /* Emergency/contact card stacks neatly */
  .wndfal-emergency .emergency-content,
  .wndfal-emergency .emergency-card {
    margin-top: 32px;
  }
}
