:root {
  --bg1: #fff7ed; /* soft warm background */
  --primary-1: #f97316; /* orange */
  --primary-2: #ea580c; /* deeper orange */
  --glass-bg: rgba(255, 255, 255, 0.28);
  --muted: rgba(30, 30, 30, 0.6);
  --card-border: rgba(255, 255, 255, 0.35);
  --radius: 16px;
  --max-width: 1120px;
  --container-padding: 24px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

/* Page */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  margin-top: 8rem !important
  ;
  background: linear-gradient(135deg, #fff7ed 0%, #fff1dc 50%, #fff7ed 100%);
  color: #0b1220;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* floating blobs */
.bg-blob {
  position: absolute;
  filter: blur(60px);
  opacity: 0.25;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.blob-1 {
  width: 300px;
  height: 300px;
  left: 3%;
  top: 6%;
  background: linear-gradient(45deg, #f97316, #facc15); /* orange to yellow */
}
.blob-2 {
  width: 380px;
  height: 380px;
  right: 4%;
  top: 18%;
  background: linear-gradient(45deg, #fb923c, #f97316); /* orange shades */
}
.blob-3 {
  width: 280px;
  height: 280px;
  left: 30%;
  bottom: 6%;
  background: linear-gradient(45deg, #ea580c, #f97316); /* deeper orange */
}

/* container */
.container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 48px auto;
  padding: var(--container-padding);
}

/* header */
.head {
  text-align: center;
  margin-bottom: 32px;
}
.head h1 {
  font-size: 28px;
  margin: 0 0 8px;
  font-family: "Antonio", sans-serif;
}
.subtitle {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
}

/* layout grid */
.grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}

/* responsive */
@media screen and (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 18px;
  }
}

/* glass styles */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(8px) saturate(120%);
  box-shadow: 0 6px 30px rgba(12, 18, 36, 0.06);
}

.glass-lg {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.42),
    rgba(255, 255, 255, 0.26)
  );
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(12, 18, 36, 0.08);
}

/* contact cards */
.contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: space-between;
  a {
    text-decoration: none;
    color: inherit;
  }
}
@media screen and (max-width: 900px) and (min-width: 550px) {
  .contacts {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.card {
  display: flex;
  /* gap: 12px; */
  align-items: flex-start;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.42),
    rgba(255, 255, 255, 0.26)
  );
  border: none;
  border-radius: 20px;
  padding: 2vw;
}
.icon img {
  height: 50px;
  padding: 1rem 0 0 1rem;
}
.card-body h3 {
  margin: 0 0 4px;
  font-size: 16px;
}
.muted {
  color: var(--muted);
  margin: 0;
}
.small {
  color: rgba(20, 20, 20, 0.55);
  font-size: 13px;
  margin-top: 8px;
}

/* form */
.form-wrap {
  width: 100%;
  height: 100%;
  height: -webkit-fill-available;
}
.form-header h2 {
  margin: 0 0 6px;
}
form {
  margin-top: 8px;
}
.row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 550px) {
  .row.two {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
label {
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(8, 12, 20, 0.75);
}
input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(12, 18, 36, 0.06);
  padding: 10px 12px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.6);
  outline: none;
  transition: box-shadow 0.15s, transform 0.06s;
  backdrop-filter: blur(4px);
}
input:focus,
select:focus,
textarea:focus {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
textarea {
  resize: vertical;
  min-height: 120px;
}

/* actions & buttons */
.actions {
  margin-top: 8px;
}
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn.primary {
  /* background: linear-gradient(90deg, var(--primary-1), var(--primary-2));
  color: white; */
}
.btn.outline {
  background: transparent;
  border: 1px solid rgba(249, 115, 22, 0.4); /* light orange border */
  color: #b45309; /* darker orange text */
}
.btn:active {
  transform: translateY(1px);
}

/* CTA */
.cta {
  margin-top: 36px;
  padding: 20px;
  text-align: center;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 14px;
}
@media (max-width: 520px) {
  .cta-actions {
    flex-direction: column;
  }
}

/* form message */
.form-message {
  margin-top: 12px;
  font-weight: 600;
  color: green;
}
.form-message.error {
  color: #b91c1c;
}
