::selection {
  background: var(--main-color);
  color: #fff;
}

::-moz-selection {
  background: var(--main-color);
  color: #fff;
}

.breadcrumbs {
  color: #fff;
  text-align: center;
}

.breadcrumbs a {
  color: var(--third-color);
}

/* Animations - Minimal */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Header Section */
.landing-header-sec {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.landing-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1d6a9a9c;
  z-index: 1;
}

.landing-header-sec .container {
  position: relative;
  z-index: 2;
}

.landing-header-sec h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 0;
  animation: fadeInUp 0.8s ease;
}

/* Breadcrumbs */
.custom-breadcrumbs {
  text-align: center;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.custom-breadcrumbs a,
.custom-breadcrumbs span {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.custom-breadcrumbs a:hover {
  color: var(--third-color);
}

.custom-breadcrumbs span {
  margin: 0 0.5rem;
}

/* Main Content Wrapper */
.page-wrap {
  padding: 4rem 0;
  animation: fadeIn 0.6s ease;
}

/* Page Section */
.page-sec {
  background: #fff;
  padding: 0;
  margin-bottom: 3rem;
}

/* Content Layout - Mobile First */
.page-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Thumbnail Section */
.page-thumbnail-sec {
  width: 100%;
  animation: fadeInUp 0.8s ease;
}

.page-thumbnail-sec img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* Content Section */
.page-content-sec {
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Images in Content */
.page-content-sec img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
  margin: 2rem 0;
  display: block;
}

@media only screen and (max-width: 570px) {
  .landing-header-sec {
    min-height: 220px;
  }

  .landing-header-sec h1 {
    font-size: 23px;
    line-height: 1.5;
    margin-bottom: 7px;
  }

  .breadcrumbs {
    font-size: 12px;
    line-height: 1.5;
  }
}

:root {
  /* Derived / supporting palette - kept minimal & on-brand */
  --bg-white: #ffffff;
  --bg-soft: #f5f9fc;
  --bg-soft-2: #eef5fa;
  --border-soft: #e1ecf3;
  --accent-amber: #e3a23c; /* used sparingly: cargo / express touch */
  --text-muted: #6b7c89;
  --shadow-sm: 0 2px 10px rgba(29, 106, 154, 0.06);
  --shadow-md: 0 10px 30px rgba(29, 106, 154, 0.1);
  --shadow-lg: 0 20px 50px rgba(29, 106, 154, 0.14);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

/* signature flight-route motif, faint & decorative */
.route-motif {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.contact-wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

/* ============ Header ============ */
.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft-2);
  color: var(--second-color);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  margin-bottom: 14px;
}
.contact-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-amber);
  box-shadow: 0 0 0 4px rgba(227, 162, 60, 0.18);
}

.contact-title {
  font-size: clamp(26px, 5.5vw, 42px);
  font-weight: 800;
  color: #14222b;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.contact-title span {
  color: var(--main-color);
}

.contact-sub {
  color: var(--text-muted);
  font-size: 15.5px;
  margin: 0 0 36px;
}

/* ============ Layout grid: mobile-first (stacked) ============ */
.contact-grid {
  display: grid;
  gap: 22px;
  align-items: start;
}

/* ============ Info cards ============ */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.info-card {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 106, 154, 0.22);
}

.info-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--main-color), var(--second-color));
  box-shadow: 0 8px 18px rgba(29, 106, 154, 0.28);
}
.info-icon svg {
  width: 21px;
  height: 21px;
  stroke: #fff;
}

.info-body h3 {
  margin: 2px 0 4px;
  font-size: 15.5px;
  font-weight: 700;
  color: #16242e;
}
.info-body p,
.info-body a {
  margin: 0;
  color: var(--text-muted);
  font-size: 13.8px;
  line-height: 1.85;
}
.info-body a {
  display: inline-block;
  color: var(--main-color);
  font-weight: 600;
  transition: color 0.2s ease;
}
.info-body a:hover {
  color: var(--accent-amber);
}
.info-body .ltr {
  direction: ltr;
  unicode-bidi: isolate;
}

/* social row */
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--bg-soft-2);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.social-row a svg {
  width: 17px;
  height: 17px;
  stroke: var(--second-color);
  transition: stroke 0.25s ease;
}
.social-row a:hover {
  transform: translateY(-2px);
}

/* ============ Form panel ============ */
.form-panel {
  position: relative;
  background: linear-gradient(180deg, #ffffff, var(--bg-soft) 120%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px 20px 22px;
  box-shadow: var(--shadow-lg);
}
.form-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--main-color), var(--accent-amber));
}

.form-panel-head {
  margin-bottom: 18px;
}
.form-panel-head h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 800;
  color: #14222b;
}
.form-panel-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13.5px;
}

/* ============ Gravity Forms styling (HTML untouched) ============ */
/* Shortcode used as-is: [gravityform id="1" title="true"] */
.form-panel .gform_wrapper {
  font-family: var(--main-font-family) !important;
}
.form-panel .gform_wrapper .gform_heading {
  display: none; /* using our own custom header above; remove this rule to show default GF title */
}
.form-panel .gform_wrapper form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-panel .gform_wrapper .gform_fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.form-panel .gform_wrapper .gfield {
  list-style: none;
}
.form-panel .gform_wrapper .gfield_label,
.form-panel .gform_wrapper label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #27414f;
  margin-bottom: 7px;
}
.form-panel .gform_wrapper .gfield_required {
  color: var(--accent-amber);
  margin-right: 4px;
}
.form-panel .gform_wrapper input[type="text"],
.form-panel .gform_wrapper input[type="email"],
.form-panel .gform_wrapper input[type="tel"],
.form-panel .gform_wrapper input[type="number"],
.form-panel .gform_wrapper input[type="url"],
.form-panel .gform_wrapper select,
.form-panel .gform_wrapper textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--main-font-family);
  font-size: 14px;
  color: var(--main-text-color);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.form-panel .gform_wrapper textarea {
  min-height: 110px;
  resize: vertical;
}
.form-panel .gform_wrapper input:focus,
.form-panel .gform_wrapper select:focus,
.form-panel .gform_wrapper textarea:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 4px rgba(29, 106, 154, 0.12);
  background: #fcfdff;
}
.form-panel .gform_wrapper input::placeholder,
.form-panel .gform_wrapper textarea::placeholder {
  color: #aab8c2;
}

.form-panel .gform_wrapper .gform_footer {
  margin-top: 6px;
  padding: 0;
}
.form-panel .gform_wrapper .gform_button,
.form-panel .gform_wrapper input[type="submit"] {
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--main-color), var(--second-color));
  color: #fff;
  font-family: var(--main-font-family);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 22px rgba(29, 106, 154, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
.form-panel .gform_wrapper .gform_button:hover,
.form-panel .gform_wrapper input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(29, 106, 154, 0.38);
  filter: brightness(1.04);
}
.form-panel .gform_wrapper .gform_button:active,
.form-panel .gform_wrapper input[type="submit"]:active {
  transform: translateY(0);
}

.form-panel .gform_wrapper .validation_error {
  background: #fdf1ea;
  border: 1px solid #f3cda3;
  color: #9a5a14;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 14px;
}
.form-panel .gform_wrapper .gfield_description.validation_message {
  color: #c0392b;
  font-size: 12.5px;
  margin-top: 5px;
}
.form-panel .gform_wrapper .gform_confirmation_message {
  background: #eaf6ee;
  border: 1px solid #bfe3cb;
  color: #1f7a43;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-weight: 600;
  text-align: center;
}

/* ============ Tablet & up ============ */
@media (min-width: 700px) {
  .info-cards {
    grid-template-columns: 1fr 1fr;
  }
  .contact-sub {
    font-size: 16.5px;
  }
}

/* ============ Desktop ============ */
@media (min-width: 1000px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .info-cards {
    grid-template-columns: 1fr 1fr;
  }
  .form-panel {
    padding: 34px 32px 30px;
    position: sticky;
    top: 24px;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .info-card,
  .social-row a,
  .form-panel .gform_wrapper .gform_button {
    transition: none !important;
  }
}

/* focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--main-color);
  outline-offset: 2px;
}
@media only screen and (max-width: 550px) {
  .page-wrap {
    padding: 0;
  }
  iframe {
    height: 250px;
  }
}
