/*
Theme Name: air-ticket-booking-child
Template: air-ticket-booking
*/

:root {
  --dark: #111113;
  --charcoal: #1c1c20;
  --graphite: #2a2a30;
  --steel: #3d3d45;
  --silver: #8a8a96;
  --light: #e8e8ec;
  --white: #f5f5f7;
  --accent: #b5ff2b;
  --accent-dim: rgba(181, 255, 43, 0.12);
  --accent-mid: rgba(181, 255, 43, 0.25);
  --red: #ff3b4a;
}

body {
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.72;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.header-navbar {
  background: var(--dark);
  padding: 0;
}

.header-wrapper .header-areas-right {
  justify-content: flex-end;
}

.header-right-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-logo {
  max-width: 80px;
  width: 100% !important;
}

.custom-logo-link {
  margin: 0;
}

.primary-menu {
  list-style: none;
  display: flex;
  gap: 5px;
  padding: 0;
  margin: 0;
}

.site-navigation .primary-menu > li > a {
  color: var(--accent) !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  transition: color 0.2s;
}

.site-navigation .primary-menu > li > a:hover,
.site-navigation .primary-menu .current_page_item > li > a {
  color: var(--accent) !important;
}

.site-navigation .primary-menu ul {
  background: #000 !important;
}

.header-contact {
  display: none;
}

.entry-breadcrumb {
  padding: 15px 0 5px;
}

.breadcrumb-trail a,
.breadcrumb-trail span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--silver);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-trail a:hover {
  color: var(--dark);
}

.entry-header {
  padding: 30px 0 20px;
  position: relative;
}

.entry-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.entry-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  background: var(--accent);
  margin-top: 15px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.entry-content > p {
  margin-bottom: 18px;
  color: var(--charcoal);
}

.entry-content > p:first-child {
  font-size: 19px;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 15px 0 15px 0;
  border-top: 3px solid var(--dark);
  border-bottom: 1px solid var(--light);
}

h2.wp-block-heading {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin: 35px 0 15px;
  padding: 10px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

h2.wp-block-heading::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

h3.wp-block-heading {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--charcoal);
  margin: 25px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.wp-block-columns {
  gap: 25px;
  margin: 25px 0;
}

.wp-block-column {
  flex: 1;
}

.wp-block-image img,
.entry-content img {
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.3s;
}

.wp-block-image img:hover,
.entry-content img:hover {
  filter: grayscale(0%) contrast(1.1);
}

.wp-block-image figure,
.wp-block-image {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.wp-block-image figure::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}

.wp-block-group.factcheck {
  background: var(--dark);
  color: var(--white);
  padding: 18px 20px;
  margin: 25px 0;
  position: relative;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    0 100%
  );
}

.wp-block-group.factcheck > p:first-child {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wp-block-group.factcheck > p:first-child::before {
  content: "✓";
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--dark);
  font-size: 11px;
  font-weight: 900;
}

.wp-block-group.factcheck > p {
  color: rgba(245, 245, 247, 0.85);
  margin-bottom: 6px;
  font-size: 15px;
}

.wp-block-group.factcheck > p:last-child {
  margin-bottom: 0;
}

.wp-block-group.double-check {
  background: repeating-linear-gradient(
    -45deg,
    var(--white),
    var(--white) 12px,
    rgba(181, 255, 43, 0.06) 12px,
    rgba(181, 255, 43, 0.06) 24px
  );
  border: 2px solid var(--dark);
  padding: 18px 20px;
  margin: 25px 0;
}

.wp-block-group.double-check > p:first-child {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wp-block-group.double-check > p:first-child::before {
  content: "⚠";
  font-size: 14px;
}

.wp-block-group.double-check > p {
  margin-bottom: 6px;
  font-size: 15px;
}

.wp-block-group.double-check > p:last-child {
  margin-bottom: 0;
}

.wp-block-group.tip {
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  padding: 18px 20px;
  margin: 25px 0;
  position: relative;
}

.wp-block-group.tip::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: var(--accent);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.wp-block-group.tip > p:first-child {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wp-block-group.tip > p:first-child::before {
  content: "💡";
  font-size: 14px;
}

.wp-block-group.tip > p {
  margin-bottom: 6px;
  font-size: 15px;
}

.wp-block-group.tip > p:last-child {
  margin-bottom: 0;
}

.wp-block-group.key-fact {
  background: var(--charcoal);
  color: var(--white);
  padding: 18px 20px;
  margin: 25px 0;
  position: relative;
  overflow: hidden;
}

.wp-block-group.key-fact::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--accent);
  opacity: 0.15;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.wp-block-group.key-fact > p:first-child {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wp-block-group.key-fact > p:first-child::before {
  content: "🔑";
  font-size: 13px;
}

.wp-block-group.key-fact > p {
  color: rgba(245, 245, 247, 0.85);
  margin-bottom: 6px;
  font-size: 15px;
}

.wp-block-group.key-fact > p:last-child {
  margin-bottom: 0;
}

.wp-block-group.buying-advice {
  background: var(--white);
  border: 2px solid var(--steel);
  padding: 18px 20px;
  margin: 25px 0;
  position: relative;
}

.wp-block-group.buying-advice::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px,
    var(--accent) 20px,
    transparent 20px,
    transparent 28px
  );
}

.wp-block-group.buying-advice > p:first-child {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wp-block-group.buying-advice > p:first-child::before {
  content: "🛒";
  font-size: 14px;
}

.wp-block-group.buying-advice > p {
  margin-bottom: 6px;
  font-size: 15px;
}

.wp-block-group.buying-advice > p:last-child {
  margin-bottom: 0;
}

.wp-block-group.important {
  background: #111113;
  color: #f5f5f7;
  padding: 18px 20px;
  margin: 25px 0;
  position: relative;
  overflow: hidden;
}

.wp-block-group.important::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ff3b4a;
}

.wp-block-group.important::after {
  content: "!";
  position: absolute;
  top: 14px;
  right: 18px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff3b4a;
  color: #111113;
  font-size: 16px;
  font-weight: 900;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.wp-block-group.important > p:first-child {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ff3b4a;
  font-weight: 800;
  margin-bottom: 8px;
}

.wp-block-group.important > p {
  margin-bottom: 6px;
  font-size: 15px;
  color: rgba(245, 245, 247, 0.85);
  line-height: 1.7;
}

.wp-block-group.important > p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: #f5f5f7;
}

@media (max-width: 580px) {
  .wp-block-group.important {
    padding: 15px;
  }

  .wp-block-group.important::after {
    top: 10px;
    right: 12px;
    width: 24px;
    height: 24px;
    font-size: 13px;
  }
}

.number-block {
  background: #111113;
  padding: 20px 15px !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.number-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #b5ff2b;
}

.number-block::after {
  content: "";
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 70px;
  height: 70px;
  background: #b5ff2b;
  opacity: 0.06;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.number-block p {
  margin: 0 !important;
  position: relative;
  z-index: 1;
  color: #dadada;
  font-size: 11px;
}

.number-block p:first-child {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: #b5ff2b;
  letter-spacing: -2px;
  margin-bottom: 4px !important;
}

.number-block h3 {
  color: #b5ff2b;
}

.number-block p:first-child strong {
  font-weight: 900;
}

.number-block p:last-child {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #dadada;
}

@media (max-width: 580px) {
  .number-block {
    padding: 15px 12px !important;
  }

  .number-block p:first-child {
    font-size: 40px;
  }

  .number-block p:last-child {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}

.num-list {
  list-style: none;
  counter-reset: num-counter;
  padding: 0;
  margin: 25px 0;
}

.num-list li {
  counter-increment: num-counter;
  padding: 16px 0;
  border-bottom: 1px solid #e8e8ec;
  font-size: 15px;
  line-height: 1.7;
  color: #1c1c20;
}

.num-list li:last-child {
  border-bottom: none;
}

.num-list li::before {
  content: counter(num-counter, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  min-width: 42px;
  height: 42px;
  background: #111113;
  color: #b5ff2b;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  flex-shrink: 0;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 6px),
    calc(100% - 6px) 100%,
    0 100%
  );
  margin-top: 2px;
}

.num-list li strong {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #111113;
}

@media (max-width: 580px) {
  .num-list li {
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
  }

  .num-list li::before {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

figure.wp-block-table {
  margin: 25px 0;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
}

thead {
  background: var(--dark);
}

thead th {
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  padding: 12px 14px;
  text-align: center;
}

.wp-block-table td,
.wp-block-table th {
  border: 1px solid #dadada;
  vertical-align: middle;
}

thead th:first-child {
  position: relative;
}

thead th:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
}

tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--light);
  vertical-align: top;
}

tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}

tbody tr:hover {
  background: var(--accent-dim);
}

tbody td strong {
  font-weight: 700;
  color: var(--dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.color-tbl table {
  width: 100%;
  border-collapse: collapse;
  background: #1c1c20;
}

.color-tbl td {
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.65;
  border-bottom: 2px solid #111113;
}

.color-tbl tr:last-child td {
  border-bottom: none;
}

.color-tbl td:first-child {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: #111113;
}

.color-tbl td:first-child strong {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.color-tbl tr:nth-child(5n + 1) td:first-child {
  background: #8a9bae;
}

.color-tbl tr:nth-child(5n + 2) td:first-child {
  background: #7a8f6e;
}

.color-tbl tr:nth-child(5n + 3) td:first-child {
  background: #b5ff2b;
  color: #111113;
}

.color-tbl tr:nth-child(5n + 4) td:first-child {
  background: #6b8299;
}

.color-tbl tr:nth-child(5n + 5) td:first-child {
  background: #a0936e;
}

@media (max-width: 580px) {
  .color-tbl td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .color-tbl td:first-child {
    width: 90px;
    min-width: 80px;
    font-size: 11px;
  }

  .color-tbl td:first-child strong {
    font-size: 12px;
    letter-spacing: 1px;
  }
}
.wp-block-quote {
  margin: 25px 0;
  padding: 20px 25px;
  background: var(--graphite);
  color: var(--white);
  position: relative;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}

.wp-block-quote::before {
  content: "❝";
  position: absolute;
  top: 10px;
  left: 18px;
  font-size: 50px;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}

.wp-block-quote p {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  font-size: 16px;
  font-style: italic;
  color: rgba(245, 245, 247, 0.9);
  line-height: 1.6;
}

.wp-block-quote p.has-text-align-right {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0;
}

.wp-block-quote cite {
  font-style: normal;
}

.info-block {
  background: var(--white);
  border: 1px solid var(--light);
  border-top: 3px solid var(--dark);
  padding: 15px 18px 18px;
}

.info-block h3 {
  margin-top: 0;
  display: block;
  border-bottom-color: var(--steel);
}

.text-info-block {
  margin: 30px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  gap: 0 !important;
}

.text-info-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  z-index: 2;
}

.text-info-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: var(--accent);
  opacity: 0.05;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.short-info {
  background: var(--charcoal);
  padding: 25px 20px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.short-info::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 2px;
  background: var(--accent);
}

.short-info p {
  margin: 0 !important;
  line-height: 1.4;
  color: var(--silver);
  font-size: 13px;
}

.short-info p:first-child {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 6px !important;
}

.short-info p:nth-child(2) {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px !important;
}

.short-info p:nth-child(3) {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px !important;
  padding-bottom: 10px;
  position: relative;
}

.short-info p:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--steel);
}

.short-info p:nth-child(4) {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--silver);
}

.short-info p em {
  font-style: normal;
  font-size: 12px;
  color: rgba(245, 245, 247, 0.6);
  display: block;
  line-height: 1.5;
}

.short-info p:nth-child(5) em {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.desc-info {
  padding: 22px 25px !important;
}

.desc-info p {
  color: rgba(245, 245, 247, 0.8);
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.7;
}

.desc-info p:first-child {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  border-top: none;
  border-bottom: none;
  padding: 0;
}

.desc-info p:last-child {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--silver);
  padding-top: 8px;
  border-top: 1px solid var(--steel);
}

.wp-block-cover.theme-cover {
  position: relative;
  margin: 30px 0;
}

.wp-block-cover__background {
  background-color: rgba(17, 17, 19, 0.75) !important;
}

.wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}

.wp-block-cover__inner-container h3,
.wp-block-cover__inner-container h2 {
  color: var(--accent);
  border-bottom-color: var(--accent);
  margin-top: 0;
}

.wp-block-cover__inner-container p {
  color: rgba(245, 245, 247, 0.85);
  font-size: 15px;
}

.schema-faq {
  margin: 25px 0;
}

.schema-faq-section {
  border-bottom: 1px solid var(--light);
  padding: 15px 0;
}

.schema-faq-section:last-child {
  border-bottom: none;
}

.schema-faq-question {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: default;
}

.schema-faq-question::before {
  content: "Q";
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.schema-faq-answer {
  margin-top: 8px;
  padding-left: 32px;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
}

.entry-content > p:last-child {
  font-size: 13px;
  color: var(--silver);
  border-top: 1px solid var(--light);
  padding-top: 15px;
  margin-top: 30px;
}

#site-footer {
  background: var(--dark);
  color: var(--silver);
  margin-top: 40px;
}

.site-info {
  padding: 20px 0;
}

.site-info .wrapper {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.site-info .column-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.5;
}

.footer-copyright a {
  color: var(--accent);
  text-decoration: none;
}

.to-the-top {
  color: var(--silver);
  text-decoration: none;
  font-size: 13px;
}

#offcanvas-menu {
  display: none;
}

.footer-copyright {
  width: 100%;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  .entry-title {
    font-size: 28px;
  }

  h2.wp-block-heading {
    font-size: 22px;
  }

  h3.wp-block-heading {
    font-size: 17px;
  }

  .wp-block-columns {
    flex-direction: column;
  }

  .header-wrapper {
    flex-wrap: wrap;
  }

  .primary-menu a {
    font-size: 11px;
    padding: 4px 8px;
  }

  .wp-block-quote {
    padding: 15px 18px;
    clip-path: none;
  }

  .wp-block-group.factcheck,
  .wp-block-group.double-check,
  .wp-block-group.tip,
  .wp-block-group.key-fact,
  .wp-block-group.buying-advice {
    padding: 15px;
  }

  table {
    font-size: 12px;
  }

  thead th,
  tbody td {
    padding: 8px 10px;
  }

  .info-block {
    padding: 12px 14px 14px;
  }

  .site-info .column-row {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .entry-title {
    font-size: 24px;
  }

  .entry-content > p:first-child {
    font-size: 16px;
  }

  .schema-faq-answer {
    padding-left: 0;
  }
}
