:root {
  --bg: #071014;
  --bg2: #0b171c;
  --panel: #0d1c22;
  --panel2: #10232a;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f3f8f9;
  --muted: #9fb2b8;
  --accent: #7fe0dc;
  --accent2: #b4fff4;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 20px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(
      circle at 78% 8%,
      rgba(82, 206, 201, 0.09),
      transparent 28%
    ),
    radial-gradient(
      circle at 20% 28%,
      rgba(255, 255, 255, 0.035),
      transparent 22%
    ),
    linear-gradient(180deg, var(--bg), #081216 45%, #061014);
  color: var(--text);
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}
.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
header.shell {
  position: sticky;
  top: 0;
  z-index: 40;
  max-width: none;
  width: 100%;
  padding: 0 max(20px, calc((100% - var(--max)) / 2));
  backdrop-filter: blur(18px);
  background: rgba(7, 16, 20, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 18px;
}
.brand:after {
  content: "DRONE + VISUAL MEDIA";
  margin-top: 7px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: var(--muted);
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navlinks a {
  color: #bdcbd0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.navlinks a:hover {
  color: white;
}
.navcta {
  border: 1px solid rgba(127, 224, 220, 0.48);
  background: rgba(127, 224, 220, 0.08);
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--accent2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.hero {
  padding: 100px 0 48px;
  text-align: center;
}
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(44px, 7vw, 80px);
  line-height: 0.98;
  margin: 0 auto;
  letter-spacing: -0.045em;
  max-width: 900px;
}
.hero p {
  max-width: 700px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.form-wrap {
  max-width: 900px;
  margin: 22px auto 88px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.section {
  padding: 10px 0 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.section:last-of-type {
  border-bottom: 0;
  margin-bottom: 8px;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.section h2 {
  font-size: 18px;
  margin: 0;
  letter-spacing: -0.01em;
}
.hint {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field.full {
  grid-column: 1/-1;
}
label {
  font-size: 13px;
  font-weight: 650;
  color: #dce7ea;
}
.req {
  color: var(--accent);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 13px;
  padding: 14px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: 0.18s;
  color-scheme: dark;
}
input::placeholder,
textarea::placeholder {
  color: #71868c;
}
select option {
  background: #0d1c22;
  color: var(--text);
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(127, 224, 220, 0.55);
  box-shadow: 0 0 0 4px rgba(127, 224, 220, 0.08);
  background: rgba(127, 224, 220, 0.035);
}
textarea {
  min-height: 132px;
  resize: vertical;
}
.choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}
.choice input {
  display: none;
}
.choice label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  font-weight: 550;
  color: #cddadd;
  transition: 0.18s;
}
.choice label:hover {
  border-color: rgba(127, 224, 220, 0.3);
  background: rgba(127, 224, 220, 0.035);
}
.dot {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid #526970;
  background: #09151a;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.choice input:checked + label {
  background: linear-gradient(
    180deg,
    rgba(127, 224, 220, 0.12),
    rgba(127, 224, 220, 0.04)
  );
  border-color: rgba(127, 224, 220, 0.45);
  color: white;
}
.choice input:checked + label .dot {
  border-color: var(--accent);
  background: rgba(127, 224, 220, 0.12);
}
.choice input:checked + label .dot:after {
  content: "✓";
  font-size: 12px;
  font-weight: 900;
  color: var(--accent2);
}
.submit {
  width: 100%;
  border: 1px solid rgba(127, 224, 220, 0.48);
  border-radius: 999px;
  padding: 17px 22px;
  background: rgba(127, 224, 220, 0.1);
  color: var(--accent2);
  font-weight: 800;
  letter-spacing: 0.12em;
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s;
}
.submit:hover {
  background: rgba(127, 224, 220, 0.18);
  border-color: rgba(127, 224, 220, 0.7);
}
.submit:disabled {
  opacity: 0.6;
  cursor: wait;
}
.privacy {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin-top: 14px;
}
.form-status {
  text-align: center;
  min-height: 24px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}
.form-status.success {
  color: var(--accent2);
}
.form-status.error {
  color: #ffb4b4;
}
.footer {
  padding: 34px 0 44px;
  text-align: center;
  color: #71868c;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid rgba(127, 224, 220, 0.48);
  border-radius: 999px;
  background: rgba(127, 224, 220, 0.08);
  color: var(--accent2);
  font: 700 12px/1 inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.menu-toggle-icon {
  position: relative;
  width: 18px;
  height: 12px;
  border-top: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
}
.menu-toggle-icon:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  border-top: 1.5px solid currentColor;
}
.mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 10px 18px 18px;
  background: #071014;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}
.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #d9e5e8;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-menu .mobile-cta {
  justify-content: center;
  margin-top: 14px;
  min-height: 46px;
  padding: 8px;
  border: 1px solid rgba(127, 224, 220, 0.48);
  border-radius: 999px;
  background: rgba(127, 224, 220, 0.08);
  color: var(--accent2);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.booking-calendar {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 18px;
}
.calendar-panel,
.time-panel {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.022);
  padding: 18px;
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.calendar-title {
  font-size: 16px;
  font-weight: 750;
}
.month-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}
.month-button:hover {
  border-color: rgba(127, 224, 220, 0.45);
  color: var(--accent2);
}
.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.calendar-weekdays span {
  text-align: center;
  color: #71868c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 0;
}
.calendar-day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: 650 13px/1 inherit;
  cursor: pointer;
}
.calendar-day:hover:not(:disabled) {
  border-color: rgba(127, 224, 220, 0.5);
  background: rgba(127, 224, 220, 0.08);
}
.calendar-day.other {
  opacity: 0.28;
}
.calendar-day:disabled,
.calendar-day.blocked {
  color: #53666c;
  background: rgba(255, 255, 255, 0.018);
  cursor: not-allowed;
  text-decoration: line-through;
}
.calendar-day.selected {
  border-color: var(--accent);
  background: rgba(127, 224, 220, 0.17);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(127, 224, 220, 0.07);
}
.calendar-day.today {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 11px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}
.legend-dot.available {
  border: 1px solid rgba(127, 224, 220, 0.5);
  background: rgba(127, 224, 220, 0.12);
}
.legend-dot.selected {
  background: rgba(127, 224, 220, 0.45);
}
.time-panel {
  display: flex;
  flex-direction: column;
}
.time-title {
  font-size: 16px;
  font-weight: 750;
  margin-bottom: 4px;
}
.time-date {
  color: var(--accent);
  font-size: 12px;
  min-height: 20px;
  margin-bottom: 14px;
}
.time-help {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0 0 15px;
}
.time-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.time-slot {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  color: #dce7ea;
  font-weight: 650;
  cursor: pointer;
}
.time-slot:hover:not(:disabled) {
  border-color: rgba(127, 224, 220, 0.5);
  background: rgba(127, 224, 220, 0.08);
}
.time-slot.selected {
  border-color: var(--accent);
  background: rgba(127, 224, 220, 0.17);
  color: #fff;
}
.time-slot:disabled {
  color: #53666c;
  background: rgba(255, 255, 255, 0.018);
  cursor: not-allowed;
  text-decoration: line-through;
}
.selection-summary {
  display: none;
  margin-top: 16px;
  padding: 13px;
  border-radius: 12px;
  background: rgba(127, 224, 220, 0.08);
  border: 1px solid rgba(127, 224, 220, 0.22);
  color: #dffaf8;
  font-size: 12px;
  line-height: 1.55;
}
.selection-summary.visible {
  display: block;
}
@media (max-width: 720px) {
  header.shell {
    min-height: 64px;
    padding: 0 18px;
  }
  .navlinks,
  .navcta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .mobile-menu.is-open {
    display: grid;
  }
  .shell {
    width: min(100% - 28px, var(--max));
  }
  .hero {
    padding-top: 64px;
  }
  .hero p {
    font-size: 16px;
  }
  .form-wrap {
    margin-top: 10px;
    padding: 22px;
    border-radius: 18px;
  }
  .grid2,
  .choices {
    grid-template-columns: 1fr;
  }
  .section-head {
    display: block;
  }
  .hint {
    margin-top: 5px;
  }
  .brand {
    font-size: 14px;
  }
  .brand:after {
    letter-spacing: 0.27em;
  }
}
@media (max-width: 720px) {
  .booking-calendar {
    grid-template-columns: 1fr;
  }
  .calendar-panel,
  .time-panel {
    padding: 15px;
  }
  .calendar-days,
  .calendar-weekdays {
    gap: 4px;
  }
  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }
}
