/* Banner page – use accounting image from Pexels */
.banner-page {
  background-image: url("https://images.pexels.com/photos/4386373/pexels-photo-4386373.jpeg?auto=compress&cs=tinysrgb&w=1920&fit=crop");
  background-size: cover;
  background-position: center;
}

/* Keep header layout LTR so it stays in same place when switching language (RTL page) */
.header[dir="ltr"] .topbar .info { text-align: left; }
.header[dir="ltr"] .request-quote,
.header[dir="ltr"] .pull-right { float: right !important; }
.header[dir="ltr"] .navbar-main .nav.navbar-nav { float: right !important; }
.header[dir="ltr"] .navbar-main .nav.navbar-nav > li { float: left !important; }
.header[dir="ltr"] .lang-switcher { margin-inline-start: 12px; margin-inline-end: 0; }

.navbar-main {
  transition: box-shadow .2s ease, background-color .2s ease;
}

.navbar-main.stiky {
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.navbar-main .nav > li > a {
  letter-spacing: .4px;
}

.navbar-main .nav > li.active > a,
.navbar-main .nav > li > a:hover,
.navbar-main .nav > li > a:focus {
  color: #1f5eff;
}

.topbar .request-quote a {
  border-radius: 6px;
}

/* Language toggle - topbar: single button, click shows other language */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  margin-inline-start: 12px;
  vertical-align: middle;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.lang-switcher .lang-btn {
  padding: 5px 14px;
  min-width: 40px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: #fff;
  color: #222;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.lang-switcher .lang-btn-single {
  border-radius: 6px;
}

.lang-switcher .lang-btn:hover {
  background: #f5f5f5;
  color: #009144;
  border-color: #009144;
  box-shadow: 0 2px 6px rgba(0, 145, 68, 0.2);
}

.lang-switcher .lang-btn:active {
  transform: scale(0.98);
}

/* ========== FAQ Page – match site design ========== */
.faq-section .section-heading.center {
  margin-bottom: 10px;
}

.faq-section .subheading {
  margin-bottom: 40px;
}

.faq-state-message {
  color: #555;
  font-size: 15px;
  padding: 30px 20px;
  margin: 0;
}

.faq-alert {
  background: #fff3cd;
  color: #856404;
  padding: 15px 20px;
  border-radius: 6px;
  border: 1px solid #ffc107;
  margin-bottom: 20px;
  font-size: 14px;
}

.faq-accordion {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-accordion-item {
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}

.faq-accordion-header {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  text-align: start;
  background: #009144;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-accordion-trigger:hover {
  background: #007a39;
  color: #fff;
}

.faq-accordion-item.is-open .faq-accordion-trigger {
  background: #eff3f6;
  color: #009144;
}

.faq-accordion-item.is-open .faq-accordion-trigger:hover {
  background: #e2e8ed;
  color: #007a39;
}

.faq-accordion-title {
  flex: 1;
}

.faq-accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.faq-accordion-item.is-open .faq-accordion-icon {
  background: rgba(251, 215, 113, 0.5);
  color: #222;
}

.faq-accordion-body {
  background: #eff3f6;
}

.faq-accordion-content {
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.65;
  color: #333;
  font-family: "Open Sans", sans-serif;
}

.faq-accordion-content p {
  margin: 0 0 12px 0;
}

.faq-accordion-content p:last-child {
  margin-bottom: 0;
}

.faq-accordion-content a {
  color: #009144;
  text-decoration: underline;
}

.faq-accordion-content a:hover {
  color: #007a39;
}
