/* ====== MOBİL RESPONSIVE (768px və aşağısı) ====== */
@media (max-width: 768px) {
  /* Tours Controls */
  .controls .prev-tour {
    top: -50px;
    left: 0;
  }

  .tours-slider {
    padding-left: 18px;
    padding-right: 18px;
  }

  .controls .next-tour {
    top: -50px;
    right: 0;
  }

  .control-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* Section Header */
  .section-header h2 {
    margin-bottom: 50px; /* mobil üçün daha böyük boşluq */
  }

  /* Planner Container */
  .planner-container {
    padding: 15px 10px;
  }

  .price-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.95rem;
    padding: 12px 18px;
  }

  .planner-banner h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .planner-banner p {
    font-size: 0.85rem;
    text-align: center;
  }

  .progress-bar {
    position: relative;
    height: auto;
    background: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }

  .progress-step {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    width: 20%;
  }

  .step-number {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .step-label {
    font-size: 0.85rem;
  }

  .step {
    width: 100%;
    float: none;
    margin-bottom: 8px;
  }

  .step-content {
    padding-top: 16px;
  }

  /* Hotel Options */
  .hotel-options {
    flex-direction: column;
    gap: 15px;
  }
  
  .hotel-image {
    height: 150px;
  }

  /* Virtual Tours */
  .vr-btn {
    width: 32px;
    height: 32px;
  }

  .virtual-tours {
    padding: 40px 0;
  }
}

/* ====== KİÇİK MOBİL (600px və aşağısı) ====== */
@media (max-width: 600px) {
  /* Address Row */
  .address-row {
    flex-direction: column;
  }
  
  .address-row .form-group {
    width: 100%;
  }

  /* Footer */
  .footer-logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .footer-about {
    max-width: 100%;
    margin-top: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo {
    margin-left: 0;
  }

  .footer-about {
    margin-left: 0;
    max-width: 100%;
  }
}

/* ====== TABLET (900px və aşağısı) ====== */
@media (max-width: 900px) {
  /* Contact Container */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-info {
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .contact-form {
    max-width: 100%;
    padding: 30px 20px;
  }
}

/* ====== ÇOX KİÇİK EKRANLAR (576px və aşağısı) ====== */
@media (max-width: 576px) {
  /* Final Message */
  .final-message {
    padding: 30px 20px;
    margin: 20px 15px;
  }
  
  .animation-container {
    width: 80px;
    height: 80px;
  }
  
  .checkmark {
    font-size: 2.8rem;
  }
  
  .final-message h2 {
    font-size: 1.5rem;
  }
  
  .final-message p {
    font-size: 1rem;
  }
  
  .restart-btn {
    padding: 10px 25px;
  }
}

/* FadeIn Animation (ümumi, media query xaricində) */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}