/* ==========================================================================
   CONTACT.CSS - Contact Page Styles
   ========================================================================== */

.contact-page {
  padding-top: 10rem;
  min-height: 100vh;
}

.contact-form-section {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 1.5rem;
  }
}

.contact-form .form-control {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  background: #000000;
  border-color: #00d9ff;
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
  color: #ffffff;
}

.contact-form .form-control::placeholder {
  color: #888888;
}

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

.contact-form label {
  color: #cccccc;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-info-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: #00d9ff;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
}

.contact-info-card i {
  font-size: 2rem;
  color: #00d9ff;
  margin-bottom: 1rem;
}

.contact-info-card h5 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: #cccccc;
  margin: 0;
  font-size: 0.95rem;
}

.contact-info-card a {
  color: #00d9ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #4dffff;
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.success-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.success-card i {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 1.5rem;
}

.success-card h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.success-card p {
  color: #cccccc;
  margin-bottom: 2rem;
}

/* Form Focus States */
.form-control:focus {
  background-color: var(--bg-elevated) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 15px var(--primary-glow) !important;
  color: white !important;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

/* Success Page */
.success-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.success-icon {
  animation: bounce-success 1s ease infinite;
}

@keyframes bounce-success {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive accordion buttons */
@media (max-width: 576px) {
  .accordion-button {
    font-size: 0.9rem;
  }
  .accordion-button i {
    font-size: 0.85rem;
  }
}

/* Accordion arrow color */
.accordion-button::after {
  background-image: none;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  font-size: 1rem;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

/* Remove bottom border radius from button when expanded */
.accordion-button:not(.collapsed) {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* Remove top border radius from accordion body */
.accordion-body {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2);
}
