/* domain-transfer.css */

.transfer-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.transfer-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(108, 99, 255, 0.15), transparent 50%),
              radial-gradient(circle at bottom left, rgba(79, 172, 254, 0.15), transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 40px;
}

.transfer-form-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  max-width: 800px;
  margin: 0 auto;
}

.transfer-inputs {
  display: flex;
  gap: 15px;
  align-items: flex-end;
}

.form-group {
  flex: 1;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.2);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: #64748b;
}

.form-control:focus {
  outline: none;
  border-color: #6c63ff;
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.transfer-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #6c63ff 0%, #4facfe 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.transfer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
}

.timeline {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.timeline-step {
  text-align: center;
  flex: 1;
  max-width: 300px;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(108, 99, 255, 0.1);
  color: #6c63ff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary, #333);
}

.step-desc {
  color: var(--text-secondary, #666);
  line-height: 1.6;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: #6c63ff;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.tld-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.tld-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.tld-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.tld-name {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.tld-price {
  font-size: 1.25rem;
  color: #4facfe;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .transfer-inputs { flex-direction: column; }
  .form-group { width: 100%; }
  .transfer-btn { width: 100%; }
  .timeline { flex-direction: column; align-items: center; }
  .three-col-grid { grid-template-columns: 1fr; }
}
