/* --- Minimal UI overrides --- */
.kvkk-consent{
  margin:.5rem 0;
  display:flex;
  gap:.5rem;
  align-items:center;
}
.kvkk-consent input[type="checkbox"]{
  width:14px;
  height:14px;
  transform:scale(.85);
  accent-color: #16a34a;
}
.kvkk-consent label{
  font-size:.9rem;
  line-height:1.2;
}

/* Request page button polish */
.request-form button[type="submit"],
.request-form .btn-submit{
  border:none;
  border-radius:.6rem;
  padding:.85rem 1.15rem;
  font-weight:600;
  transition:transform .15s ease, box-shadow .2s ease;
}
.request-form button[type="submit"]:hover,
.request-form .btn-submit:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(0,0,0,.12);
}

/* Navbar robustness on request page */
.header_section .navbar{
  position:sticky;
  top:0;
  z-index:1100;
}
.navbar .nav-link{ padding:.5rem .9rem; }
.navbar-brand img{ max-height:44px; }

/* Safer collapse bg on mobile */
@media (max-width: 991px){
  .navbar-collapse{ background:inherit; }
}

/* Gallery helper (if used) */
.cover-fit{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* === Scroll padding (anchor link’ler için) === */
html{ scroll-padding-top: 84px; }

/* === Proje filtre butonları – yazı görünürlüğü & tıklanabilirlik === */
.projects_section .filters_menu{
  position:relative;
  z-index:5;
}
.projects_section .filters_menu li{
  opacity:1 !important;              /* şeffaf olmasın */
  pointer-events:auto !important;    /* mutlaka tıklansın */
}

/* Guard: make white tags readable regardless of global overrides */
.badge, .tag { color:#111 !important; }

/* Request page top spacing safety */
.contact_section { padding-top: 40px; }

/* === Soft Dark Form Theme (global) === */
.form_container,
.contact-form-container,
.request-form-wrapper,
.book_section .form_container,
.contact_section .form_container {
  background: #0f1c3a !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 14px !important;
  padding: 22px !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.25) !important;
}

.form_container label,
.contact-form-container label,
.form_container .form-check-label {
  color: #e2e8f0 !important;
}

.form_container input,
.form_container select,
.form_container textarea,
.contact-form-container input,
.contact-form-container select,
.contact-form-container textarea {
  background: #0b1730 !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 10px !important;
}

.form_container input::placeholder,
.form_container textarea::placeholder {
  color:#94a3b8 !important;
}

.form_container input:focus,
.form_container select:focus,
.form_container textarea:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #ffb700 !important;
}

/* Submit and info cards */
.form_container .info,
.form_container .alert {
  background: rgba(255,255,255,.03) !important;
  border:1px solid rgba(255,255,255,.06) !important;
}

/* === Request page section sizing === */
.contact_section {
  display: flex;
  align-items: center;
  min-height: 90vh;
  padding-top: 84px; /* safe area under sticky navbar */
  padding-bottom: 24px;
}
@media (max-width: 991.98px){
  .contact_section{
    padding-top: 96px;
    min-height: unset;
  }
}

/* Ensure columns don't overflow on desktop */
.contact_section .container{ max-width: 1140px; }
.contact_section .form_container{ margin-bottom: 0 !important; }

/* === Soft theme for Nice Select dropdown === */
.nice-select{
  background: #10203a !important;
  color: #e6f1ff !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 12px !important;
  height: 54px !important;
  line-height: 52px !important;
  padding-left: 16px !important;
  padding-right: 46px !important;
}
.nice-select:focus,
.nice-select.open{
  border-color: #3ddc97 !important;
  box-shadow: 0 0 0 3px rgba(61,220,151,.15) !important;
}
.nice-select .current{ color: #e6f1ff !important; }
.nice-select .list{
  background: #0b162b !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.35) !important;
}
.nice-select .option{ color: #e6f1ff !important; }
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus{
  background: #15283f !important;
  color: #fff !important;
}

/* === Carousel indicators improvements === */
.carousel-indicators {
  bottom: 30px;
  z-index: 15;
}
.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin: 0 6px;
  transition: all 0.3s ease;
}
.carousel-indicators li.active {
  background-color: #ffbe33;
  border-color: #ffbe33;
  transform: scale(1.2);
}

/* === Hero section text contrast improvements === */
.slider_section .detail-box {
  min-height: 380px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.slider_section .detail-box h1 {
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  font-size: 3.75rem !important;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  min-height: 90px;
  display: flex;
  align-items: center;
}

.slider_section .detail-box p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-size: 1.05rem !important;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.slider_section .btn-box { margin-top: 1.5rem; }
.slider_section .btn1 {
  font-size: 1.05rem;
  padding: 0.9rem 2.3rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(255, 190, 51, 0.3);
  transition: all 0.3s ease;
}
.slider_section .btn1:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 190, 51, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .slider_section .detail-box {
    min-height: 320px !important;
  }
  .slider_section .detail-box h1 {
    font-size: 2.25rem !important;
    min-height: 70px;
  }
  .slider_section .detail-box p {
    font-size: 1rem !important;
    min-height: 100px;
  }
}

/* === Footer social icons visibility === */
.footer_section .footer_social a{
  background: rgba(255,255,255,.10) !important;
  color: #e6f1ff !important;
  border: 1px solid rgba(255,255,255,.14) !important;
}
.footer_section .footer_social a:hover{
  background: var(--primary, #ffbe33) !important;
  color: #0b132b !important;
}

/* === Navbar color + CTA alignment improvements === */
.header_section {
  position: relative;
  z-index: 999;
}

.header_section .custom_nav-container{
  background: linear-gradient(180deg, 
    rgba(15,23,42,.85) 0%, 
    rgba(15,23,42,.78) 50%,
    rgba(15,23,42,.70) 100%) !important;
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: s


/* Nav CTA alignment fix */
.navbar-nav .ms-auto {
  margin-left: auto !important;
}


/* === Request form select alignment fix === */
.form_container .nice-select.form-control.wide {
  display: block !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  width: 100% !important;
}

/* Ensure current text uses full width and left alignment */
.form_container .nice-select.form-control.wide .current {
  width: 100%;
  text-align: left;
}

/* === Navbar CTA position tweak (slightly more to the right) === */
@media (min-width: 992px) {
  .header_section .navbar-nav .order_online {
    margin-right: -8px;
  }
}
