/* --- Contact Page Scoped CSS --- */

:root {
  --cnt-bg-dark: #050810;
  --cnt-panel: #0F1629;
  --cnt-border: rgba(255, 255, 255, 0.08);
  --cnt-primary: #4C86FF;
  --cnt-text-main: #FFFFFF;
  --cnt-text-muted: #94A3B8;
}

.cnt-page-wrapper {
  background: var(--cnt-bg-dark);
  min-height: 100vh;
  padding-top: 120px; /* Space for fixed header */
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

/* Background Effects */
.cnt-bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 600px;
  background: radial-gradient(circle at top, rgba(76, 134, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cnt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.cnt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* Left Column: Info */
.cnt-info {
  padding-top: 40px;
}

.cnt-label {
  color: var(--cnt-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}

.cnt-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--cnt-text-main);
}

.cnt-desc {
  font-size: 18px;
  color: var(--cnt-text-muted);
  line-height: 1.6;
  margin-bottom: 48px;
}

.cnt-details-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cnt-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cnt-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cnt-text-main);
  border: 1px solid var(--cnt-border);
}

.cnt-detail-text h4 {
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--cnt-text-main);
}

.cnt-detail-text p, .cnt-detail-text a {
  font-size: 16px;
  color: var(--cnt-text-muted);
  margin: 0;
  text-decoration: none;
  transition: color 0.2s;
}

.cnt-detail-text a:hover {
  color: var(--cnt-primary);
}

.cnt-socials {
  margin-top: 48px;
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cnt-text-muted);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-link:hover {
  background: var(--cnt-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Right Column: Form */
.cnt-form-card {
  background: var(--cnt-panel);
  border: 1px solid var(--cnt-border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--cnt-text-main);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--cnt-border);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
  cursor: pointer;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--cnt-primary);
  background: rgba(76, 134, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(76, 134, 255, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--cnt-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(76, 134, 255, 0.3);
}

.btn-submit:hover {
  background: #3b70e0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 134, 255, 0.4);
}

@media (max-width: 900px) {
  .cnt-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cnt-info {
    padding-top: 0;
    text-align: center;
  }
  .cnt-details-list {
    align-items: center;
  }
  .cnt-socials {
    justify-content: center;
  }
  .cnt-form-card {
    padding: 32px;
  }
}
