/* Tema kopyalanınca bu dosya temanın css'i ile değiştirilecek. */
html, body { margin: 0; padding: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
a { color: #0b63ce; text-decoration: none; }
a:hover { text-decoration: underline; }
code { background: #f6f8fa; padding: 2px 6px; border-radius: 4px; }

/* Header language switcher (TR/EN) */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 12px;
  padding: 0 10px;
  height: 44px;
  border-radius: 999px;
  background: rgba(11, 99, 206, 0.08);
}

.language-switcher__link {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--insur-base, #0b63ce);
  text-decoration: none;
}

.language-switcher__link:hover { text-decoration: none; opacity: 0.85; }

.language-switcher__link.is-active { color: var(--insur-black, #111); }
.language-switcher__sep { color: rgba(17, 17, 17, 0.45); font-weight: 800; }

/* Header phone numbers: keep them stacked, but prevent layout drop */
.main-menu__call-content a {
  white-space: nowrap;
}

/* Navbar logo: increase size by 10% */
.main-menu__logo img {
  transform: scale(1.1);
  transform-origin: left center;
  display: block;
}

/* Keep header single-row on desktop (prevent right block dropping) */
@media (min-width: 1200px) {
  .main-menu__wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .main-menu__left,
  .main-menu__right,
  .main-menu__logo,
  .main-menu__main-menu-box {
    float: none !important;
  }

  .main-menu__left {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 18px;
  }

  /* Reduce wasted space (we removed search icon) */
  .main-menu__main-menu-box-search-get-quote-btn {
    padding-left: 20px !important;
  }
}

/* Slightly compact controls on medium desktops */
@media (max-width: 1399px) and (min-width: 1200px) {
  .main-menu__main-menu-box-get-quote-btn {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
  .language-switcher { margin-right: 8px; padding: 0 8px; }
}

/* TR: long labels (e.g., 'Anlaşmalı Şirketler') need more room */
@media (min-width: 1200px) {
  html[lang="tr"] .main-menu__logo { margin-right: 28px; }
  html[lang="tr"] .main-menu .main-menu__list > li + li { margin-left: 28px; }
  html[lang="tr"] .main-menu .main-menu__list > li > a { font-size: 14px; }
}

/* Main slider secondary button */
.main-slider__btn-box .main-slider__btn--secondary {
  margin-left: 12px;
  background-color: #111d32;
}
.main-slider__btn-box .main-slider__btn--secondary:hover {
  background-color: var(--insur-base);
}

/* WhatsApp floating widget */
.wa-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;
}

.wa-fab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.wa-fab__icon {
  font-size: 20px;
  line-height: 1;
}

.wa-fab__text {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
}

.wa-panel {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: 320px;
  max-width: calc(100vw - 36px);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.20);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: all .18s ease;
}

.wa-widget.is-open .wa-panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wa-panel__header {
  background: #25D366;
  padding: 14px 44px 14px 14px;
  color: #fff;
}

.wa-panel__title {
  font-weight: 800;
  line-height: 1.25;
  font-size: 13px;
}

.wa-panel__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.22);
  cursor: pointer;
}
.wa-panel__close:before,
.wa-panel__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}
.wa-panel__close:before { transform: translate(-50%, -50%) rotate(45deg); }
.wa-panel__close:after { transform: translate(-50%, -50%) rotate(-45deg); }

.wa-panel__body {
  padding: 14px;
  background: #f3f6f9;
}

.wa-panel__bubble {
  display: inline-block;
  max-width: 92%;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 600;
  color: #3d4a5c;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

.wa-panel__form {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border-top: 1px solid #e7edf3;
}

.wa-panel__input {
  flex: 1;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #e2e8ef;
  padding: 0 14px;
  outline: none;
}

.wa-panel__send {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Mobile: keep it compact */
@media (max-width: 767px) {
  .wa-fab__text { display: none; }
  .wa-panel { bottom: 54px; width: 92vw; }
}

/* bootstrap-select dropdown (selectpicker) should overlay footer/sections */
.bootstrap-select .dropdown-menu {
  z-index: 999999 !important;
}

/* Ensure dropdown is not clipped by section wrappers */
.get-insurance,
.get-insurance .container,
.get-insurance .row,
.get-insurance .get-insurance__right,
.get-insurance .get-insurance__content {
  overflow: visible;
}

/* Make selectpicker look like contact inputs (comment-form) */
.comment-form__input-box .bootstrap-select {
  width: 100% !important;
}

.comment-form__input-box .bootstrap-select > .dropdown-toggle {
  height: 60px;
  width: 100%;
  border: none !important;
  background-color: var(--insur-extra) !important;
  padding-left: 30px !important;
  padding-right: 30px !important;
  outline: none !important;
  font-size: 14px !important;
  color: var(--insur-gray) !important;
  display: block;
  border-radius: var(--insur-bdr-radius) !important;
  font-weight: 500 !important;
  letter-spacing: var(--insur-letter-spacing) !important;
  line-height: 60px !important;
  box-shadow: none !important;
}

.comment-form__input-box .bootstrap-select > .dropdown-toggle::after {
  display: none !important;
}

.comment-form__input-box .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 14px;
  color: var(--insur-gray);
  display: flex;
  align-items: center;
}

.comment-form__input-box .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: var(--insur-letter-spacing) !important;
  color: var(--insur-gray) !important;
}

/* Form submit feedback (AJAX result) */
.result {
  margin-top: 14px;
}

.form-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.45;
}

.form-alert__icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.form-alert__text {
  font-weight: 700;
}

.form-alert--success {
  background: #ecfdf3;
  border-color: #b7f0c7;
  color: #0f5132;
}

.form-alert--success .form-alert__icon {
  background: #0f5132;
  color: #ffffff;
}

.form-alert--error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #7f1d1d;
}

.form-alert--error .form-alert__icon {
  background: #7f1d1d;
  color: #ffffff;
}

/* --- Partner logo sizing (Brand slider + Partners grid) --- */

/* Brand One slider: fixed logo box */
.brand-one__main-content .swiper-slide {
  height: 80px;
}

.brand-one__main-content .swiper-slide img {
  width: auto;
  height: auto;
  max-height: 52px;
  max-width: 180px;
  object-fit: contain;
  opacity: 1; /* override theme hover-only visibility */
}

.brand-one__main-content .swiper-slide img:hover {
  opacity: 1;
}

/* Contact page: "Get directions" button below address */
.contact-page__directions {
  margin-top: 18px;
}

.contact-page__directions-btn {
  padding: 12px 18px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.contact-page__directions-btn:hover {
  text-decoration: none;
}

/* Partners page (portfolio layout): fixed logo card image area */
.portfolio__img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background-color: var(--insur-extra);
}

.portfolio__img img {
  width: auto !important;
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
}

/* Preloader: make loader.png larger */
.preloader__image {
  background-size: 120px auto !important;
}

/* Quote page (two-step) */
.quote-steps__nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.quote-steps__pill {
  border: 1px solid #dfe3e7;
  background: var(--insur-white);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  letter-spacing: var(--insur-letter-spacing);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--insur-black);
}

.quote-steps__pill[disabled] {
  opacity: .45;
  cursor: not-allowed;
}

.quote-steps__pill.is-active {
  border-color: var(--insur-base);
  background: rgba(237, 28, 36, 0.08);
}

.quote-steps__num {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background: var(--insur-extra);
  color: var(--insur-black);
}

.quote-steps__pill.is-active .quote-steps__num {
  background: var(--insur-base);
  color: var(--insur-white);
}

.quote-steps__hint {
  text-align: center;
  margin: 0 0 18px;
  color: var(--insur-gray);
}

.quote-step {
  display: none;
}
.quote-step.is-active {
  display: block;
}

.quote-service {
  width: 100%;
  border: 1px solid #dfe3e7;
  background: var(--insur-white);
  border-radius: 20px;
  padding: 20px 16px;
  margin-bottom: 18px;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.quote-service:hover {
  transform: translateY(-2px);
  border-color: rgba(237, 28, 36, 0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.quote-service__icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: var(--insur-extra);
  color: var(--insur-base);
  font-size: 24px;
  margin-bottom: 10px;
}

.quote-service__img img {
  display: none; /* keep layout simple; icon is primary */
}

.quote-service__title {
  display: block;
  font-weight: 700;
  color: var(--insur-black);
  font-size: 16px;
  line-height: 1.25;
}

.quote-steps__headline {
  font-size: 34px;
  font-weight: 700;
  margin: 6px 0 18px;
  color: var(--insur-black);
}
.quote-steps__service {
  color: var(--insur-base);
  margin-right: 6px;
}


