
/* -------------------- FAQ Section -------------------- */
#faq.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

#faq.faq-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

#faq .accordion {
  max-width: 800px;
  margin: 0 auto;
}

#faq .accordion-item {
  border-bottom: 1px solid #ddd;
}

#faq .accordion-header {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 18px;
  background: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s;
}

#faq .accordion-header:hover {
  background: #f1f1f1;
}

#faq .accordion-header::after {
  content: '+';
  float: right;
  font-weight: bold;
  transition: transform 0.3s;
}

#faq .accordion-header.active::after {
  content: '−';
}

#faq .accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fff;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

#faq .accordion-content p {
  margin: 15px 0;
}

#faq .accordion-header.active + .accordion-content {
  max-height: 200px;
  padding: 15px 20px;
}

/* -------------------- FAQ Section -------------------- */

/* -------------------- STEPS Section -------------------- */

/* Sadece bu section için */
#steps.steps-section {
  padding: 60px 20px;
  background: #fff;
}

#steps h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
}

#steps .accordion {
  max-width: 900px;
  margin: 0 auto;
}

#steps .accordion-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

#steps .accordion-header {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 18px;
  background: #f9f9f9;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s;
}

#steps .accordion-header:hover {
  background: #f1f1f1;
}

#steps .accordion-header::after {
  content: '+';
  float: right;
  font-weight: bold;
  transition: transform 0.3s;
}

#steps .accordion-header.active::after {
  content: '−';
}

#steps .accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fff;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

#steps .accordion-content p, 
#steps .accordion-content ul, 
#steps .accordion-content ol {
  margin: 15px 0;
}

#steps .accordion-header.active + .accordion-content {
  max-height: 400px;
  padding: 15px 20px;
}

/* -------------------- STEPS Section -------------------- */

/* -------------------- WIZARD Section -------------------- */

#wizard {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}
#wizard h2 { margin-bottom: 20px; font-size: 24px; }

#wizard .step-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 12px;
}
#wizard .step-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 80%;
  background: #007bff; /* senin accent rengin */
  border-radius: 2px;
}

#wizard .steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
#wizard .step {
  flex: 1;
  min-width: 80px;
  text-align: center;
  cursor: pointer;
}
#wizard .step span {
  display: inline-block;
  background: #ccc;
  color: #fff;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 16px;
  margin-bottom: 5px;
}
#wizard .step.active span {
  background: #007bff;
}
#wizard .step p {
  font-size: 12px;
  margin: 0;
}

#wizard .step-content .content {
  display: none;
  text-align: left;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
#wizard .step-content .content.active {
  display: block;
}
#wizard .step-content img {
  max-width: 100%;
  margin-top: 15px;
  border-radius: 4px;
}

#wizard .controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
#wizard .controls button {
  flex: 1;
  max-width: 150px;
  padding: 12px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}
#wizard .controls button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* 📱 Mobil uyum: küçük ekranlarda step'ler dikey */
@media (max-width: 600px) {
  #wizard .steps {
    flex-direction: column;
    align-items: center;
  }
  #wizard .step {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  #wizard .step span {
    padding: 8px 12px;
    font-size: 14px;
  }
  #wizard .step p {
    font-size: 14px;
  }
}

#wizard .steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

#wizard .steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 3px;
  background: #e0e0e0;
  z-index: 0;
}

#wizard .step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

#wizard .step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  font-size: 22px;
  transition: all 0.3s ease;
}

#wizard .step.active span,
#wizard .step.completed span {
  background: #007bff;
  box-shadow: 0 0 8px rgba(0,123,255,0.5);
}

#wizard .step p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* Mobile uyum */
@media (max-width: 600px) {
  #wizard .steps {
    flex-direction: column;
    gap: 20px;
  }
  #wizard .steps::before {
    display: none;
  }
}

/* Mobil uyum */
@media (max-width: 600px) {
  #wizard .steps {
    flex-direction: column;
    align-items: flex-start; /* adımları sola hizala */
    gap: 20px;
  }
  #wizard .steps::before {
    display: none; /* üst çizgiyi gizle */
  }
  #wizard .step {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* sola sabitler */
    gap: 10px;
    text-align: left;
  }
  #wizard .step span {
    margin: 0; /* ortalama marginini kaldır */
    flex-shrink: 0; /* ikon daralmayıp sabit kalır */
  }
  #wizard .step p {
    margin: 0;
    font-size: 14px;
  }
}

#wizard .step-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#wizard .step-content {
  flex: 1;
  max-width: 800px;
  margin: 0 50px; /* butonlar için yan boşluk bırak */
}

#wizard .nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #007bff;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  position: relative;
  z-index: 2;
}
#wizard .nav-btn:hover {
  background: #0056b3;
}
#wizard .nav-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

#wizard .nav-btn.prev {
  margin-right: 10px;
}
#wizard .nav-btn.next {
  margin-left: 10px;
}

/* 📱 Mobilde daha küçük buton */
@media (max-width: 600px) {
  #wizard .step-content-wrapper {
    flex-direction: column;
  }
  #wizard .step-content {
    margin: 20px 0;
  }
  #wizard .nav-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* 📱 Mobilde butonlar yan yana */
@media (max-width: 600px) {
  #wizard .step-content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  #wizard .step-content {
    margin: 20px 0;
  }
  #wizard .controls-mobile {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
  #wizard .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Ortak buton stilleri */
#wizard .nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #007bff;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 2;
}
#wizard .nav-btn:hover {
  background: #0056b3;
}
#wizard .nav-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Desktop görünüm */
#wizard .step-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#wizard .step-content {
  flex: 1;
  max-width: 800px;
  margin: 0 50px;
}
.desktop-only { display: flex; }
.mobile-only { display: none; }

/* 📱 Mobil görünüm */
@media (max-width: 600px) {
  #wizard .step-content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  #wizard .step-content {
    margin: 20px 0;
  }
  .desktop-only { display: none; }
  .mobile-only {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
}

/* Desktop için default */
.desktop-only { display: flex; }
.mobile-only { display: none; }

/* 📱 Mobil görünümde değiştir */
@media (max-width: 600px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: flex !important; }
}



/* -------------------- WIZARD Section -------------------- */


/* -------------------- COOKIE Section -------------------- */

#cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #222;
color: #fff;
padding: 15px;
font-size: 0.9rem;
display: none; /* JS ile gösterilecek */
z-index: 9999;
}

#cookie-banner .cookie-container {
max-width: 1000px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 10px;
}

#cookie-banner a {
color: #f3c869;
text-decoration: underline;
}

.cookie-buttons {
display: flex;
gap: 10px;
}

.cookie-buttons button {
flex: 1;
padding: 10px;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
transition: background 0.3s;
}

#accept-cookies {
background: #4caf50;
color: white;
}
#accept-cookies:hover {
background: #45a049;
}

#reject-cookies {
background: #f44336;
color: white;
}
#reject-cookies:hover {
background: #e53935;
}

/* -------------------- COOKIE Section -------------------- */

/* -------------------- PRICING Section -------------------- */
/* Pricing Section */
.pricing-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.pricing-section .section-title {
  font-size: 28px;
  margin-bottom: 10px;
}
.pricing-section .section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.pricing-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.pricing-cards .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 20px;
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  transition: transform 0.3s ease;
}
.pricing-cards .card:hover {
  transform: translateY(-5px);
}
.pricing-cards .card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.pricing-cards .card .price {
  font-size: 26px;
  font-weight: bold;
  color: #333333; /* koyu gri */
  margin-bottom: 20px;
}
.pricing-cards .card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}
.pricing-cards .card ul li {
  padding: 6px 0;
  font-size: 14px;
}
.pricing-cards .card .btn {
  display: inline-block;
  background: #333333; /* koyu gri */
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.pricing-cards .card .btn:hover {
  background: #000000; /* daha koyu hover */
}
.pricing-cards .card.featured {
  border: 2px solid #333333; /* koyu gri çerçeve */
  transform: scale(1.05);
}


/* -------------------- PRICING Section -------------------- */

/* -------------------- FORM PAGE Section -------------------- */

/* Tüm stiller bu section’a scoped */
#wizard-page {
  --accent: #333333;
  --bg: #f9f9f9;
  --card: #ffffff;
  --text: #222;
  --muted: #666;
  --error: #c62828;
  --border: #e5e5e5;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  padding: 32px 16px 60px;
}

#wizard-page .container {
  max-width: 980px;
  margin: 0 auto;
}

#wizard-page h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

#wizard-page .subtitle {
  color: var(--muted);
  margin: 0 0 24px;
}

/* Stepper */
#wizard-page .steps {
  display: flex;
  gap: 12px;
  position: relative;
  margin: 12px 0 28px;
  overflow-x: auto;      /* 🔹 yatay kaydırma aktif */
  white-space: nowrap;   /* 🔹 alt satıra geçmeyi engeller */
  scroll-behavior: smooth; /* 🔹 yumuşak kaydırma */
  gap: 12px;             /* 🔹 step balonları arası boşluk */
}
@media (min-width: 992px) {
  .steps {
    justify-content: center; /* ortala */
    overflow-x: visible;     /* kaydırma kalksın */
    gap: 60px;               /* sabit uzaklık */
  }
  
}
#wizard-page .steps::-webkit-scrollbar {
  display: none;
}
/* #wizard-page .steps::before {
  content: "";
  position: absolute;
    left: 0px !important;
  width: 100%;               
  top: 24px;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
} */
#wizard-page .step {
  flex: 1;
  min-width: 0;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 5px;
  margin-right: 30px;
}
#wizard-page .step .dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  margin: 0 auto 6px;
  background: #cfcfcf;
  color: #fff;
  display: grid; place-items: center;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
#wizard-page .step .label {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000 !important;
}
/* Çizgi temel stili */
#wizard-page .connector {
  position: absolute;
  top: 24px;
  left: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
  transform: translateY(-50%);
}   
@media (min-width: 992px) {
  #wizard-page .connector {
    top: 24px;
    left: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
    transform: translateY(-50%);
  }   
  
}
#wizard-page .step.active .dot,
#wizard-page .step.completed .dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,0,0,.04);
  transform: translateY(-1px);
}
#wizard-page .step.completed .dot::after {
  content: "✓";
  font-weight: 700;
}

/* Card (form alanı) */
#wizard-page .card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
  padding: 20px;
}
#wizard-page .section-title {
  font-size: 18px;
  margin: 0 0 14px;
  padding-left: 12px;
  position: relative;
}
#wizard-page .section-title::before {
  content: "";
  position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 4px; border-radius: 3px; background: var(--accent);
}
#wizard-page .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
#wizard-page .field {
  display: flex; flex-direction: column;
  gap: 6px;
}
#wizard-page label { font-size: 14px; }
#wizard-page input[type="text"],
#wizard-page input[type="email"],
#wizard-page input[type="tel"],
#wizard-page input[type="number"],
#wizard-page select,
#wizard-page textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
  background: #fff;
}
#wizard-page textarea { min-height: 96px; resize: vertical; }
#wizard-page input:focus,
#wizard-page select:focus,
#wizard-page textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(51,51,51,.08);
}
#wizard-page .hint {
  color: var(--muted);
  font-size: 12px;
}
#wizard-page .error-text {
  color: var(--error);
  font-size: 12px;
  display: none;
}
#wizard-page .invalid .error-text {
  display: block;
}
#wizard-page .invalid input,
#wizard-page .invalid select,
#wizard-page .invalid textarea {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(198,40,40,.08);
}

/* Alt kontrol butonları */
#wizard-page .controls {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 18px;
}
#wizard-page .controls .left,
#wizard-page .controls .right {
  display: flex; gap: 10px;
}
#wizard-page .btn {
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .05s ease, background .2s ease, opacity .2s ease;
}
#wizard-page .btn:active { transform: translateY(1px); }
#wizard-page .btn-primary { background: var(--accent); color: #fff; }
#wizard-page .btn-primary:hover { opacity: .9; }
#wizard-page .btn-ghost { background: #efefef; color: #222; }
#wizard-page .btn-ghost:hover { background: #e5e5e5; }

/* Review tablosu */
#wizard-page .review {
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 12px;
}
#wizard-page .review h5 {
  margin: 10px 0 6px;
  font-size: 15px;
}
#wizard-page .review .row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #f1f1f1;
}
#wizard-page .review .row:last-child { border-bottom: 0; }
#wizard-page .review .edit {
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
  font-size: 13px;
}

/* Mobil */
@media (max-width: 720px) {
  #wizard-page .steps { gap: 8px; }
  #wizard-page .steps::before { left: 20px; right: 20px; top: 22px; }
  #wizard-page .step .dot { width: 42px; height: 42px; }
  #wizard-page .grid { grid-template-columns: 1fr; }
  #wizard-page .review .row { grid-template-columns: 1fr; }
}

#wizard-page #steps  .step .dot {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}

#wizard-page #steps .step.active .dot {
  background: #007bff;
}

#wizard-page #steps .step.completed .dot {
  background: #28a745; /* yeşil */
  content: "✓";
}

/* 5. Adım: Review kutusu */
#wizard-page .review {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 18px;
}

/* Her satır */
#wizard-page .review .review-row {
  display: grid;
  grid-template-columns: 220px 1fr auto; /* Label | Değer | Düzenle */
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
#wizard-page .review .review-row:last-child {
  border-bottom: none;
}

/* Label ve değer metinleri */
#wizard-page .review .review-row > div:first-child {
  color: #555;
  font-weight: 600;
}
#wizard-page .review .review-row > div:nth-child(2) {
  color: #222;
  word-break: break-word;
}

#wizard-page .review .edit {
  cursor: pointer;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
#wizard-page .review .edit:hover {
  background: #f5f7fb;
  border-color: #cfd8ea;
}

/* Başlık */
#wizard-page .review h5 {
  font-size: 18px;
  margin: 0 0 10px 0;
  font-weight: 700;
}

/* Mobil uyum */
@media (max-width: 600px) {
  #wizard-page .review .review-row {
    grid-template-columns: 1fr; /* tek sütun */
  }
  #wizard-page .review .edit {
    justify-self: start;
    margin-top: 6px;
  }
}

#wizard-page .radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

#wizard-page .radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  cursor: pointer;
}

#wizard-page .radio-option input[type="radio"] {
  accent-color: #007bff;
  width: 18px;
  height: 18px;
}

#wizard-page .radio-option span {
  color: #333;
}

#wizard-page .radio-option:hover span {
  color: #007bff;
}

#wizard-page #step3Popup {
  display: none; 
}

#wizard-page #step3Popup.active {
  display: flex; 
}

#wizard-page .popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
#wizard-page .popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
#wizard-page .popup-box h3 { margin-bottom: 15px; }

#wizard-page #step3Popup .popup-content {
  max-width: 500px;
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  text-align: left;
}

#wizard-page #step3Popup .popup-section {
  margin-bottom: 15px;
}

#wizard-page #step3Popup .popup-section h4 {
  margin: 8px 0;
  font-size: 16px;
  color: #333;
}

#wizard-page #step3Popup .popup-section p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

#wizard-page #step3Popup .popup-section.highlight {
  border-top: 1px solid #ccc;
  padding-top: 10px;
  margin-top: 15px;
  font-weight: 600;
  color: #007bff;
  text-align: center;
}

#wizard-page .info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: #f8f9fa;
  border-left: 4px solid #007bff;
  border-radius: 6px;
  padding: 12px 16px;
  margin: 15px 0;
  font-size: 0.95rem;
  color: #333;
}

#wizard-page .info-box i {
  color: #007bff;
  font-size: 1.3rem;
  margin-top: 2px;
}

#wizard-page .info-box strong {
  color: #000;
}

/* Mobil */
@media (max-width: 720px) {
    .steps .step .label {
        display: none;
    }
}
.optional-step[hidden] {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}
/* -------------------- FORM PAGE Section -------------------- */


/* 🔹 Ana yapı — stepper temasıyla uyumlu */
#status-checker .status-check-section {
  background: linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
  min-height: 100vh;
  font-family: "PT Sans", sans-serif;
}

/* 🔸 Form kartı */
#status-checker .status-form {
  max-width: 600px;
  border-radius: 16px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
#status-checker .status-form:hover {
  box-shadow: 0 0 25px rgba(13, 110, 253, 0.15);
}

/* 🧱 Input alanları */
#status-checker .input-step {
  border-radius: 8px;
  border: 1px solid #d0d7e2;
  padding: 10px 14px;
  transition: all 0.2s ease-in-out;
}
#status-checker.input-step:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}

/* 🎨 Butonlar */
.btn-primary {
  border-radius: 8px;
  font-size: 1rem;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #0d6efd, #004cbf);
  border: none;
  transition: 0.2s;
}
#status-checker .btn-primary:hover {
  background: linear-gradient(90deg, #004cbf, #002b7f);
  transform: translateY(-1px);
}

/* ✅ Sonuç kartı */
#status-checker .result-card {
  max-width: 700px;
  border-radius: 16px;
}
#status-checker .bg-gradient-primary {
  background: linear-gradient(90deg, #0d6efd, #003b8e);
}

/* 🟦 Bilgi satırları */
#status-checker .status-info {
  font-size: 0.95rem;
  color: #333;
}
#status-checker .status-info i {
  font-size: 1.1rem;
}

/* 🟩 Durum badge renkleri */
#status-checker #rStatusBadge.bg-warning {
  background-color: #ffc107 !important;
  color: #212529 !important;
}
#status-checker #rStatusBadge.bg-success {
  background-color: #28a745 !important;
}
#status-checker#rStatusBadge.bg-primary {
  background-color: #0d6efd !important;
}
#rStatusBadge.bg-danger {
  background-color: #dc3545 !important;
}

/* ✨ Küçük animasyon */
#status-checker.status-form, .result-card {
  animation: fadeIn 0.7s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}


#video-section .video-section {
  background: #f7f9fc;
  padding: 80px 0;
}
#video-section .container{
  margin-bottom: 30px;
}
#video-section .video-section h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1b2a4e;
  margin-bottom: 15px;
}
#video-section .video-section p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}
#video-section .video-wrapper video {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  border-radius: 10px;
}
#video-section .btn.btn-primary {
  background-color: #2a64e8;
  color:white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
}
@media(max-width:768px){
  #video-section .video-section {
    text-align: center;
  }
  #video-section .video-text {
    margin-bottom: 25px;
  }
}


/* Closed hours css */
.closed-wrap {
    padding-top: 120px!important; /* Desktop'ta menünün altında başlaması için */
}

@media (max-width: 768px) {
    .closed-wrap {
        padding-top: 40px!important;; /* Mobilde menü daha küçük olur */
    }
}