@charset "UTF-8";

.calculator {
  width: 100%; /* Düzeltildi: 100½ -> 100% */
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  color: #3a3a3a;
  padding: 30px 0;
  position: relative;
}

.calculator .left {
  width: 54%;
  padding-right: 47px;
}

.calculator .right {
  width: 46%;
}

/* SADECE sağ kolonun normal açıklama paragrafları (result/cta hariç) */
.calculator .right > p{
  font-size: 14px !important;
}
.calculator .right > p strong{
  display: block;
  font-size: 21px;
}

.calculator .cTitle {
  font-size: 18px;
  display: block;
  padding-bottom: 5px;
}

/* --- ESKİ VE HATALI KODLAR BURADAN SİLİNDİ (Çakışma önlendi) --- */

.calculator .result {
  background: #a0e0d4;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  margin-bottom: 25px;
  padding: 44px 20px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* start -> flex-start */
}

/* Üst satır: Tahmini Fiyat + fiyat */
.calculator .result .resultTop{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;   /* alttan hizalı */
  gap: 6px;
}

/* Tahmini Fiyat (solda) */
.calculator .result .resultTitle{
  font-weight: 800;
  line-height: 1.15;
}

/* Fiyat (sağda) */
.calculator .result #result{
  width: auto;
  font-size: 30px;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
  line-height: 1;
}

/* Alt satırlar */
.calculator .result .resultNote,
.calculator .result .resultMin{
  width: 100%;
  font-size: 14px !important;
  line-height: 1.30;
  margin-top: 6px;
  padding-bottom: 0 !important;
}

.calculator .calculatorCta {
  background: #fff4dc;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  margin-bottom: 30px;
  padding: 25px 20px 35px;
}

/* ✅ CTA (HTML değişti): başlık + metin class ile */
.calculator .calculatorCta p{
  margin: 0;
  font-size: 14px;
  line-height: 1.30;
}

.calculator .calculatorCta .ctaTitle{
  display: block;
  font-weight: 800;
  font-size: 21px;
  line-height: 1.15;
  margin-bottom: 6px;
}

.calculator .calculatorCta .ctaText{
  display: block;
  font-size: 14px;
  line-height: 1.30;
}

.calculator .calculatorCta .btn {
  background: #ffc220;
  color: #3a3a3a;
  text-align: center;
  justify-content: center;
  height: 40px;
}

.calculator .calculatorCta .btn span {
  padding-left: 0;
}

.calculator .cRow {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 16px;
}

.calculator .cRow.officeSize {
  align-items: start;
}

.calculator .cRow.officeSize svg {
  width: 19%;
}

/* =========================================================
   ✅ a -> button dönüşümü için ana stiller (GENİŞLETİLDİ)
   ========================================================= */
.calculator .cRow a,
.calculator .cRow button.calcBtn {
  width: 21%;
  border: 2px solid #d2d4da;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  color: #3a3a3a;
  padding-top: 5px;
}

/* Button default stil reset */
.calculator .cRow button.calcBtn {
  background: transparent;
  border: 2px solid #d2d4da;
  padding-top: 5px;
  cursor: pointer;
  font: inherit;
  line-height: normal;
}

.calculator .cRow a span,
.calculator .cRow button.calcBtn span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  padding: 3px 0;
}

.calculator .cRow a img,
.calculator .cRow button.calcBtn img {
  display: block;
  width: 38px;
  height: 38px;
  margin: auto;
  object-fit: contain;
  object-position: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.calculator .cRow a:hover,
.calculator .cRow a.selected,
.calculator .cRow button.calcBtn:hover,
.calculator .cRow button.calcBtn.selected {
  background: #40c6ac;
  color: #fff;
}

.calculator .cRow a:hover img,
.calculator .cRow a.selected img,
.calculator .cRow button.calcBtn:hover img,
.calculator .cRow button.calcBtn.selected img {
  filter: brightness(100);
}

.calculator .cRow a.selected,
.calculator .cRow button.calcBtn.selected {
  opacity: 1 !important;
}

/* Disabled (JS button.disabled + aria-disabled) */
.calculator .cRow button.calcBtn.disabled,
.calculator .cRow button.calcBtn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}

.calculator .cRow.serviceType {
  padding-top: 5px;
}

.calculator .cRow.cleaningFrequencyType {
  padding-top: 4px;
}

.calculator .checks {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.calculator .officeSizeSlider {
  width: 75%;
}

.calculator #officeSizeValue {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  margin-bottom: 15px;
}

.calculator #officeSizeValue #officeSizeManual {
  display: block;
  border: 2px solid #d2d4da;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  font-size: 15px;
  padding: 5px 0;
  width: 94px;
  text-align: center;
  transform: scale(1.2);
  transform-origin: bottom right;
  margin-top: -18px;

  background: #fff;
  color: #3a3a3a;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.calculator .pipe {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  color: #686868;
  font-size: 13px;
  justify-content: space-between;
  padding: 3px;
  margin-top: 12px;
}

.calculator .calculatorCheck,
.calculator .calculatorRadio {
  width: 47%;
  position: relative;
  margin: 7px 0;
}

.calculator .calculatorCheck input[type=checkbox],
.calculator .calculatorCheck input[type=radio],
.calculator .calculatorRadio input[type=checkbox],
.calculator .calculatorRadio input[type=radio] {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}

.calculator .calculatorCheck label,
.calculator .calculatorRadio label {
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  align-items: center;
  cursor: pointer;
}

.calculator .calculatorCheck label:before,
.calculator .calculatorRadio label:before {
  width: 25px;
  height: 25px;
  border: 1px solid #3a3a3a;
  content: "";
  display: block;
  margin-right: 5px;
  text-align: center;
  color: #40c6ac;
  font-size: 18px;
  font-weight: bold;
}

.calculator .calculatorCheck label span,
.calculator .calculatorRadio label span {
  width: 60%;
}

.calculator .calculatorCheck label img,
.calculator .calculatorRadio label img {
  display: block;
  height: 25px;
  width: auto;
}

.calculator .calculatorCheck input[type=checkbox]:checked + label:before,
.calculator .calculatorCheck input[type=radio]:checked + label:before,
.calculator .calculatorRadio input[type=checkbox]:checked + label:before,
.calculator .calculatorRadio input[type=radio]:checked + label:before {
  content: "✓";
}

.calculator .calculatorCheck input[type=number],
.calculator .calculatorRadio input[type=number] {
  display: none;
  width: 95%;
  margin-top: 5px;
  font-size: 14px;
  height: 30px;
}

.calculator .calculatorCheck input[type=checkbox]:checked + label + input,
.calculator .calculatorRadio input[type=checkbox]:checked + label + input {
  display: block;
}

.calculator .calculatorRadio {
  margin: 0;
}

.calculator .calculatorRadio label {
  font-size: 14px;
  font-weight: bold;
}

.calculator .calculatorRadio label span {
  width: 55%;
}

.calculator .calculatorRadio label img {
  height: 35px;
}

/* Functional styling for noUiSlider */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

.noUi-target {
  background: #d2d4da;
  border-radius: 4px;
  border: 1px solid #d2d4da;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3FB8AF;
}

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.slider-styled,
.slider-styled .noUi-handle {
  box-shadow: none;
}

.slider-styled .noUi-handle::before,
.slider-styled .noUi-handle::after {
  display: none;
}

.slider-styled .noUi-handle .noUi-touch-area {
  border: 1px solid transparent;
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  width: auto;
  height: auto;
}

#officeSize {
  height: 10px;
}

#officeSize .noUi-connect {
  background: #40c6ac;
}

#officeSize .noUi-handle {
  width: 24px;
  height: 24px;
  top: -7px;
  right: -12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ffffff;
  cursor: -webkit-grab;
  cursor: grab;
  box-shadow: 0 0 0 3px rgba(64, 198, 172, 0.35);
}

#officeSize .noUi-handle:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* =========================================
   DIAMOND MASTER CSS (FİNAL EKLENTİLER)
   ========================================= */

/* 1. Ofis İkonu: Mobilde taşmayı önler, ortalar */
/* 695–717: Ofis ikonu + slider birbirini öpmesin (mobil + masaüstü) */
.calculator .cRow.officeSize img.office-icon {
  width: 25%;
  height: auto;
  margin: 0; /* 0 auto yerine 0 */
  display: block;
  pointer-events: none;
}

.calculator .cRow.officeSize {
  justify-content: flex-start; /* space-between'i ez */
  gap: 5px; /* istediğin boşluk */
  flex-wrap: nowrap; /* yan yana kalsın */
}

.calculator .officeSizeSlider {
  width: auto; /* %75 kuralını ez */
  flex: 1 1 auto;
  min-width: 0;
}

/* 2. Toggle Buton Reset & Oklar (FİNAL DÜZELTME) */
.calculator button.cTitle.toggle {
  background: none;
  border: 0;
  padding: 0;
  padding-bottom: 5px;

  font-family: inherit;
  font-size: 18px;
  font-weight: bold;
  color: #3a3a3a;

  text-align: left;
  width: 100%;
  display: block;
  cursor: pointer;

  background: url(../images/icons/calculator/arrow-d-b.svg) no-repeat right center !important;
  background-size: 22px auto !important;
  padding-right: 34px;
}

.calculator button.cTitle.toggle.opened {
  background-image: url(../images/icons/calculator/arrow-u-b.svg) !important;
}

.calculator button.cTitle.toggle:focus-visible {
  outline: 2px solid #40c6ac;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Hidden attribute her koşulda kapatsın (cRow display:flex'i ezer) */
.calculator .cRow[hidden] {
  display: none !important;
}

#online-ucret-hesaplama-araci .calculator{
  padding: 0px 0 !important;
}
#online-ucret-hesaplama-araci .calculator .cResult{
  margin-bottom: 0px !important;
}

/* Ek Hizmetler (Opsiyonel) başlığı: boşluk + ok pozisyonu */
.calculator button.cTitle.toggle{
  margin-top: 5px;
  margin-bottom: 15px; /* masaüstü alt 10px */
  background-position: right calc(50% - 5px) !important; /* ok 5px yukarı */
}

/* Online Ücret Hesaplama hr boşlukları (genel + mobil override) */
#online-ucret-hesaplama-araci hr.ince-cizgi{ margin: 0 0 15px 0; }

/* MOBİL TEMEL (TEK BLOK) */
@media screen and (max-width: 780px) {
	#online-ucret-hesaplama-araci hr.ince-cizgi{ margin: 0 0 15px 0; }
  .calculator .left{
    width: 100%;
    padding-right: 0;
  }
  .calculator .right{
    width: 100%;
  }
  .calculator .result{
    padding: 15px 20px;
    margin-top: 10px;
  }
  .calculator .calculatorCta{
    padding: 15px 20px;
  }
  .calculator button.cTitle.toggle{
    margin-top: 5px;
    margin-bottom: 5px;
  }
  /* Tahmini Fiyat kutusu alt metinleri */
  .calculator .result .resultNote,
  .calculator .result .resultMin{
    font-size: 14px !important;
    line-height: 1.30;
  }
  /* Sağ kolondaki "direkt" paragraflar (CTA/Result dışı) */
  .calculator .right > p{
    font-size: 14px !important;
  }
  .calculator .right > p strong{
    display: block;
    font-size: 21px;
  }
  /* CTA mobil: sadece başlığı 1 tık büyüt */
  .calculator .calculatorCta .ctaTitle{
    font-size: 21px;
  }
  /* CTA buton yazısı büyüsün */
  .calculator .calculatorCta .btn{
    font-size: 18px !important;
  }
#online-ucret-hesaplama-araci p.highlighted-note{
    font-size: 22px;
    line-height: 1.25;
  }
  /* style.css’teki strong font-size’ı eziyoruz */
  #online-ucret-hesaplama-araci p.highlighted-note strong{
    font-size: inherit !important;
  }
}
/* MOBİL — Ek Hizmetler: tek satır kalsın */
@media screen and (max-width: 780px) {
  #extraServicesPanel .calculatorCheck label{
    flex-wrap: nowrap;          /* wrap kapat */
    gap: 6px;                   /* nefes */
  }

  #extraServicesPanel .calculatorCheck label span{
    width: auto;                /* 60% kuralını ez */
    flex: 1 1 auto;             /* metin alanını esnet */
    min-width: 0;               /* taşmayı kontrol et */
    white-space: nowrap;        /* tek satır */
    font-size: 13px;            /* 1 tık küçült (gerekli) */
  }

  #extraServicesPanel .calculatorCheck label img{
    margin-left: auto;          /* ikon sağa yaslansın */
    flex: 0 0 auto;
  }
  /* Ek Hizmetler: metni kutuya 5px yaklaştır */
#extraServicesPanel .calculatorCheck label:before{
  margin-right: 0; /* 5px -> 0 */
}
}

@media screen and (min-width: 781px){
  /* DESKTOP — Ek Hizmetler: tek satır + ikon sağa */
  #extraServicesPanel .calculatorCheck label{
    flex-wrap: nowrap;
    gap: 6px;
  }
  #extraServicesPanel .calculatorCheck label span{
    width: auto;           /* 60% kuralını ez */
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;   /* tek satır */
  }
  #extraServicesPanel .calculatorCheck label img{
    margin-left: auto;     /* ikon sağa */
    flex: 0 0 auto;
  }
}
