* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #b59e9c;
  --accent-color: #f5f5f5;
  --dark-text: #2c2c2c;
  --light-text: #ffffff;
  --border-color: #e8e8e8;
  --success-color: #6fa876;
  --hover-opacity: 0.9;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-text);
  color: var(--dark-text);
  overflow-x: hidden;
}

.hero-section {
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      rgba(181, 158, 156, 0.9) 100%);
  color: var(--light-text);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(30px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: white;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: white;
  opacity: 0.95;
}

/* Form Section */
.form-section {
  padding: 60px 0;
  background: var(--accent-color);
}

.form-container {
  background: var(--light-text);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(181, 158, 156, 0.1);
  animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i {
  font-size: 1.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(181, 158, 156, 0.25);
}

.form-control::placeholder {
  color: #999;
}

/* Time Slots */
.time-slots-section {
  margin-top: 2rem;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 1rem;
}

.time-slot {
  position: relative;
}

.time-slot input[type="radio"] {
  display: none;
}

.time-slot-label {
  display: block;
  padding: 12px;
  text-align: center;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--light-text);
  font-weight: 600;
  color: var(--dark-text);
  user-select: none;
}

.time-slot-label:hover {
  border-color: var(--primary-color);
  background-color: rgba(181, 158, 156, 0.05);
  transform: translateY(-2px);
}

.time-slot input[type="radio"]:checked+.time-slot-label {
  background-color: var(--primary-color);
  color: var(--light-text);
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(181, 158, 156, 0.3);
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--primary-color);
  color: var(--light-text);
  border: none;
  padding: 12px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary-custom:hover {
  background-color: #a08b8a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(181, 158, 156, 0.3);
}

.btn-primary-custom:active {
  transform: translateY(0);
}

/* Success Message */
.success-message {
  display: none;
  background: var(--success-color);
  color: var(--light-text);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 2rem;
  animation: slideIn 0.5s ease-out;
  box-shadow: 0 4px 12px rgba(111, 168, 118, 0.2);
}

.success-message.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Step Indicator */
.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.step-indicator::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: var(--primary-color);
  color: var(--light-text);
  border-color: var(--primary-color);
}

.step-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  color: var(--dark-text);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .form-container {
    padding: 20px;
  }

  .time-slots-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }

  .step-indicator {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .step-indicator::before {
    display: none;
  }
}

/* Loading Animation */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}