/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

html,
body {
  padding: 0;
  margin: 0;
  min-height: 100%;
  width: 100%;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Roboto',
    'Oxygen',
    'Ubuntu',
    'Cantarell',
    'Fira Sans',
    'Droid Sans',
    'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Logo */
.logo-container {
  text-align: center;
  margin-bottom: 60px;
  padding: 20px 0;
  animation: fadeIn 1s ease-out;
}

.logo {
  max-width: 300px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

/* Header */
header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.subtitle {
  font-size: 1.4rem;
  color: #f4d03f;
  font-weight: 600;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 20px;
}

.description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px;
}

.exclusive-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

/* Form Styles */
.booking-container {
  max-width: 800px;
  margin: 0 auto;
  background: #111111;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 40px;
  border-radius: 12px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #ffffff;
}

.form-group input[type='text'],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.conditional-field {
  margin-top: 15px;
  display: none;
}

.submit-btn {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000000;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Calendly Section */
#calendly-section {
  display: none;
  margin-top: 40px;
  animation: fadeIn 0.5s ease-out;
}

#calendly-section h2 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}
/* Steps Section */
.steps {
  display: none;
}

.step {
  background: #111111;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.step:nth-child(1) {
  animation-delay: 0.4s;
}
.step:nth-child(2) {
  animation-delay: 0.5s;
}
.step:nth-child(3) {
  animation-delay: 0.6s;
}

.step:hover {
  border-color: #d4af37;
  background: #1a1a1a;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.step-number {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000000;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.step h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.step p {
  color: #b8b8b8;
  line-height: 1.6;
  font-size: 1.1rem;
}

.university-logo-container {
  margin-top: 30px;
  text-align: center;
}

.university-logo {
  max-width: 250px;
  height: auto;
  transition: transform 0.3s ease;
}

.university-logo:hover {
  transform: scale(1.05);
}

/* Contact Information */
.contact-info {
  animation: fadeInUp 0.8s ease-out 0.7s both;
  padding: 40px 0;
  margin-bottom: 60px;
  text-align: center;
}

.contact-info p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-info a {
  color: #f4d03f;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 24px;
  margin: 10px;
  border: 1px solid rgba(244, 208, 63, 0.3);
  border-radius: 50px;
  background: rgba(244, 208, 63, 0.05);
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.contact-info a:hover {
  background: #f4d03f;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Form Section */
.form-section {
  animation: fadeInUp 0.8s ease-out 0.8s both;
  overflow: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 40px 20px;
  }

  header h1 {
    font-size: 2.2rem;
  }

  .step {
    padding: 25px;
  }

  .step h2 {
    font-size: 1.3rem;
  }

  .logo {
    max-width: 240px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 40px 20px;
  }

  header h1 {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}

/* Form Section */
.form-section {
  animation: fadeInUp 0.8s ease-out 0.8s both;
  overflow: visible;
}
