/* Contact page specific styles */

/* Hero Section */
.contact-hero {
  background: linear-gradient(
    135deg,
    rgba(163, 191, 250, 0.1),
    rgba(255, 232, 214, 0.1)
  );
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  opacity: 0.05;
  z-index: -1;
}

body[data-theme="dark"] .contact-hero .hero-background {
  opacity: 0.1;
}

.contact-hero .hero-content {
  animation: fadeInUp 0.8s ease forwards;
}

.contact-hero .hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.contact-hero .hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted-light);
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="dark"] .contact-hero .hero-subtitle {
  color: var(--text-muted-dark);
}

/* Contact Form Section */
.contact-form {
  background: var(--bg-light);
}

body[data-theme="dark"] .contact-form {
  background: var(--bg-dark);
}

.spr-contact-form .form-control,
.spr-contact-form .form-select {
  border-radius: 12px;
  border: 1px solid rgba(163, 191, 250, 0.3);
  padding: 14px 18px;
  background: transparent;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

body[data-theme="dark"] .spr-contact-form .form-control,
body[data-theme="dark"] .spr-contact-form .form-select {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-dark);
}

.spr-contact-form .form-control:focus,
.spr-contact-form .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(163, 191, 250, 0.25);
}

.spr-contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.spr-contact-form .form-check-input {
  border-color: rgba(163, 191, 250, 0.3);
}

body[data-theme="dark"] .spr-contact-form .form-check-input {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: var(--bg-dark-secondary);
}

.spr-contact-form .form-check-input:checked {
  background-color: varW3C
  border-color: var(--secondary-color);
}

.spr-contact-form .form-check-label {
  color: var(--text-muted-light);
  font-size: 0.875rem;
}

body[data-theme="dark"] .spr-contact-form .form-check-label {
  color: var(--text-muted-dark);
}

/* Location Section */
.contact-location {
  background: rgba(232, 236, 239, 0.3);
}

body[data-theme="dark"] .contact-location {
  background: rgba(232, 236, 239, 0.05);
}

.location-content {
  padding: 2rem 0;
}

.location-details .contact-item {
  margin-bottom: 1.5rem;
}

.location-map iframe {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(163, 191, 250, 0.1);
}

body[data-theme="dark"] .location-map iframe {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Support Team Section */
.support-team {
  background: var(--bg-light);
}

body[data-theme="dark"] .support-team {
  background: var(--bg-dark);
}

.team-card {
  background: var(--bg-light);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(163, 191, 250, 0.1);
  height: 100%;
}

body[data-theme="dark"] .team-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(163, 191, 250, 0.2);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  padding: 2rem;
  text-align: center;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

body[data-theme="dark"] .team-name {
  color: var(--text-dark);
}

.team-role {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.team-description {
  color: var(--text-muted-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

body[data-theme="dark"] .team-description {
  color: var(--text-muted-dark);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social .social-link {
  width: 40px;
  height: 40px;
  background: rgba(163, 191, 250, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-social .social-link:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 60px;
  }

  .contact-hero .hero-title {
    font-size: 2.5rem;
  }

  .contact-hero .hero-subtitle {
    font-size: 1.125rem;
  }

  .location-content {
    padding: 1rem 0;
    margin-bottom: 2rem;
  }

  .team-image img {
    height: 250px;
  }

  .team-content {
    padding: 1.5rem;
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}