/* Contact Us — Modern Professional Layout */

.contact-page {
  padding-bottom: 2rem;
}

/* Hero */
.contact-hero {
  background: linear-gradient(135deg, #173B45 0%, #0b1220 100%);
  padding: 2rem 1.25rem 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero__inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.contact-hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.contact-hero__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.contact-hero__subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-hero {
    padding: 2.5rem 2rem 3rem;
    margin-bottom: 2rem;
  }

  .contact-hero__title {
    font-size: 1.75rem;
  }

  .contact-hero__subtitle {
    font-size: 1rem;
  }
}

/* Form Card */
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 2rem 2.5rem;
  }
}

.contact-form__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 1.25rem;
}

.contact-form .form-control {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
}

.contact-form .form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.15);
}

.contact-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-1);
}

.contact-form__btn {
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(var(--brand-primary-rgb), 0.3);
}

/* Info Card */
.contact-info-card {
  background: linear-gradient(135deg, #173B45 0%, #0b1220 100%);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  height: 100%;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.contact-info-card > * {
  position: relative;
  z-index: 1;
}

.contact-info-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-card__title i {
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-info-card__link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.35rem;
  transition: opacity 0.2s ease;
}

.contact-info-card__link:hover {
  color: #fff;
  opacity: 0.95;
}

.contact-info-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 1.25rem 0;
}

.contact-info-card__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact-info-card__social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  font-size: 1.25rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-info-card__social a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

/* Alerts */
.contact-form .alert {
  border-radius: 12px;
  border: none;
}
