.ahn-booking-form-wrapper,
.ahn-smart-form-widget {
  max-width: 920px;
  margin: 0 auto;
  font-family: 'Inter', system-ui, sans-serif;
}

.ahn-booking-form {
  position: relative;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 38px 90px rgba(15, 23, 42, 0.32);
  border-radius: 32px;
  padding: 34px;
  color: #fff;
}

.ahn-form-header {
  margin-bottom: 24px;
}

.ahn-form-header h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.ahn-form-header p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.ahn-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ahn-field,
.ahn-form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ahn-field-full {
  grid-column: span 2;
}

.ahn-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.ahn-field input,
.ahn-field textarea,
.ahn-form-row input,
.ahn-form-row textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  font-size: 15px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.ahn-field input:focus,
.ahn-field textarea:focus,
.ahn-form-row input:focus,
.ahn-form-row textarea:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.8);
  background: rgba(255, 255, 255, 0.14);
}

.ahn-field textarea {
  min-height: 110px;
}

.ahn-button,
.ahn-form-submit {
  padding: 16px 26px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ahn-button:hover,
.ahn-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.22);
}

.ahn-form-footer,
.ahn-booking-form .ahn-form-footer {
  margin-top: 24px;
}

.ahn-booking-form .ahn-form-footer {
  display: flex;
  justify-content: flex-end;
}

.ahn-quote-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

@media (max-width: 768px) {
  .ahn-booking-grid {
    grid-template-columns: 1fr;
  }

  .ahn-booking-form {
    padding: 24px;
  }
}
