* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
    font-family: "IranYekan";
    src: url("../cp/assets/css_main_deprixa/fonts/IRANYekanMobileFN.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }
  * {
    font-family: "IranYekan", Arial, sans-serif !important;
  }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Tahoma",
    sans-serif;
  background: #f5f7fa;
  overflow-x: hidden;
  color: #2c3e50;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="600" cy="400" r="200" fill="%231e3a8a" opacity="0.8"/><circle cx="600" cy="400" r="150" fill="%233b82f6" opacity="0.6"/><path d="M400 400 Q500 350 600 400 T800 400" stroke="%23fbbf24" stroke-width="2" fill="none" opacity="0.8"/></svg>');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Progress Bar */
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1000;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.3s ease;
  width: 0%;
}

/* Steps */
.step-section {
  min-height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.5s ease-out;
}

.step-section.active {
  display: flex;
}

.step-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  animation: slideUp 0.5s ease-out;
}

.step-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #2c3e50;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #667eea;
}

.option-cards {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}
.option-card {
    min-height: 80px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.option-card:hover {
  border-color: #667eea;
  transform: translateY(-2px);
}

.option-card.selected {
  border-color: #667eea;
  background: #f0f4ff;
}

.option-card h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.option-card p {
  color: #666;
  font-size: 0.9rem;
}
@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toastify.full-width-top {
  width: 100% !important;
  border-radius: 0 !important;
  text-align: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  animation: slideDownFade 0.4s ease forwards;
}

@media (min-width: 480px) {
  .toastify.full-width-top {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 8px !important;
  }
}

.address-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tab {
  flex: 1;
  padding: 0.8rem;
  color: #667eea;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.tab.active {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.address-display {
  background: #f8f9fa;
  padding: 1rem;
  color: #666;
  border-radius: 10px;
  font-family: monospace;
  text-align: center;
  margin-bottom: 1rem;
}

.tracking-code {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin: 2rem 0;
}

.tracking-code h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.success-icon {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .step-section {
    padding: 1rem;
  }
  .tab {
    padding: 0.3rem;
  }
  .step-title {
    margin-bottom: 5px;
  }
  .form-group {
    margin-bottom: 5px;
  }
  .step-card {
    padding: 2rem;
    /* margin: 1rem; */
  }
}

body {
  font-family: "Vazir", sans-serif;
  background: #00327286;
  color: #fff;
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.btn-primary {
  @apply bg-cyan-500 hover:bg-cyan-600 text-white font-bold py-3 px-6 rounded-xl transition-all;
}
.btn-secondary {
  @apply bg-slate-700 hover:bg-slate-600 text-white font-bold py-3 px-6 rounded-xl transition-all;
}
.input {
  @apply w-full p-3 rounded-xl border border-slate-600 bg-slate-800 text-white focus:outline-none focus:border-cyan-500;
}
.btn-glass {
  width: 40%;
  margin: 0.5rem;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  /* background: rgba(0, 86, 179, 0.2); */
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-glass:hover {
  background: #0056b3;
  box-shadow: 0 0 20px #0056b3;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.bounce-arrow {
  animation: bounce 1s infinite;
}

.rotate-up {
  transform: rotate(180deg);
  transition: transform 0.4s ease;
}

.rotate-down {
  transform: rotate(0deg);
  transition: transform 0.4s ease;
}
.btn-glass-2 {
  margin: 0.5rem;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(0, 86, 179, 0.8);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-glass-2:hover {
  background: #0056b3;
  box-shadow: 0 0 20px #0056b3;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  /* text-shadow: 0 0 12px #0056b3; */
}
.globe {
  animation: rotate360 60s linear infinite;
  transform-origin: center;
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#tourModalAll {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}
#tourModalAll.show {
  opacity: 1;
  visibility: visible;
}
.tour-box {
  background: #fff;
  border-radius: 25px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  direction: rtl;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  animation: pop 0.45s ease forwards;
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes moveUpOnce {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.moveUpWave {
  opacity: 0;
  animation-name: moveUpOnce;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
}

.tour-icons {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}
.tour-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #2c3e50;
}
.tour-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}
.tour-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  padding: 0.6rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.tour-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
