/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
}

.btn-primary {
  background: var(--cta-orange);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background: var(--cta-orange-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: rgba(0, 102, 204, 0.1);
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
.heading-1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.heading-2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--text-primary);
}

.heading-3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.body-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Form elements */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-weight: 600;
  color: var(--text-primary);
}

.form-input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  font-size: 1rem;
  font-family: inherit;
}

.form-input:focus {
  border-color: var(--primary-blue);
  outline: 2px solid rgba(0, 102, 204, 0.2);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 16px;
}

/* KIOSK Showcase */
.kiosk-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.kiosk-image-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.image-placeholder {
  width: 100%;
  border-radius: 12px;
  border: 2px dashed var(--gray-200);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-weight: 600;
}

.kiosk-placeholder {
  aspect-ratio: 4/3;
  min-height: 300px;
}

.kiosk-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  aspect-ratio: 4/3;
}
