/* contact.css - Contact page only */

.contact-hero {
  padding: 140px 0 100px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), #a78bfa);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,30 L100,100 L0,100 Z" fill="rgba(255,255,255,0.07)"/></svg>') bottom / 100% 100% repeat-x;
  pointer-events: none;
}

.contact-hero h1 {
  font-size: 3.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.contact-hero p {
  font-size: 1.4rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-form-wrapper h2,
.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--primary), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99,102,241,0.15);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  position: relative;
}

.btn-submit:hover .btn-text {
  opacity: 0;
}

.btn-submit:hover .btn-loading {
  display: inline-block !important;
  opacity: 1;
}

.form-status {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

.form-status.success {
  background: #10b981;
  background: rgba(16,185,129,0.1);
}

.form-status.error {
  color: #ef4444;
  background: rgba(239,68,68,0.1);
}

/* Contact Info */
.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.2rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  transition: all 0.3s;
}

.contact-info .info-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.contact-info i {
  font-size: 1.6rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), #a78bfa);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info strong {
  display: block;
  margin-bottom: 0.3rem;
}

.contact-info p {
  color: var(--text-light);
}

.social-big p {
  margin: 2.5rem 0 1rem;
  color: var(--text-light);
}

.social-links-big a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  color: var(--text-light);
  font-size: 1.5rem;
  border-radius: 50%;
  margin-right: 12px;
  transition: all 0.4s;
}

.social-links-big a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 25px rgba(99,102,241,0.3);
}

