/* Aerosoft Advance Page Styles */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 20;
}
.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.header-logo { height: 40px; width: auto; display: block; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #FFFFFF;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.container { position: relative; z-index: 10; width: 100%; max-width: 720px; padding: 20px; margin: 24px auto; }
.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  animation: cardEntrance 0.6s ease-out;
}
@keyframes cardEntrance { from { opacity: 0; transform: translateY(40px) scale(0.95);} to { opacity: 1; transform: translateY(0) scale(1);} }
.logo-section { text-align: center; margin-bottom: 40px; }
.logo-icon {
  width: 96px; height: 96px; margin: 0 auto 20px; border-radius: 24px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #ffffff; border: 1px solid #e5e7eb; box-shadow: 0 6px 16px rgba(0,0,0,0.08); animation: logoFloat 3s ease-in-out infinite;
}
@keyframes logoFloat { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-5px);} }
.logo-icon img { width: 100%; height: 100%; object-fit: contain; padding: 8px; background: transparent; }
h1 { font-size: 32px; font-weight: 700; color: #202020; margin-bottom: 8px; letter-spacing: -0.5px; }
.tagline { color: #202020; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.live-indicator { display: inline-flex; align-items: center; gap: 8px; margin: 24px 0; padding: 8px 16px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: 100px; color: #22c55e; font-size: 13px; font-weight: 600; }
.live-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: livePulse 2s ease-in-out infinite; }
@keyframes livePulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .5; transform: scale(1.5);} }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full-width { grid-column: 1 / -1; }
.input-section { margin: 0; }
label { display: block; color: #202020; font-weight: 600; margin-bottom: 10px; font-size: 14px; }
.input-wrapper { position: relative; }
input { width: 100%; padding: 16px 16px 16px 48px; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; color: #202020; font-size: 16px; transition: all .3s ease; }
input::placeholder { color: #9ca3af; }
input:focus { outline: none; background: #ffffff; border-color: #FF0000; box-shadow: 0 0 0 4px rgba(255,0,0,0.15); }
.input-error { border-color: #ef4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,0.15) !important; }
.input-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #9ca3af; }
/* Select styling to match inputs */
.input-wrapper select { width: 100%; padding: 16px 40px 16px 48px; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; color: #202020; font-size: 16px; transition: all .3s ease; appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%239ca3af' d='M5.5 7.5l4.5 4.5l4.5-4.5l1 1l-5.5 5.5L4.5 8.5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; }
.input-wrapper select:focus { outline: none; background: #ffffff; border-color: #FF0000; box-shadow: 0 0 0 4px rgba(255,0,0,0.15); }
/* Textarea styling to match inputs */
.input-wrapper textarea { width: 100%; min-height: 120px; padding: 16px 16px 16px 48px; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; color: #202020; font-size: 16px; transition: all .3s ease; resize: vertical; }
.input-wrapper textarea::placeholder { color: #9ca3af; }
.input-wrapper textarea:focus { outline: none; background: #ffffff; border-color: #FF0000; box-shadow: 0 0 0 4px rgba(255,0,0,0.15); }
.input-wrapper.textarea .input-icon { top: 18px; transform: none; }
/* Choice groups (checkboxes and radios) */
.choice-container { padding-left: 48px; border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; display: flex; align-items: center; min-height: 56px; }
.choice-group { display: flex; flex-wrap: wrap; gap: 12px; padding: 8px 12px; }
.choice-group.inline { flex-wrap: nowrap; white-space: nowrap; }
.choice-group.inline .choice { white-space: nowrap; }
.choice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* padding: 8px 12px; */
  /* border: 1px solid #e5e7eb; */
  /* border-radius: 12px; */
  cursor: pointer;
  user-select: none;
  /* transition: all .2s 
ease; */
  /* background: #fff; */
  /* font-size: 14px; */
  /* color: #202020; */
  margin-bottom: 0px;
}
.choice:hover { border-color: #d1d5db; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice .control { width: 18px; height: 18px; border: 2px solid #9ca3af; border-radius: 4px; display: inline-block; position: relative; background: #fff; transition: all .2s ease; }
.choice input[type="radio"] + .control { border-radius: 50%; }
.choice input:focus + .control { box-shadow: 0 0 0 3px rgba(255,0,0,0.15); border-color: #FF0000; }
.choice input:checked + .control { background: #FF0000; border-color: #FF0000; }
.choice input[type="checkbox"]:checked + .control::after { content: ''; position: absolute; left: 5px; top: 0px; width: 4px; height: 10px; border: 2px solid #fff; border-top: 0; border-left: 0; transform: rotate(45deg); }
.choice input[type="radio"]:checked + .control::after { content: ''; position: absolute; left: 4px; top: 4px; width: 8px; height: 8px; background: #fff; border-radius: 50%; }
.action-button { width: 100%; padding: 18px; background: #FF0000; color: #fff; border: none; border-radius: 16px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all .3s ease; position: relative; overflow: hidden; margin-top: 20px; }
.action-button::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: transparent; opacity: 0; transition: opacity .3s ease; }
.action-button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,0,0,0.25); }
.action-button:active { transform: translateY(0); }
.action-button.calling { background: #FF0000; animation: callPulse 1.5s ease-in-out infinite; }
.action-button:disabled { background: linear-gradient(135deg,#6b7280,#4b5563); cursor: not-allowed; transform: none; }
.action-button:disabled:hover { transform: none; box-shadow: none; }
@keyframes callPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4);} 50% { box-shadow: 0 0 0 20px rgba(34,197,94,0);} }
.button-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 10px; }
.status-message { margin-top: 20px; padding: 16px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: 12px; color: #22c55e; text-align: center; font-size: 14px; display: none; }
.status-message.show { display: block; animation: slideUp .3s ease-out; }
.status-message.error { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.3); color: #ef4444; }
@keyframes slideUp { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 20px 0; }
.feature { text-align: center; padding: 12px; background: #f3f4f6; border-radius: 12px; border: 1px solid #e5e7eb; }
.feature-icon { font-size: 24px; margin-bottom: 4px; }
.feature-text { font-size: 11px; color: #4b5563; }
.footer { text-align: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid #e5e7eb; }
.footer p { color: #9ca3af; font-size: 12px; line-height: 1.6; }
.footer a { color: #FF0000; text-decoration: none; }
.footer a:hover { color: #202020; }
.consent-text { margin-top: 8px; font-size: 11px; }
@media (max-width: 640px) {
  .card { padding: 32px 24px; }
  h1 { font-size: 28px; }
  .form-grid { grid-template-columns: 1fr; }
}
