/* Contact Page Styles */
.contact-page {
  overflow-x: hidden;
}

/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, var(--midnight-blue) 0%, #2a2a8a 100%);
  color: white;
  padding: 100px 0 80px;
  text-align: center;
}

.contact-hero h1 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.contact-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info */
.contact-info h2 {
  margin-bottom: 16px;
}

.info-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.info-icon {
  font-size: 1.8rem;
}

.info-content h4 {
  margin: 0 0 4px;
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

.info-content a,
.info-content p {
  margin: 0;
  font-size: 16px;
  color: var(--midnight-blue);
  font-weight: 600;
}

.info-content a:hover {
  color: var(--emerald-green);
}

/* What to Expect */
.what-to-expect {
  background: var(--midnight-blue);
  padding: 24px;
  border-radius: 12px;
  color: white;
}

.what-to-expect h3 {
  color: white;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.what-to-expect ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.what-to-expect li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.what-to-expect li:last-child {
  border-bottom: none;
}

.step-num {
  width: 28px;
  height: 28px;
  background: var(--misted-yellow);
  color: var(--midnight-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.what-to-expect li span:last-child {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  margin-top: 8px;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--emerald-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
}

.success-message h3 {
  color: var(--emerald-green);
  margin-bottom: 12px;
}

.success-message p {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Error Message */
.error-message {
  background: #fee;
  color: #c00;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0 60px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-form-wrapper {
    padding: 24px;
  }
}
