/* ===== PAGE HERO ===== */
.page-hero {
  background: #0a0a0a;
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(227, 234, 28, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 234, 28, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: #888888;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
  background: #111111;
}

.contact-grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* INFO */
.contact-info {
  flex: 1;
  min-width: 260px;
}

.contact-info-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(227, 234, 28, 0.15);
  border: 1px solid rgba(227, 234, 28, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e3ea1c;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 0.95rem;
  color: #f0f0f0;
  line-height: 1.5;
}

.contact-link {
  color: #e3ea1c;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.8;
}

.contact-hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* FORM */
.contact-form-wrap {
  flex: 1.6;
  min-width: 300px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 200px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 8px;
}

.required {
  color: #e3ea1c;
}

.form-input {
  width: 100%;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: #555555;
}

.form-input:focus {
  border-color: #e3ea1c;
  box-shadow: 0 0 0 3px rgba(227, 234, 28, 0.1);
}

.form-input.error {
  border-color: #f87171;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: #1a1a1a;
  color: #ffffff;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #e3ea1c;
  flex-shrink: 0;
}

.form-check-label {
  font-size: 0.85rem;
  color: #888888;
  line-height: 1.5;
}

.form-link {
  color: #e3ea1c;
  text-decoration: underline;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  min-height: 24px;
}

.form-status.success {
  color: #4ade80;
}

.form-status.error {
  color: #f87171;
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .page-hero-title {
    font-size: 2rem;
  }
}