/* =========================
   Natura Çengelköy - Map + Contact (Editorial)
   ========================= */
.dc-mapContact{
  --acc:  #2a4d32;
  --acc2: #1b3322;
  --gold: #b5975e;
  --panel: #ffffff;
  --border: rgba(42,77,50,.10);
  --shadow: 0 30px 60px rgba(26,31,26,.10);
  background: var(--cream, #f5f2ec);
  padding-bottom: 20px;
}

/* MAP */
.dc-mapContact__map{
  height: 420px;
  width: 100%;
  overflow:hidden;
  background: #e9eef2;
  position: relative;
}
.dc-mapContact__map::after{
  content:'';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(42,77,50,.08);
}
.dc-mapContact__map iframe{
  width:100%;
  height:100%;
  border:0;
  filter: saturate(.9) contrast(.98);
}

/* PANEL */
.dc-mapContact__panelWrap{
  position: relative;
  margin-top: -160px;
  padding-bottom: 60px;
}
.dc-mapContact__panel{
  border-radius: 0;
  overflow:hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.dc-mapContact__panel::before{
  content:'';
  position: absolute;
  top: 0; left: 0;
  width: 80px;
  height: 3px;
  background: var(--gold);
  z-index: 2;
}

/* HEADER */
.dc-eyebrow{
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

/* FORM */
.dc-formBox{
  padding: 44px 44px 40px;
  background:#fff;
}
.dc-formBox__title{
  margin:0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 34px;
  letter-spacing:.01em;
  color: var(--ink, #1a1f1a);
  line-height: 1.2;
}

.dc-miniBtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 12px 18px;
  border-radius: 0;
  border: 1px solid rgba(42,77,50,.22);
  background: transparent;
  color: var(--acc);
  text-decoration:none;
  transition: all .3s ease;
  white-space:nowrap;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
}
.dc-miniBtn:hover{
  background: var(--acc);
  color: #fff;
  border-color: var(--acc);
}

/* INPUTS */
.dc-inp{
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(42,77,50,.18);
  padding: 14px 2px;
  font-size: 14px;
  background: transparent;
  transition: all .3s ease;
  color: var(--ink, #1a1f1a);
}
.dc-inp::placeholder{
  color: rgba(26,31,26,.45);
  letter-spacing: .02em;
}
.dc-inp:focus{
  border-color: var(--acc);
  box-shadow: none;
  background: transparent;
  outline: none;
}
textarea.dc-inp{
  border: 1px solid rgba(42,77,50,.18);
  padding: 14px;
  resize: vertical;
}

/* SEND BUTTON */
.dc-sendBtn{
  height: 52px;
  border-radius: 0;
  border: 0;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color:#fff;
  background: var(--acc);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.dc-sendBtn::before{
  content:'';
  position:absolute;
  inset: 0;
  background: var(--acc2);
  transform: translateY(100%);
  transition: transform .35s ease;
}
.dc-sendBtn > *{ position: relative; z-index: 1; }
.dc-sendBtn:hover{
  color:#fff;
}
.dc-sendBtn:hover::before{
  transform: translateY(0);
}

.dc-btnSpin{ display:none; }
.dc-sendBtn.is-loading .dc-btnSpin{ display:inline-block; }
.dc-sendBtn.is-loading .dc-btnTxt{ opacity:.9; }

.dc-note{
  font-size: 12px;
  color: rgba(26,31,26,.45);
}

/* Honeypot hidden */
.dc-hp{
  position:absolute !important;
  left:-9999px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
}

/* =========================
   CAPTCHA
   ========================= */
.dc-captcha{ position:relative; }
.dc-captcha--inline{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap: nowrap;
}
.dc-captcha__qWrap{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}
.dc-captcha__q{
  min-width: 120px;
  height: 52px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .2em;
  border-radius: 0;
  border: 1px solid rgba(42,77,50,.18);
  user-select: none;
  color: var(--acc);
  background:
    radial-gradient(140px 60px at 30% 30%, rgba(181,151,94,.10), transparent 70%),
    repeating-linear-gradient(-45deg, rgba(42,77,50,.06) 0 6px, rgba(42,77,50,.01) 6px 12px),
    linear-gradient(180deg, #fff, #f5f2ec);
}
.dc-captcha__refresh{
  height: 52px;
  width: 52px;
  border-radius: 0;
  border: 1px solid rgba(42,77,50,.18);
  background: #fff;
  color: var(--acc);
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  cursor:pointer;
  transition: all .3s ease;
}
.dc-captcha__refresh:hover{
  background: var(--acc);
  color: #fff;
  border-color: var(--acc);
}
.dc-captcha--inline .dc-inp{
  flex: 1 1 auto;
  min-width: 240px;
}
.dc-captcha--inline .invalid-feedback{
  position:absolute;
  left:0;
  bottom:-18px;
}

/* =========================
   RIGHT INFO
   ========================= */
.dc-infoBox{
  height:100%;
  padding: 44px 36px;
  color: rgba(245,242,236,.95);
  background: linear-gradient(160deg, var(--acc) 0%, var(--acc2) 100%);
  position: relative;
}
.dc-infoBox::before{
  content:'';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.dc-infoBox__cap{
  font-weight: 600;
  letter-spacing: .25em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold);
}
.dc-infoBox__txt{
  margin-top: 12px;
  font-weight: 400;
  line-height: 1.7;
  opacity: .92;
  font-size: 14px;
}
.dc-infoBox__line{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top: 14px;
  font-weight: 400;
  font-size: 14px;
}
.dc-infoBox__line i{
  width: 38px;
  height: 38px;
  border-radius: 0;
  display:grid;
  place-items:center;
  background: rgba(181,151,94,.15);
  border: 1px solid rgba(181,151,94,.25);
  color: var(--gold);
}
.dc-infoBox__line a{
  color: rgba(245,242,236,.92);
  text-decoration:none;
  border-bottom: 1px solid rgba(181,151,94,.35);
  transition: all .25s ease;
  padding-bottom: 2px;
}
.dc-infoBox__line a:hover{
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.dc-infoBox__cta{
  margin-top: 24px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  height: 52px;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration:none;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  transition: all .3s ease;
}
.dc-infoBox__cta:hover{
  background: var(--gold);
  color: var(--acc2);
}

/* ALERT */
.dc-alert{
  display:none;
  padding: 14px 16px;
  border-radius: 0;
  font-weight: 500;
  font-size: 14px;
  border-left: 3px solid;
}
.dc-alert.is-ok{
  display:block;
  background: rgba(42,77,50,.06);
  border-color: var(--acc);
  color: var(--acc2);
}
.dc-alert.is-err{
  display:block;
  background: rgba(220,38,38,.06);
  border-color: #dc2626;
  color: rgba(127,29,29,.95);
}

/* Responsive */
@media (max-width: 991.98px){
  .dc-mapContact__map{ height: 420px; }
  .dc-mapContact__panelWrap{ margin-top: -210px; }
  .dc-formBox{ padding: 32px 26px; }
  .dc-formBox__title{ font-size: 26px; }
  .dc-infoBox{ padding: 32px 26px; }
}

@media (max-width: 575.98px){
  .dc-captcha--inline{
    flex-wrap: wrap;
  }
  .dc-captcha--inline .dc-inp{
    min-width: 100%;
  }
  .dc-captcha--inline .invalid-feedback{
    position: static;
    margin-top: 6px;
  }
}
