:root {
  --blue: #0d6fd6;
  --blue-dark: #0a56a8;
  --blue-light: #e8f3ff;
  --orange: #f28a1d;
  --orange-dark: #d97516;
  --text: #15324d;
  --muted: #4b647d;
  --line: #d8e6f5;
  --max: 1180px;
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: #f5f8ff; }
body {
  font-family: "Avenir Next", "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ─── HEADER ──────────────────────────────────────────────────── */
.header {
  background: linear-gradient(135deg, #0a4fa0 0%, #0d6fd6 50%, #1a89f0 100%);
  box-shadow: 0 4px 20px rgba(10, 79, 160, .35);
  position: relative;
  overflow: hidden;
}
.header::before {
  content: "✈";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(10deg);
  font-size: 140px;
  opacity: .06;
  color: #fff;
  pointer-events: none;
}
.header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #ffd166, var(--orange));
}

.header-inner {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 32px 0 28px;
  position: relative;
  z-index: 1;
}

.logo {
  width: 260px;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  border-radius: 20px;
  background: none;
  border: none;
  padding: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.22), 0 2px 8px rgba(0,0,0,.12);
}

.brand-tag {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  font-weight: 500;
}
.brand-name { display: none; }
.contact-mini {
  background: rgba(255,255,255,.15);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 999px;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.3);
  letter-spacing: .3px;
}

/* ─── WIDGET SECTION ──────────────────────────────────────────── */
.widget-first {
  padding: 36px 0 24px;
}

.widget-main {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(13,111,214,.14), 0 4px 12px rgba(0,0,0,.06);
  padding: 28px 28px 24px;
  position: relative;
}
.widget-main::before {
  content: "";
  position: absolute;
  top: 0; left: 28px; right: 28px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 0 0 4px 4px;
}

.widget-title {
  text-align: center;
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}
.widget-subtitle {
  text-align: center;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: .97rem;
}

#aviaframe-widget {
  min-height: 460px;
  width: 100%;
}

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero { padding: 4px 0 28px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(13,111,214,.07);
  transition: box-shadow .2s;
}
.hero-card:hover { box-shadow: 0 16px 40px rgba(13,111,214,.12); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, var(--blue), #3d9bf0);
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .2px;
  margin-bottom: 16px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  line-height: 1.15;
  color: var(--text);
}

.lead {
  color: var(--muted);
  font-size: .99rem;
  line-height: 1.7;
}

.side-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.clean-list { list-style: none; }
.clean-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.5;
  font-size: .97rem;
}
.clean-list li::before {
  content: "✓";
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  width: 20px; height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 900;
  margin-top: 1px;
}

/* ─── INFO ──────────────────────────────────────────────────────── */
.main { padding: 0 0 52px; }
.main-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(13,111,214,.07);
}
.info-card h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-card h2::before { content: ""; display: inline-block; width: 4px; height: 20px; background: var(--orange); border-radius: 2px; }

.about {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 20px;
  font-size: .97rem;
}

.phones { display: flex; flex-direction: column; gap: 10px; }
.phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #e8f3ff, #f0f8ff);
  border: 1px solid #b8d9f8;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--blue-dark);
  width: fit-content;
  transition: background .2s;
}
.phone:hover { background: linear-gradient(90deg, #d0e8ff, #e0f0ff); }

/* ─── FOOTER ────────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(135deg, #082d60, #0a4fa0);
  color: rgba(255,255,255,.8);
  padding: 24px 0 32px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}
.footer strong { color: #fff; }
.subdomain-note {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .logo { width: 180px; max-height: 120px; padding: 10px 14px; }
  .brand-name { font-size: 1.45rem; }
  .widget-main { padding: 20px 16px 18px; }
}
