* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #23242a;
  color: #fff;
  width: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  overflow-y: auto;
}

/* Sabit başlık */
.header {
  background: #23242a;
  z-index: 100;
  padding: 8px 12px;
  box-shadow: 0 2px 16px rgba(255, 20, 147, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 60px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo {
  height: 28px;
  width: auto;
  filter: drop-shadow(0 0 12px #ff1493) drop-shadow(0 0 20px #ff1493) drop-shadow(0 0 28px rgba(255, 20, 147, 0.8));
  transition: all 0.3s;
}

.header-logo:hover {
  filter: drop-shadow(0 0 16px #ff1493) drop-shadow(0 0 24px #ff1493) drop-shadow(0 0 32px rgba(255, 20, 147, 0.9));
  transform: scale(1.05);
}

.header-signature-img {
  height: 25px;
  margin-left: 10px;
  opacity: 0.9;
  filter: drop-shadow(0 0 6px #ff1493);
  transform: rotate(-3deg);
}

.header-title {
  color: #ff1493;
  font-size: 1.1em;
  font-weight: 700;
  text-shadow: 0 0 8px #ff1493;
}

.contact-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid #ff1493;
  background: #23242a;
}

.contact-btn.phone {
  color: #4CAF50;
  border-color: #ff1493;
  box-shadow: 0 0 8px #ff1493;
}

.contact-btn.phone:hover {
  background: #4CAF50;
  color: #23242a;
  transform: scale(1.1);
}

.contact-btn.whatsapp {
  color: #25D366;
  border-color: #ff1493;
  box-shadow: 0 0 8px #ff1493;
}

.contact-btn.whatsapp:hover {
  background: #25D366;
  color: #23242a;
  transform: scale(1.1);
}

.contact-btn:hover, .info-btn:hover {
  background: #ff1493;
  color: #23242a;
  transform: scale(1.1);
  box-shadow: 0 0 12px #ff1493;
}

.container {
  margin: 0 auto;
  padding: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 140px);
  overflow-y: auto;
}

h1 {
  text-align: center;
  color: #ff1493;
  text-shadow: 0 0 8px #ff1493, 0 0 16px #ff1493;
  margin: 4px 0 8px 0;
  font-size: 0.95em;
  width: 100%;
  max-width: 360px;
}

#searchForm {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Adım adım form */
.step {
  display: none;
  animation: fadeIn 0.3s;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

.step.active {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 8px 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-main-title {
  color: #ff1493;
  font-size: 1.5em;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-align: center;
  text-shadow: 0 0 10px #ff1493, 0 0 20px rgba(255, 20, 147, 0.5);
  animation: fadeIn 0.3s ease;
}

.step-title {
  color: #ff1493;
  font-size: 0.85em;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
  width: 100%;
}

/* Seçim butonları */
.choice-group {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  width: 100%;
}

.choice-btn {
  flex: 1;
  padding: 8px 12px;
  background: #23242a;
  border: 2px solid #ff1493;
  color: #ff1493;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 8px #ff1493;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 36px;
}

.choice-btn.selected, .choice-btn:hover {
  background: rgba(255, 20, 147, 0.1);
  color: #ff1493;
  border: 3px solid #ff1493;
  box-shadow: 0 0 16px rgba(255, 20, 147, 0.5);
  transform: scale(1.02);
}

/* Butonlar */
.btn-group {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  width: 100%;
}

.btn {
  flex: 1;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 36px;
}

.btn-next, .btn-submit {
  background: #ff1493;
  color: #23242a !important;
  box-shadow: 0 0 12px #ff1493;
  font-weight: 700;
  text-shadow: none;
}

.btn-submit.ready {
  border: 2px solid #ff1493;
  box-shadow: 0 0 16px rgba(255, 20, 147, 0.6), 0 0 24px rgba(255, 20, 147, 0.4), inset 0 0 12px rgba(255, 20, 147, 0.3);
  animation: submitPulseGlow 2s ease-in-out infinite;
}

@keyframes submitPulseGlow {
  0%, 100% {
    box-shadow: 0 0 16px rgba(255, 20, 147, 0.6), 0 0 24px rgba(255, 20, 147, 0.4), inset 0 0 12px rgba(255, 20, 147, 0.3);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 20, 147, 0.8), 0 0 32px rgba(255, 20, 147, 0.6), inset 0 0 16px rgba(255, 20, 147, 0.4);
  }
}

.btn-prev {
  background: #18181c;
  color: #ff1493;
  border: 2px solid #ff1493;
}

.btn:hover {
  transform: scale(1.05);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Progress bar */
.progress-bar {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  margin-bottom: 0;
  width: 100%;
  max-width: 360px;
  padding: 8px 0;
}

.progress-step {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #18181c;
  border: 2px solid #ff1493;
  transition: all 0.3s;
}

.progress-step.completed {
  background: #ff1493;
  box-shadow: 0 0 8px #ff1493;
}

/* Form grupları */
.form-group {
  margin-bottom: 8px;
  width: 100%;
}

.form-group-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  width: 100%;
}

.form-group-inline label {
  margin-bottom: 0;
  min-width: 80px;
  text-align: right;
  font-size: 0.85em;
  flex-shrink: 0;
}

.form-group-inline > input {
  flex: 1;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #fff;
  font-size: 0.85em;
}

select, input[type="text"], input[type="tel"], input[type="number"] {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  border: 2px solid #ff1493;
  background: #18181c;
  color: #fff;
  font-size: 14px;
  min-height: 36px;
  transition: all 0.2s;
}

/* Price fields inline */
.price-group-inline {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-bottom: 8px;
}

.price-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.price-input-wrapper {
  position: relative;
  width: 100%;
}

.price-input-wrapper input {
  padding-right: 35px;
}

.price-currency {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff1493;
  font-weight: 700;
  pointer-events: none;
}

.choice-btn {
  background: rgba(35, 36, 42, 0.8);
  color: #fff;
  border: 2px solid #ff1493;
  padding: 12px 20px;
  margin: 4px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.choice-btn:hover, .choice-btn.selected {
  background: #ff1493;
  color: #23242a;
  box-shadow: 0 0 12px #ff1493;
  transform: translateY(-2px);
}

/* Progress bar */
.progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  width: 100%;
  max-width: 380px;
}

.progress-step {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #18181c;
  border: 2px solid #ff1493;
  transition: all 0.3s;
}

.progress-step.completed {
  background: #ff1493;
  box-shadow: 0 0 8px #ff1493;
}

/* Başarı mesajı */
.success-message {
  text-align: center;
  color: #ff1493;
  font-size: 1.2em;
  font-weight: 700;
  margin: 20px 0;
  padding: 20px 24px;
  background: rgba(255, 20, 147, 0.1);
  border: 2px solid #ff1493;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.5), 0 0 40px rgba(255, 20, 147, 0.3), inset 0 0 16px rgba(255, 20, 147, 0.2);
  text-shadow: 0 0 8px #ff1493;
  animation: successGlow 2s ease-in-out infinite;
}

@keyframes successGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5), 0 0 40px rgba(255, 20, 147, 0.3), inset 0 0 16px rgba(255, 20, 147, 0.2);
  }
  50% {
    box-shadow: 0 0 28px rgba(255, 20, 147, 0.7), 0 0 56px rgba(255, 20, 147, 0.5), inset 0 0 24px rgba(255, 20, 147, 0.3);
  }
}

/* Navigation buttons */
.nav-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  background: #ff1493;
  color: #23242a;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 0 8px #ff1493;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px #ff1493;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background: transparent;
  color: #ff1493;
  border: 2px solid #ff1493;
  box-shadow: none;
}

.btn-secondary:hover {
  background: #ff1493;
  color: #23242a;
}

/* Diğer butonu */
.btn-other {
  background: transparent;
  color: #ff1493;
  border: 2px solid #ff1493;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 36px;
  white-space: nowrap;
}

.btn-other:hover {
  background: rgba(255, 20, 147, 0.1);
  transform: scale(1.02);
}

/* Custom input container - varsayılan olarak gizli */
.custom-input-container {
  display: none;
  margin-top: 12px;
}

.custom-input-container.active {
  display: block;
}

.custom-input {
  width: 100%;
  padding: 12px;
  background: #18181c;
  border: 2px solid #ff1493;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: all 0.2s;
}

.custom-input:focus {
  outline: none;
  border-color: #ff1493;
  box-shadow: 0 0 12px rgba(255, 20, 147, 0.3);
}

.custom-input::placeholder {
  color: #888;
}

/* Footer */
.footer {
  background: #18181c;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 20, 147, 0.3);
  flex-shrink: 0;
  position: relative;
  z-index: 1000;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  align-items: center;
}

.footer-link {
  background: transparent;
  border: none;
  color: #888;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  padding: 4px 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-link:hover {
  color: #ff1493;
  text-shadow: 0 0 8px rgba(255, 20, 147, 0.6);
}

/* Galeri bölümü - en alta */
.gallery-section {
  background: #18181c;
  border-radius: 8px 8px 0 0;
  padding: 8px 0 12px 0;
  margin-top: -20px;
  box-shadow: 0 -2px 16px #111;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-shrink: 0;
  max-width: 100vw;
  overflow: clip;
  max-height: 240px;
}

.gallery-title {
  text-align: center;
  color: #ff1493;
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 6px;
  text-shadow: 0 0 8px #ff1493;
  padding: 0 12px;
}

.swipe-gallery {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 20px 8px 8px 12px;
  height: 180px;
  overflow-x: auto;
  overflow-y: clip;
  justify-content: flex-start;
  align-items: center;
}

.gallery-item {
  width: 260px;
  background: #23242a;
  border-radius: 6px;
  box-shadow: 0 0 8px #111;
  cursor: pointer;
  transition: transform 0.2s;
  overflow: hidden;
  position: relative;
  height: 146px;
  flex-shrink: 0;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 0 16px #ff1493;
}

.gallery-item.highlighted {
  border: 3px solid #ff1493;
  box-shadow: 0 0 24px #ff1493;
}

.gallery-item img, .gallery-item iframe {
  width: 100%;
  height: 146px;
  object-fit: cover;
  border: none;
  position: relative;
  z-index: 1;
}

.media-type-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: rgba(35, 36, 42, 0.9);
  color: #ff1493;
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 0.6em;
  font-weight: 700;
  border: 1px solid #ff1493;
  z-index: 2;
}

.district-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(255, 20, 147, 0.9);
  color: #23242a;
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 0.6em;
  font-weight: 700;
  z-index: 2;
}

.gallery-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
}

.gallery-item-title {
  font-size: 0.9em;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ff1493;
}

.gallery-item-desc {
  font-size: 0.65em;
  opacity: 0.9;
  line-height: 1.2;
  max-height: 40px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.gallery-item-desc.expanded {
  max-height: 100px;
  overflow-y: auto;
  padding-right: 4px;
}

.gallery-item-desc.expanded::-webkit-scrollbar {
  width: 3px;
}

.gallery-item-desc.expanded::-webkit-scrollbar-thumb {
  background: #ff1493;
  border-radius: 3px;
}

.desc-more-btn {
  background: #ff1493;
  color: #23242a;
  border: none;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.85em;
  font-weight: 700;
  cursor: pointer;
  margin-left: 4px;
  transition: all 0.2s;
  display: inline-block;
}

.desc-more-btn:hover {
  background: #fff;
  transform: scale(1.05);
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  background: linear-gradient(145deg, #23242a 0%, #18181c 100%);
  margin: 0;
  padding: 0;
  width: 90%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.3s;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  padding: 16px 20px;
  border-bottom: 2px solid #ff1493;
  flex-shrink: 0;
  position: relative;
}

.modal-title {
  color: #ff1493;
  font-size: 1.3em;
  font-weight: 700;
  text-shadow: 0 0 8px #ff1493;
}

@media (max-width: 768px) {
  .modal-title {
    font-size: 1em;
  }
  .modal-content {
    margin: 0;
    width: 96%;
    max-width: 96%;
    max-height: 94vh;
    border-radius: 8px;
  }
  .modal-header {
    padding: 12px 16px;
  }
  .modal-body {
    padding: 16px;
  }
  .modal iframe {
    height: 50vh;
  }
  .modal img {
    max-height: 60vh;
  }
}

.close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #ff1493;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 10;
  background: transparent;
  border: none;
  line-height: 1;
}

.close:hover {
  transform: scale(1.2);
}

.modal-body {
  padding: 20px;
  font-size: 11px;
  line-height: 1.5;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.modal-body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.modal-body h3 {
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 10px;
}

.modal-body h4 {
  font-size: 13px;
  margin-top: 14px;
  margin-bottom: 6px;
}

.modal-body p {
  margin: 6px 0;
  font-size: 11px;
}

.modal-body ul, .modal-body ol {
  margin: 6px 0;
  padding-left: 18px;
  font-size: 11px;
}

.modal-body li {
  margin: 3px 0;
}

.modal-info-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 8px 16px;
  min-width: 80px;
  height: 36px;
  border-radius: 8px;
  background: #ff1493;
  color: #23242a;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 12px #ff1493;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-info-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff1493;
}

.modal-desc-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  backdrop-filter: blur(10px);
  padding: 20px;
  z-index: 1001;
  border-radius: 12px;
}

.modal-desc-overlay.active {
  display: block;
}

.modal-desc-content {
  background: rgba(35, 36, 42, 0.3);
  backdrop-filter: blur(8px);
  padding: 40px 20px 20px 20px;
  border-radius: 8px;
  border: 2px solid #ff1493;
  box-shadow: 0 0 20px #ff1493;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.modal-desc-title {
  color: #ff1493;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 0 8px #ff1493;
}

.modal-desc-text {
  color: #fff;
  line-height: 1.8;
  flex: 1;
  overflow-y: auto;
  font-size: 13px;
}

.modal-desc-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ff1493;
  color: #23242a;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px #ff1493;
  transition: all 0.3s;
  z-index: 10;
}

.modal-desc-close:hover {
  transform: scale(1.1);
  box-shadow: 0 0 16px #ff1493;
}

.modal iframe {
  width: 100%;
  height: 60vh;
  border: none;
  border-radius: 8px;
}

.modal img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
}

/* Feature selection */
.feature-block {
  margin-bottom: 16px;
}

.feature-block-title {
  color: #ff1493;
  font-size: 0.85em;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: left;
  padding-left: 4px;
  text-shadow: 0 0 6px rgba(255, 20, 147, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #18181c;
  border: 2px solid #333;
  border-radius: 6px;
  padding: 6px 8px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 32px;
  text-align: center;
}

.feature-item.selected {
  border: 3px solid #ff1493;
  background: rgba(255, 20, 147, 0.1);
  box-shadow: 0 0 12px rgba(255, 20, 147, 0.3);
  transform: scale(1.02);
}

.feature-item:hover {
  border-color: #ff1493;
  transform: scale(1.01);
}

.feature-item label {
  font-size: 0.75em;
  color: #fff;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
}

.feature-name {
  font-size: 0.75em;
  color: #fff;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
}

.feature-item.selected .feature-name {
  color: #ff1493;
  font-weight: 700;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { 
    transform: translateY(-50px); 
    opacity: 0; 
  }
  to { 
    transform: translateY(0); 
    opacity: 1; 
  }
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  html, body {
    overflow-y: auto !important;
    height: auto;
    max-height: none;
    min-height: 100vh;
  }
  .container {
    max-width: 100%;
    margin: 4px auto 0;
    padding: 12px 16px 280px;
    border-radius: 8px;
    overflow-y: hidden;
    justify-content: center;
    height: auto;
    min-height: calc(100vh - 8px);
  }
  .gallery-section {
    max-height: 200px;
    margin-top: 0;
    position: fixed;
    bottom: 70px;
    left: 8px;
    right: 8px;
    z-index: 999;
    background: #18181c !important;
  }
  .swipe-gallery {
    height: 160px;
    padding: 4px 8px 10px 12px;
  }
  .gallery-item {
    width: calc(45vw - 20px);
    height: calc((45vw - 20px) * 9 / 16);
  }
  .gallery-item img, .gallery-item iframe {
    height: calc((45vw - 20px) * 9 / 16);
  }
  .modal-content {
    width: 95%;
    margin: 2% auto;
  }
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 6px;
  }
  .footer-links {
    gap: 6px 12px;
  }
  .footer-link {
    font-size: 9px;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  html, body {
    overflow-y: auto !important;
    height: auto;
    min-height: 100vh;
  }
  .container {
    max-width: 100%;
    margin: 4px auto 0;
    padding: 8px 12px 280px;
    border-radius: 8px;
    height: auto;
    overflow-y: hidden;
    justify-content: center;
    min-height: calc(100vh - 8px);
  }
  .gallery-section {
    max-height: 190px;
    margin-top: 0;
    position: fixed;
    bottom: 70px;
    left: 8px;
    right: 8px;
    z-index: 999;
    background: #18181c !important;
  }
  .swipe-gallery {
    height: 155px;
    padding: 4px 8px 10px 12px;
  }
  .step-title {
    font-size: 0.85em;
    margin-bottom: 8px;
  }
  .form-group {
    margin-bottom: 8px;
  }
  .choice-group {
    margin-bottom: 10px;
  }
  .btn-group {
    margin-top: 12px;
  }
  .gallery-item {
    width: 220px;
    max-width: none;
    height: 124px;
  }
  .gallery-item img, .gallery-item iframe {
    height: 124px;
  }
  .choice-btn {
    padding: 10px 12px;
    font-size: 14px;
    min-height: 38px;
  }
  .btn {
    padding: 10px 16px;
    font-size: 14px;
    min-height: 38px;
  }
  select, input[type="text"], input[type="tel"], input[type="number"] {
    padding: 10px;
    font-size: 14px;
    min-height: 38px;
  }
  .btn {
    padding: 14px 20px;
    font-size: 16px;
  }
  .footer {
    padding: 8px 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #18181c;
  }
  .footer-link {
    font-size: 8px;
    padding: 3px 6px;
  }
  .modal-content {
    margin: 0;
    width: 98%;
    max-width: 98%;
    max-height: 96vh;
    border-radius: 6px;
  }
  .modal-header {
    padding: 10px 12px;
  }
  .modal-body {
    padding: 12px;
  }
  .modal iframe {
    height: 45vh;
  }
  .modal img {
    max-height: 55vh;
  }
}

/* Çok küçük mobil ekranlar (360px genişlik gibi) */
@media (max-width: 400px) {
  html, body {
    overflow-y: auto !important;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
  }
  .container {
    padding: 4px 12px 280px;
    margin-bottom: 0;
    max-width: 100%;
    height: auto;
    justify-content: center;
    overflow-y: hidden;
    min-height: calc(100vh - 8px);
  }
  #searchForm {
    max-width: 380px;
    width: 100%;
  }
  .header {
    padding: 8px 8px;
  }
  .gallery-section {
    margin: 0;
    padding: 6px 0 10px 0;
    max-height: 200px;
    overflow: clip;
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    position: fixed;
    bottom: 70px;
    left: 8px;
    right: 8px;
    background: #18181c !important;
    z-index: 999;
  }
  .gallery-title {
    font-size: 0.9em;
    margin-bottom: 4px;
    padding: 0 12px;
  }
  .swipe-gallery {
    padding: 16px 12px 10px;
    height: 165px;
    gap: 8px;
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: clip;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    align-items: center;
  }
  .swipe-gallery::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  .gallery-item {
    width: 220px;
    max-width: 220px;
    min-width: 220px;
    height: 124px;
    scroll-snap-align: start;
    flex-shrink: 0;
    margin: 0 4px;
  }
  .gallery-item img, .gallery-item iframe {
    height: 124px;
  }
  .step-title {
    font-size: 0.8em;
    margin-bottom: 6px;
    text-align: center;
  }
  .choice-btn {
    padding: 8px 10px;
    font-size: 13px;
    margin: 2px 0;
    width: 100%;
    max-width: calc(100vw - 40px);
    min-height: 36px;
  }
  .btn {
    padding: 8px 12px;
    font-size: 13px;
    min-height: 36px;
  }
  .form-group {
    margin-bottom: 6px;
  }
  .choice-group {
    margin-bottom: 8px;
  }
  .btn-group {
    margin-top: 10px;
  }
  select, input[type="text"], input[type="tel"], input[type="number"] {
    padding: 8px;
    font-size: 13px;
    min-height: 36px;
  }
  .btn-group {
    margin-top: 10px;
  }
  .step-title {
    font-size: 0.8em;
    margin-bottom: 6px;
  }
  .choice-btn {
    padding: 8px 10px;
    font-size: 13px;
    margin: 2px 0;
    width: 100%;
    max-width: calc(100vw - 40px);
    min-height: 36px;
  }
  .btn {
    padding: 14px 20px;
    font-size: 16px;
  }
  .footer {
    padding: 10px 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #18181c;
    border-top: 2px solid #ff1493;
  }
  .footer-link {
    font-size: 9px;
    padding: 4px 8px;
  }
  .modal-content {
    margin: 0;
    width: 99%;
    max-width: 99%;
    max-height: 97vh;
    border-radius: 4px;
  }
  .modal-header {
    padding: 8px 10px;
  }
  .modal-body {
    padding: 10px;
  }
  .modal iframe {
    height: 40vh;
  }
  .modal img {
    max-height: 50vh;
  }
  .close {
    font-size: 28px;
    top: 10px;
    right: 12px;
  }
}

/* Info Popup */
.info-popup {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s;
}

.info-popup-content {
  position: relative;
  background: linear-gradient(145deg, #23242a 0%, #18181c 100%);
  margin: 10% auto;
  padding: 0;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  animation: slideIn 0.3s;
  max-height: 80vh;
  overflow: hidden;
}

.info-popup-header {
  background: linear-gradient(90deg, #ff1493 0%, #c41061 100%);
  padding: 16px 20px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-popup-title {
  color: #fff;
  font-size: 1.3em;
  font-weight: 700;
  margin: 0;
}

.info-popup-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.2s;
}

.info-popup-close:hover {
  transform: scale(1.2);
}

.info-popup-body {
  padding: 20px;
  max-height: calc(80vh - 80px);
  overflow-y: auto;
}

.accordion-item {
  border: 1px solid #333;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.accordion-header {
  background: rgba(255, 20, 147, 0.1);
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: rgba(255, 20, 147, 0.2);
}

.accordion-title {
  color: #ff1493;
  font-weight: 700;
  margin: 0;
}

.accordion-icon {
  color: #ff1493;
  transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-body {
  padding: 16px;
  color: #fff;
  line-height: 1.6;
}

/* Selected items display */
.selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  min-height: 40px;
  padding: 8px;
  background: rgba(24, 24, 28, 0.5);
  border-radius: 8px;
  border: 2px dashed #333;
}

.selected-items:empty {
  display: none;
}

.selected-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #ff1493;
  color: #23242a;
  border-radius: 6px;
  font-size: 0.85em;
  font-weight: 700;
  box-shadow: 0 0 8px rgba(255, 20, 147, 0.4);
  animation: fadeIn 0.3s;
}

.selected-item .remove-btn {
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 700;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.selected-item .remove-btn:hover {
  opacity: 1;
}