* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
  color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.header {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.whatsapp-btn,
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  transition: 0.3s ease;
}

.whatsapp-btn {
  background: #16a34a;
}

.call-btn {
  background: #2563eb;
}

.whatsapp-btn:hover,
.call-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* SLIDER */
.slider-section {
  margin-top: 10px;
}

.slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.slide {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  border-radius: 22px;
}

.slide-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 760px;
  text-align: center;
  z-index: 2;
  background: rgba(15, 23, 42, 0.45);
  padding: 24px;
  border-radius: 18px;
  backdrop-filter: blur(4px);
}

.slide-text h1 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #ffffff;
}

.slide-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #e5e7eb;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.active-dot {
  background: #ffffff;
}

/* GENEL SECTION */
section {
  margin: 70px 0;
  text-align: center;
}

section h2 {
  font-size: 34px;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-text,
.guide-intro,
.updated-text,
.note-text {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* NEDEN BIZ */
.neden-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.neden-card {
  width: 300px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.neden-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ffffff;
}

.neden-card p {
  font-size: 15px;
  color: #e2e8f0;
}

.buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.stat-box {
  min-width: 220px;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.stat-box h3 {
  font-size: 32px;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 15px;
  color: #e2e8f0;
}

/* GUIDE */
.guide h2 {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.updated-text {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 18px;
}

.guide-intro {
  font-size: 17px;
  color: #f1f5f9;
  margin-bottom: 26px;
}

.guide-box {
  max-width: 950px;
  margin: 24px auto;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.guide-box h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.guide-box p {
  color: #e2e8f0;
  margin-bottom: 12px;
}

.guide-box ul {
  list-style: none;
  margin-top: 10px;
}

.guide-box ul li {
  margin: 10px 0;
  color: #ffffff;
}

.note-text {
  margin-top: 14px;
  color: #cbd5e1;
  font-size: 14px;
}

/* FAQ */
.faq {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  margin: 16px 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.faq-item h4 {
  font-size: 21px;
  margin-bottom: 10px;
  color: #ffffff;
}

.faq-item p {
  font-size: 15px;
  color: #e2e8f0;
}

/* REVIEWS */
.review-slider {
  max-width: 800px;
  margin: 0 auto;
}

.review {
  display: none;
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.review.active {
  display: block;
}

.stars {
  font-size: 22px;
  margin-bottom: 14px;
}

.review p {
  font-size: 17px;
  color: #e2e8f0;
  margin-bottom: 12px;
}

.review strong {
  font-size: 16px;
  color: #ffffff;
}

/* FOOTER */
.footer {
  margin-top: 70px;
  padding: 32px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.22);
  color: #e2e8f0;
}

.footer p {
  margin: 6px 0;
}

/* SABIT WHATSAPP */
.fixed-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #16a34a;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  z-index: 999;
  transition: 0.3s ease;
}

.fixed-whatsapp:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* MOBIL */
@media (max-width: 992px) {
  .header {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .header-buttons {
    justify-content: center;
  }

  .slider {
    height: 360px;
  }

  .slide-text {
    width: 88%;
    padding: 20px;
  }

  .slide-text h1 {
    font-size: 28px;
  }

  .slide-text p {
    font-size: 15px;
  }

  section h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .container,
  .header {
    width: 92%;
  }

  .logo {
    font-size: 26px;
  }

  .slider {
    height: 300px;
    border-radius: 18px;
  }

  .slide img,
  .slide::after {
    border-radius: 18px;
  }

  .slide-text {
    width: 90%;
    padding: 16px;
    border-radius: 16px;
  }

  .slide-text h1 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .slide-text p {
    font-size: 14px;
    line-height: 1.5;
  }

  .whatsapp-btn,
  .call-btn {
    width: 100%;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .neden-card,
  .stat-box {
    width: 100%;
    max-width: 100%;
  }

  .guide-box {
    padding: 22px 16px;
  }

  .guide-box h3 {
    font-size: 22px;
  }

  .faq-item h4 {
    font-size: 18px;
  }

  .review {
    padding: 24px 18px;
  }

  .fixed-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 12px 18px;
    font-size: 14px;
  }
}

.booking-form-section {
  max-width: 950px;
  margin: 70px auto 0;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.booking-form-section h2 {
  margin-bottom: 12px;
}

.booking-text {
  max-width: 700px;
  margin: 0 auto 28px;
  color: #e2e8f0;
  font-size: 16px;
}

.booking-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #cbd5e1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #60a5fa;
  background: rgba(255, 255, 255, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.booking-submit {
  margin-top: 24px;
  padding: 14px 28px;
  border: none;
  border-radius: 14px;
  background: #16a34a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.booking-submit:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

@media (max-width: 768px) {
  .booking-form-section {
    padding: 26px 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: auto;
  }

  .booking-submit {
    width: 100%;
  }
}



.form-group select option {
  color: #000000;
}