/* =============================================================================
   base.css — Testani Consulting
   Foundation layer. Purged of all unused Webflow components.
   Load order: normalize.css → base.css → core.css
   ============================================================================= */

/* === Global Reset === */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === Document === */

html {
  height: 100%;
}

body {
  min-height: 100%;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

/* === Display helpers === */

.u-block {
  display: block;
}

.u-inline-block {
  max-width: 100%;
  display: inline-block;
}

.u-hidden {
  display: none;
}

/* === Headings === */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}

h2 {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}

h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}

h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  margin: 0 0 10px 0;
  padding: 10px 20px;
  border-left: 5px solid #e2e2e2;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0;
  margin-bottom: 10px;
}

figcaption {
  margin-top: 5px;
  text-align: center;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

/* === Form elements === */

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

/* === Button base === */

.btn-primary {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898ec;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}

input.btn-primary {
  -webkit-appearance: button;
}

/* === Form container === */

.form-container {
  margin: 0 0 15px;
}

.status-success {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #dddddd;
}

.status-error {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}

/* === Inputs === */

.form-input,
.form-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

.form-input::placeholder,
.form-select::placeholder {
  color: #999;
}

.form-input:focus,
.form-select:focus {
  border-color: #3898ec;
  outline: 0;
}

.form-input[disabled],
.form-select[disabled],
.form-input[readonly],
.form-select[readonly],
fieldset[disabled] .form-input,
fieldset[disabled] .form-select {
  cursor: not-allowed;
}

.form-input[disabled]:not(.form-input-disabled),
.form-select[disabled]:not(.form-input-disabled),
.form-input[readonly],
.form-select[readonly],
fieldset[disabled]:not(.form-input-disabled) .form-input,
fieldset[disabled]:not(.form-input-disabled) .form-select {
  background-color: #eeeeee;
}

textarea.form-input,
textarea.form-select {
  height: auto;
}

.form-select {
  background-color: #f3f3f3;
}

.form-select[multiple] {
  height: auto;
}

/* === Embed container === */

.embed-container::before,
.embed-container::after {
  content: ' ';
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.embed-container::after {
  clear: both;
}

/* === Tabs component === */

.tabs {
  position: relative;
}

.tab-menu {
  position: relative;
}

.tab-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  padding: 9px 30px;
  text-align: left;
  cursor: pointer;
  color: #222222;
  background-color: #dddddd;
}

.tab-link.is-active {
  background-color: #c8c8c8;
}

.tab-link:focus {
  outline: 0;
}

.tab-content-area {
  position: relative;
  display: block;
  overflow: hidden;
}

.tab-pane {
  position: relative;
  display: none;
}

.tab-pane.is-active {
  display: block;
}

@media screen and (max-width: 479px) {
  .tab-link {
    display: block;
  }
}

/* === Rich text === */

.rich-text::before,
.rich-text::after {
  content: ' ';
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.rich-text::after {
  clear: both;
}

.rich-text ol,
.rich-text ul {
  overflow: hidden;
}
