/* ═══════════════════════════════════════════════════
   CannabisNearMe.co.uk - Contact Page Styles
   ═══════════════════════════════════════════════════ */

.contact-hero {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.contact-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info h2 {
  color: #1B5E20;
  font-size: 1.8em;
  margin-bottom: 30px;
}

.contact-info-item {
  margin-bottom: 30px;
}

.contact-info-item h3 {
  color: #388E3C;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-info-item p {
  color: #555;
  line-height: 1.6;
}

.contact-info-item a {
  color: #388E3C;
  text-decoration: none;
  font-weight: 500;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.contact-form h2 {
  color: #1B5E20;
  font-size: 1.8em;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #333;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1em;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #388E3C;
  box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.1);
}

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

.form-submit {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.form-submit:active {
  transform: translateY(0);
}

.partnership-section {
  background: #f0f8f0;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #c8e6c9;
  margin-top: 60px;
}

.partnership-section h2 {
  color: #1B5E20;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.partnership-section p {
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.partnership-highlight {
  background: white;
  padding: 20px;
  border-radius: 4px;
  margin: 20px 0;
  border-left: 4px solid #388E3C;
}

.partnership-highlight h3 {
  color: #388E3C;
  margin-bottom: 10px;
}

.response-message {
  display: none;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-weight: 500;
}

.response-message.success {
  background: #c8e6c9;
  color: #1b5e20;
  display: block;
}

.response-message.error {
  background: #ffcdd2;
  color: #c62828;
  display: block;
}
