/* Contact Page Styles - Matching Landing Page */
:root {
  --brand-1: #60a5fa;
  --brand-2: #8b5cf6;
  --brand-accent: #22c55e;
  --card-bg: rgba(0,0,0,0.5);
  --card-border: rgba(255,255,255,0.1);
}

body {
  font-family: var(--font-family);
  margin: 0;
  color: #e2e8f0;
  background: #000000;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

.contact-container {
  position: relative;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(10,10,10,0.4), rgba(10,10,10,0.6));
  backdrop-filter: blur(2px);
  min-height: 100vh;
}

.heading {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 432;
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.subheading {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 424;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.body-text {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 460;
  line-height: 1.6;
}

.section-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  position: relative;
}

.section-card:hover {
  border-color: rgba(96,165,250,0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-input {
  background: rgba(10,10,10,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  color: white;
  font-family: var(--font-family);
  font-weight: 460;
  font-size: 16px;
  padding: 14px 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 100%;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}

.form-input:focus {
  outline: none;
  border-color: rgba(96,165,250,0.3);
  background: rgba(10,10,10,0.9);
  box-shadow: 0 0 0 2px rgba(96,165,250,0.1);
}

.form-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.submit-button {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
  width: 100%;
}

.submit-button:hover {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-method {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(96,165,250,0.2);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .form-input, .submit-button {
    font-size: 16px !important;
    min-height: 48px !important;
    border-radius: 8px !important;
  }
  
  .section-card {
    padding: 1.5rem !important;
    margin: 1rem !important;
  }
  
  .heading {
    font-size: clamp(28px, 7vw, 36px) !important;
    margin-bottom: 1rem !important;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Loading state */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading .submit-button {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}