/* ---------------------------------------------------------
   ROOT VARIABLES
---------------------------------------------------------- */
:root {
  --mia-navy:   #003876;
  --mia-orange: #E8941A;
  --mia-blue:   #0077C8;
  --mia-green:  #10B981;
  --mia-purple: #8B5CF6;
  --mia-dark:   #1C2340;
  --mia-light:  #F5F7FA;
  --mia-border: #DDE2EC;
  --mia-white:  #FFFFFF;
  --mia-text:   #2D3748;
  --mia-muted:  #6B7280;
}

/* ----------------------------------------------------------
   PAGE WRAPPER
---------------------------------------------------------- */
.mia-page-wrap {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--mia-text);
  background: var(--mia-white);
}

/* ----------------------------------------------------------
   1. HERO SECTION
---------------------------------------------------------- */
.mia-hero {
  background:
    linear-gradient(135deg, rgba(0,30,70,0.88) 0%, rgba(0,56,118,0.82) 100%),
    url('https://miamiairport-mia.com/Pic/uploaded/miami-airportss.jpg') center/cover no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 60px 0 40px;
  position: relative;
}
.mia-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--mia-orange);
}
.mia-hero-title {
  font-family: 'Oswald', sans-serif;
  color: var(--mia-white);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.mia-hero-title span {
  color: var(--mia-orange);
}
.mia-hero-subtitle {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  margin: 0 0 28px;
  max-width: 520px;
}

/* Weather badge */
.mia-weather-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--mia-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.mia-weather-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--mia-orange);
  margin-right: 7px;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   2. FLIGHT SEARCH WIDGET
---------------------------------------------------------- */
.mia-search-widget {
  background: var(--mia-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  max-width: 600px;
}
.mia-search-tabs {
  display: flex;
  border-bottom: 1px solid var(--mia-border);
}
.mia-search-tab-btn {
  flex: 1;
  padding: 14px 20px;
  background: var(--mia-light);
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--mia-muted);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
/* Tab button SVG — default (inactive) state */
.mia-search-tab-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--mia-muted);
  transition: fill 0.2s;
  flex-shrink: 0;
}
/* Tab button SVG — active state */
.mia-search-tab-btn.mia-active svg,
.mia-search-tab-btn:hover svg {
  fill: var(--mia-navy);
}
.mia-search-tab-btn.mia-active,
.mia-search-tab-btn:hover {
  background: var(--mia-white);
  border-bottom-color: var(--mia-navy);
  color: var(--mia-navy);
}

.mia-search-body {
  padding: 22px;
}
.mia-search-body .mia-input-group {
  display: flex;
  gap: 10px;
}

/* Form layout */
.mia-search-body .zak-search-form {
    display: flex;
    gap: 10px;
    width: 100%;
}

/* Label flex stretch */
.mia-search-body .zak-search-field-label {
    flex: 1;
    margin: 0;
}

/* Search icon hide karo */
.mia-search-body .zak-icon--search {
    display: none;
}

/* Input field — dark background override */
.mia-search-body .zak-search-field {
    width: 100% !important;
    background: #ffffff !important;
    border: 1.5px solid var(--mia-border) !important;
    border-radius: 4px !important;
    padding: 11px 16px !important;
    font-size: 14px !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    color: var(--mia-text) !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color 0.2s !important;
}
.mia-search-body .zak-search-field:focus {
    border-color: var(--mia-navy) !important;
    background: #ffffff !important;
}
.mia-search-body .zak-search-field::placeholder {
    color: #AAB0BE !important;
}

/* Label */
.mia-search-body .zak-search-field-label {
    flex: 1 !important;
    margin: 0 !important;
    background: transparent !important;
}

/* Search icon hide */
.mia-search-body .zak-icon--search {
    display: none !important;
}

/* Submit button */
.mia-search-body .zak-search-submit {
    background: var(--mia-navy) !important;
    color: var(--mia-white) !important;
    border: none !important;
    padding: 11px 24px !important;
    border-radius: 4px !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    width: auto !important;
    height: auto !important;
    transition: background 0.2s !important;
	display:block!important;
}
.mia-search-body .zak-search-submit:hover {
    background: #00285a !important;
}

/* Form layout */
.mia-search-body .zak-search-form {
    display: flex !important;
    gap: 10px !important;
    width: 100% !important;
    background: transparent !important;
}

/* Zakra close button hide karo — sidebar mein nahi chahiye */
.mia-search-body .zak-icon--close {
    display: none !important;
}

/* Zakra search container reset */
.mia-search-body .zak-search-container {
    background: transparent !important;
    padding: 0 !important;
    position: static !important;
	width:100%;
}

/* Search footer / View-all link */
.mia-search-footer {
  padding: 10px 22px 14px;
  border-top: 1px solid var(--mia-light);
}
.mia-view-all-link {
  font-size: 14px;
  color: var(--mia-blue);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mia-view-all-link svg {
  width: 18px;
  height: 18px;
  fill: var(--mia-blue);
  flex-shrink: 0;
  transition: fill 0.2s;
}
.mia-view-all-link:hover {
  text-decoration: underline;
}
.mia-view-all-link:hover svg {
  fill: var(--mia-dark);
}

/* ---------- Section Wrapper ---------- */
.mia-quick-links {
  background-color: #eef3f8;
  padding: 60px 0;
}
 
/* ---------- Row: keep Bootstrap 3 flex behaviour ---------- */
.mia-quick-links .row {
  display: flex;
  flex-wrap: wrap;
}
 
/* ---------- Column: reduce Bootstrap gutter to 10px each side ---------- */
.mia-quick-links .col-md-2 {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 0;
  display: flex; /* so inner card stretches full height */
}
 
/* ---------- Card ---------- */
.mia-quick-links__cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 16px 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
 
.mia-quick-links__cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
 
/* ---------- Icon Circle (default) ---------- */
.mia-quick-links__cards > div:first-child {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1fb8d3 0%, #0a7ec2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
 
.mia-quick-links__cards > div:first-child svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

.mia-quick-links .col-md-2:nth-child(1) .mia-quick-links__cards > div:first-child {
  background: linear-gradient(135deg, #25c2de 0%, #1260a8 100%);
}
.mia-quick-links .col-md-2:nth-child(2) .mia-quick-links__cards > div:first-child {
  background: linear-gradient(135deg, #22b8e8 0%, #1463b5 100%);
}
.mia-quick-links .col-md-2:nth-child(3) .mia-quick-links__cards > div:first-child {
  background: linear-gradient(135deg, #25c2de 0%, #1163a8 100%);
}
.mia-quick-links .col-md-2:nth-child(4) .mia-quick-links__cards > div:first-child {
  background: linear-gradient(135deg, #1abdd8 0%, #0f71b5 100%);
}
.mia-quick-links .col-md-2:nth-child(5) .mia-quick-links__cards > div:first-child {
  background: linear-gradient(135deg, #1ec5d5 0%, #0e6cb0 100%);
}
.mia-quick-links .col-md-2:nth-child(6) .mia-quick-links__cards > div:first-child {
  background: linear-gradient(135deg, #25c2de 0%, #1260a8 100%);
}
 
/* ---------- Heading ---------- */
.mia-quick-links__cards h5 {
  font-size: 15px;
  font-weight: 700;
font-family: 'Oswald', sans-serif;
  color: #1a2a40;
  line-height: 1.45;
  margin: 0 0 14px;

}
 
/* ---------- Learn More Link ---------- */
.mia-quick-links__cards a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mia-navy);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: auto;
}
 
.mia-quick-links__cards a::after {
  content: '\2192';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: var(--mia-navy);
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
}
 
.mia-quick-links__cards a:hover {
  color: #00285a;
  gap: 10px;
  text-decoration: none;
}
 
.mia-quick-links__cards a:hover::after {
  background-color: #00285a;
}
 
/* ---------- Responsive ---------- */
 
@media (max-width: 991px) {
  .mia-quick-links .col-md-2 {
    flex: 0 0 33.333%;
    width: 33.333%;
    max-width: 33.333%;
    margin-bottom: 20px;
  }
}
 
@media (max-width: 640px) {
  .mia-quick-links {
    padding: 40px 0;
  }
  .mia-quick-links .col-md-2 {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    margin-bottom: 20px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .mia-quick-links__cards {
    padding: 24px 12px 20px;
  }
}
 
@media (max-width: 400px) {
  .mia-quick-links .col-md-2 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}

/* ----------------------------------------------------------
   3. QUICK SERVICES BAR
---------------------------------------------------------- */
.mia-quick-services {
  background: var(--mia-dark);
  padding: 0;
}
/* Removes default Bootstrap container-fluid padding */
.mia-qs-container {
  padding-left: 0;
  padding-right: 0;
}
.mia-qs-grid {
  display: flex;
  flex-wrap: wrap;
}
.mia-qs-item {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s;
  text-align: center;
}
.mia-qs-item:last-child {
  border-right: none;
}
.mia-qs-item:hover {
  background: var(--mia-navy);
  color: var(--mia-orange);
  text-decoration: none;
}
/* Quick services SVG icon */
.mia-qs-icon {
  width: 44px;
  height: 44px;
  fill: var(--mia-orange);
  margin-bottom: 10px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.mia-qs-item:hover .mia-qs-icon {
  transform: translateY(-3px);
}
.mia-qs-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* ----------------------------------------------------------
   4. SECTION COMMON STYLES
---------------------------------------------------------- */
.mia-section {
  padding: 64px 0;
}
.mia-section-light {
  background: var(--mia-light);
}
.mia-section-dark {
  background: var(--mia-dark);
}
.mia-section-navy {
  background: var(--mia-navy);
}
.mia-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--mia-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
  line-height: 1.2;
}
.mia-section-subtitle {
  font-size: 16px;
  color: var(--mia-muted);
  margin: 0 0 32px;
  line-height: 1.6;
}
/* Modifier: extra bottom margin (used in Wait Time section) */
.mia-section-subtitle--lg-mb {
  margin-bottom: 36px;
}

.mia-divider {
  width: 50px;
  height: 3px;
  background: var(--mia-orange);
  margin: 10px 0 20px;
}
.mia-divider-center {
  margin: 10px auto 20px;
}

/* ----------------------------------------------------------
   BUTTONS
---------------------------------------------------------- */
.mia-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

/* Primary (navy) */
.mia-btn-primary {
  background: var(--mia-navy);
  color: var(--mia-white);
}
.mia-btn-primary:hover {
  background: #00285a;
  color: var(--mia-white);
  text-decoration: none;
}
.mia-btn-primary svg {
  width: 18px;
  height: 18px;
  fill: var(--mia-white);
  flex-shrink: 0;
}

/* Orange */
.mia-btn-orange {
  background: var(--mia-orange);
  color: var(--mia-white);
}
.mia-btn-orange:hover {
  background: #c97c10;
  color: var(--mia-white);
  text-decoration: none;
}
.mia-btn-orange svg {
  width: 18px;
  height: 18px;
  fill: var(--mia-white);
  flex-shrink: 0;
}

/* Outline navy */
.mia-btn-outline-navy {
  border: 2px solid var(--mia-navy);
  color: var(--mia-navy);
  background: transparent;
}
.mia-btn-outline-navy:hover {
  background: var(--mia-navy);
  color: var(--mia-white);
  text-decoration: none;
}

/* Button size modifier — Large */
.mia-btn--lg {
  font-size: 16px;
  padding: 14px 32px;
}

/* Button modifier — no-wrap (used in waiting lot CTA) */
.mia-btn--nowrap {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   5. ABOUT SECTION
---------------------------------------------------------- */
/* Row with vertical centering (replaces style="align-items:center;") */
.mia-about-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.mia-about-img-wrap {
  position: relative;
}
.mia-about-img-wrap img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  height: 380px;
}
.mia-about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--mia-orange);
  color: var(--mia-white);
  text-align: center;
  padding: 16px 20px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  box-shadow: 0 4px 16px rgba(232,148,26,0.4);
}
.mia-about-img-badge .mia-badge-num {
  font-size: 32px;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.mia-about-img-badge .mia-badge-text {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.9;
}
.mia-about-text {
  padding-left: 30px;
}
/* About section body paragraphs */
.mia-about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
  margin-bottom: 16px;
}
.mia-about-stats {
  display: flex;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.mia-stat-card {
  background: var(--mia-white);
  border: 1.5px solid var(--mia-border);
  border-left: 4px solid var(--mia-navy);
  padding: 14px 20px;
  border-radius: 4px;
  flex: 1;
  min-width: 120px;
}
.mia-stat-card .mia-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--mia-navy);
  display: block;
  line-height: 1;
}
.mia-stat-card .mia-stat-label {
  font-size: 11px;
  color: var(--mia-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ----------------------------------------------------------
   6. WAIT TIME SECTION
---------------------------------------------------------- */
.mia-wait-card {
  background: var(--mia-white);
  border-radius: 6px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-top: 4px solid var(--mia-orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
/* Wait card colour modifiers (replaces inline border-top-color) */
.mia-wait-card--blue   { border-top-color: var(--mia-blue); }
.mia-wait-card--green  { border-top-color: var(--mia-green); }
.mia-wait-card--purple { border-top-color: var(--mia-purple); }

/* Wait icon wrapper */
.mia-wait-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Wait icon SVG — default orange */
.mia-wait-icon svg {
  width: 100%;
  height: 100%;
}

/* SVG fill colour classes applied directly to the SVG element */
.mia-wait-icon-orange { fill: var(--mia-orange); }
.mia-wait-icon-blue   { fill: var(--mia-blue); }
.mia-wait-icon-green  { fill: var(--mia-green); }
.mia-wait-icon-purple { fill: var(--mia-purple); }

.mia-wait-card .mia-wait-num {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--mia-navy);
  line-height: 1;
  margin-bottom: 4px;
}
.mia-wait-card .mia-wait-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mia-muted);
}

/* Checkpoint table wrapper (replaces inline border-radius + overflow) */
.mia-table-wrap {
  border-radius: 6px;
  
}
.mia-checkpoint-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--mia-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.mia-checkpoint-table thead tr {
  background: var(--mia-navy);
  color: var(--mia-white);
}
.mia-checkpoint-table thead th {
  padding: 13px 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.mia-checkpoint-table tbody tr:nth-child(even) {
  background: var(--mia-light);
}
.mia-checkpoint-table tbody td {
  padding: 11px 18px;
  color: var(--mia-text);
  border-bottom: 1px solid var(--mia-border);
}

/* Status badges */
.mia-status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mia-status-open        { background: #D1FAE5; color: #065F46; }
.mia-status-closed      { background: #FEE2E2; color: #991B1B; }
.mia-status-reservation { background: #FEF3C7; color: #92400E; }

/* Subsection heading — TSA Checkpoint title */
.mia-subsection-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: var(--mia-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mia-subsection-title svg {
  width: 26px;
  height: 26px;
  fill: var(--mia-navy);
  flex-shrink: 0;
}

/* Table note / info line below checkpoint table */
.mia-wait-description {
  font-size: 12px;
  color: var(--mia-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.mia-wait-description svg {
  width: 15px;
  height: 15px;
  fill: var(--mia-muted);
  flex-shrink: 0;
}
/* Link inside wait description */
.mia-link-blue {
  color: var(--mia-blue);
  font-weight: 600;
  text-decoration: none;
}
.mia-link-blue:hover {
  text-decoration: underline;
  color: var(--mia-navy);
}

/* ----------------------------------------------------------
   7. PASSENGER SERVICES (Tabbed Cards)
---------------------------------------------------------- */
.mia-services-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--mia-border);
}
.mia-services-tab {
  padding: 12px 28px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--mia-muted);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: -2px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Services tab SVG — default (inactive) */
.mia-services-tab svg {
  width: 18px;
  height: 18px;
  fill: var(--mia-muted);
  transition: fill 0.2s;
  flex-shrink: 0;
}
/* Services tab SVG — active */
.mia-services-tab.mia-active svg,
.mia-services-tab:hover svg {
  fill: var(--mia-navy);
}
.mia-services-tab.mia-active,
.mia-services-tab:hover {
  color: var(--mia-navy);
  border-bottom-color: var(--mia-navy);
}
.mia-services-panel {
  display: none;
}
.mia-services-panel.mia-active {
  display: block;
}

/* Service cards */
.mia-service-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  text-decoration: none;
  margin-bottom: 24px;
}
.mia-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
  text-decoration: none;
}
.mia-service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
/* SVG used as card thumbnail (Parking panel) */
.mia-service-card svg {
  width: 100%;
  height: 160px;
  fill: var(--mia-orange);
  display: block;
}
.mia-service-card-body {
  background: var(--mia-white);
  padding: 14px 16px;
  border-top: 3px solid var(--mia-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mia-service-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--mia-navy);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
/* Arrow icon in service card */
.mia-service-card-arrow {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.mia-service-card-arrow svg {
  width: 20px;
  height: 20px;
  fill: var(--mia-navy);
  transition: fill 0.2s, transform 0.2s;
}
.mia-service-card:hover .mia-service-card-arrow svg {
  fill: var(--mia-orange);
  transform: translateX(3px);
}

/* ----------------------------------------------------------
   8. PARKING SECTION
---------------------------------------------------------- */
.mia-parking-card {
  background: var(--mia-white);
  border-radius: 6px;
  padding: 22px 20px;
  border: 1.5px solid var(--mia-border);
  margin-bottom: 20px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.mia-parking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--mia-navy);
}
.mia-parking-card:hover {
  border-color: var(--mia-navy);
  box-shadow: 0 4px 18px rgba(0,56,118,0.12);
}
/* Premium parking card — orange left border */
.mia-parking-card--premium::before {
  background: var(--mia-orange);
}
.mia-parking-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mia-parking-name {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--mia-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
/* Parking name inline icon SVG */
.mia-parking-name svg {
  width: 25px;
  height: 25px;
  fill: var(--mia-orange);
  flex-shrink: 0;
}

.mia-parking-shuttle {
  font-size: 14px;
  color: var(--mia-muted);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
/* Shuttle type icon SVG */
.mia-parking-shuttle svg {
  width: 14px;
  height: 14px;
  fill: var(--mia-blue);
  flex-shrink: 0;
}

/* Parking card description paragraph */
.mia-parking-desc {
  font-size: 14px;
  color: var(--mia-muted);
  margin: 0 0 12px;
}

/* Parking "Learn More" link */
.mia-parking-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--mia-blue);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mia-parking-link:hover {
  color: var(--mia-navy);
}
/* Arrow SVG inside parking link */
.mia-parking-link svg {
  width: 14px;
  height: 14px;
  fill: var(--mia-blue);
  flex-shrink: 0;
  transition: fill 0.2s, transform 0.2s;
}
.mia-parking-link:hover svg {
  fill: var(--mia-navy);
  transform: translateX(3px);
}
/* Reserve link colour variant */
.mia-parking-link--reserve {
  color: var(--mia-orange);
}
.mia-parking-link--reserve svg {
  fill: var(--mia-orange);
}
.mia-parking-link--reserve:hover {
  color: #c97c10;
}
.mia-parking-link--reserve:hover svg {
  fill: #c97c10;
}

/* Cell phone waiting lot */
.mia-waiting-lot {
  background: var(--mia-navy);
  color: var(--mia-white);
  border-radius: 6px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
/* Mobile icon SVG inside waiting lot */
.mia-waiting-lot svg {
  width: 42px;
  height: 42px;
  fill: var(--mia-white);
  flex-shrink: 0;
}
.mia-waiting-lot-text h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--mia-white);
  margin: 0 0 6px;
  text-transform: uppercase;
}
.mia-waiting-lot-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ----------------------------------------------------------
   9. FAQ SECTION
---------------------------------------------------------- */
/* FAQ list wrapper (replaces inline margin-top:8px) */
.mia-faq-list {
  margin-top: 8px;
}
.mia-faq-item {
  border: 1.5px solid var(--mia-border);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.mia-faq-item.mia-open {
  border-color: var(--mia-navy);
}
.mia-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--mia-text);
  transition: background 0.2s;
}
.mia-faq-question:hover,
.mia-open .mia-faq-question {
  background: var(--mia-light);
  color: var(--mia-navy);
}
/* FAQ icon circle container */
.mia-faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--mia-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
/* FAQ icon — plus SVG */
.mia-faq-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--mia-white);
  transition: fill 0.2s;
}
/* FAQ icon — active state (orange + rotated) */
.mia-open .mia-faq-icon {
  background: var(--mia-orange);
  transform: rotate(45deg);
}
.mia-faq-answer {
  display: none;
  padding: 18px 22px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: #4A5568;
  border-top: 1px solid var(--mia-border);
}
.mia-open .mia-faq-answer {
  display: block;
}

/* ----------------------------------------------------------
   10. MAP CTA BANNER
---------------------------------------------------------- */
.mia-map-cta {
  background: linear-gradient(100deg, var(--mia-navy) 55%, var(--mia-blue) 100%);
  padding: 48px 0;
}
.mia-map-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
/* Left group: icon + text (replaces inline style="display:flex...") */
.mia-map-cta-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
/* Map SVG icon */
.mia-map-cta-icon svg {
  width: 60px;
  height: 60px;
  fill: var(--mia-orange);
  opacity: 0.9;
  flex-shrink: 0;
}
.mia-map-cta-text h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--mia-white);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.mia-map-cta-text p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  margin: 0;
}

/* ----------------------------------------------------------
   11. BLOG SECTION
---------------------------------------------------------- */
.mia-blog-card {
  background: var(--mia-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.mia-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.13);
}
.mia-blog-card-img {
  position: relative;
  overflow: hidden;
  height: 190px;
}
.mia-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.mia-blog-card:hover .mia-blog-card-img img {
  transform: scale(1.05);
}
.mia-blog-card-date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--mia-orange);
  color: var(--mia-white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mia-blog-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mia-blog-card-body h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--mia-navy);
  margin: 0 0 10px;
  line-height: 1.3;
}
.mia-blog-card-body p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.65;
  margin: 0 0 18px;
  flex: 1;
}
.mia-blog-read-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--mia-navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}
/* Arrow SVG in blog read-more */
.mia-blog-read-more svg {
  width: 16px;
  height: 16px;
  fill: var(--mia-navy);
  flex-shrink: 0;
  transition: fill 0.2s, transform 0.2s;
}
.mia-blog-read-more:hover {
  color: var(--mia-orange);
  text-decoration: none;
}
.mia-blog-read-more:hover svg {
  fill: var(--mia-orange);
  transform: translateX(3px);
}

/* ----------------------------------------------------------
   12. UTILITY CLASSES
---------------------------------------------------------- */
.mia-text-center { text-align: center; }
.mia-mb-0        { margin-bottom: 0; }
.mia-mt-8        { margin-top: 8px; }
.mia-mt-16       { margin-top: 16px; }
.mia-mt-24       { margin-top: 24px; }
.mia-mt-32       { margin-top: 32px; }
.mia-mt-36       { margin-top: 36px; }

/* ----------------------------------------------------------
   13. RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 991px) {
  .mia-hero-title        { font-size: 32px; }
  .mia-about-text        { padding-left: 0; margin-top: 50px; }
  .mia-about-img-badge   { right: 0; }
  .mia-qs-item           { min-width: 33.33%; }
}
@media (max-width: 767px) {
  .mia-nav             { display: none; }
  .mia-mobile-toggle   { display: block; }
  .mia-nav.mia-nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--mia-navy);
    height: auto;
    z-index: 999;
    padding: 10px 0;
  }
  .mia-nav.mia-nav-open > li         { height: auto; width: 100%; }
  .mia-nav.mia-nav-open > li > a    { height: auto; padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .mia-nav.mia-nav-open li:hover .mia-dropdown { display: none; }
  .mia-hero              { min-height: 400px; padding: 40px 0 30px; }
  .mia-hero-title        { font-size: 26px; }
  .mia-qs-item           { min-width: 50%; }
  .mia-section           { padding: 44px 0; }
  .mia-about-row         { flex-direction: column; }
  .mia-map-cta-inner     { flex-direction: column; text-align: center; }
  .mia-map-cta-left      { flex-direction: column; text-align: center; }
  .mia-footer-bottom     { flex-direction: column; text-align: center; }
  .mia-waiting-lot       { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .mia-qs-item           { min-width: 50%; }
  .mia-hero-title        { font-size: 22px; }
  .mia-about-img-badge   { right: 0; bottom: -10px; }
}


/* ==========================================================================
   AIRLINES CHILD PAGE — airlines-child-page.css
   Matches: --mia-* CSS variables, Oswald + Source Sans Pro font stack
   Grid: Bootstrap 3 (col-md-9 / col-md-3)
   ========================================================================== */
 
/* ----------------------------------------------------------
   1. INNER HERO BANNER (Page Title + Breadcrumbs)
---------------------------------------------------------- */
.inner-wrapper {
  background: linear-gradient(100deg, var(--mia-navy) 0%, #00285a 100%);
  padding: 40px 0 36px;
  position: relative;
  overflow: hidden;
}
 
/* Subtle decorative line at the bottom — matches .mia-hero::after */
.inner-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--mia-orange);
}
 
/* Optional background texture for depth */
.inner-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
 
.inner-wrapper .container {
  position: relative;
  z-index: 1;
}
 
/* H1 Page Title */
.inner-title h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--mia-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0 0 12px;
	display:inline-block;
}
 
/* Orange accent underline for the title */
.inner-title h1::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: var(--mia-orange);
  margin-top: 10px;
}
 
/* ----------------------------------------------------------
   2. BREADCRUMBS
---------------------------------------------------------- */
.brcr {
  margin-top: 4px;
}
 
.brcr #breadcrumbs,
.brcr p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Source Sans Pro', sans-serif;
}
 
/* Yoast breadcrumb link styles */
.brcr #breadcrumbs a,
.brcr p a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}
 
.brcr #breadcrumbs a:hover,
.brcr p a:hover {
  color: var(--mia-orange);
  text-decoration: none;
}
 
/* Separator between breadcrumb items */
.brcr #breadcrumbs span.breadcrumb_last,
.brcr #breadcrumbs .breadcrumb_last {
  color: var(--mia-orange);
  font-weight: 600;
}
 
/* ----------------------------------------------------------
   3. INNER PAGE WRAPPER
---------------------------------------------------------- */
.inner-page {
  padding: 48px 0 60px;
  background: var(--mia-white);
}
 
/* ----------------------------------------------------------
   4. MAIN CONTENT COLUMN (.child-page)
---------------------------------------------------------- */
.child-page {
  background: var(--mia-white);
}
 
/* ----------------------------------------------------------
   5. CHILD BANNER (Featured Image)
---------------------------------------------------------- */
.child-banner {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  /* Subtle bottom border accent */
  box-shadow: 0 4px 20px rgba(0, 56, 118, 0.12);
}
 
.child-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mia-navy), var(--mia-orange));
}
 
.child-banner img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
 
.child-banner:hover img {
  transform: scale(1.02);
}
 
/* ----------------------------------------------------------
   6. CHILD CONTENT — WordPress Editor Output
   Scoped under .child-content to avoid theme conflicts
---------------------------------------------------------- */
.child-content {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mia-text);
}
 
/* Headings */
.child-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--mia-navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 36px 0 14px;
  line-height: 1.25;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--mia-border);
}
 
.child-content h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--mia-orange);
  margin-right: 10px;
  vertical-align: middle;
}
 
.child-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--mia-navy);
  margin: 28px 0 10px;
  letter-spacing: 0.02em;
}
 
.child-content h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--mia-dark);
  margin: 22px 0 8px;
}
 
/* Paragraphs */
.child-content p {
  margin: 0 0 18px;
  color: #4A5568;
  line-height: 1.8;
}
 
/* Links */
.child-content a {
  color: var(--mia-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
 
.child-content a:hover {
  color: var(--mia-navy);
  text-decoration: underline;
}
 
/* Unordered & Ordered Lists */
.child-content ul,
.child-content ol {
  margin: 0 0 20px 24px;
  padding: 0;
}
 
.child-content ul li,
.child-content ol li {
  margin-bottom: 8px;
  color: #4A5568;
  line-height: 1.7;
}
 
.child-content ul li::marker {
  color: var(--mia-orange);
}
 
.child-content ol li::marker {
  color: var(--mia-navy);
  font-weight: 700;
}
 
/* Blockquote */
.child-content blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  background: var(--mia-light);
  border-left: 4px solid var(--mia-navy);
  border-radius: 0 4px 4px 0;
  font-size: 15px;
  color: var(--mia-muted);
  font-style: italic;
}
 
/* Tables */
.child-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}
 
.child-content table th {
  background: var(--mia-navy);
  color: var(--mia-white);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
 
.child-content table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--mia-border);
  color: #4A5568;
}
 
.child-content table tr:nth-child(even) td {
  background: var(--mia-light);
}
 
.child-content table tr:hover td {
  background: #EEF2FF;
}
 
/* Images inside content */
.child-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 16px;
}
 
/* Horizontal rule */
.child-content hr {
  border: none;
  border-top: 2px solid var(--mia-border);
  margin: 32px 0;
}
 
/* ----------------------------------------------------------
   7. WORDPRESS COMMENTS SECTION
---------------------------------------------------------- */
.child-page .comments-area {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 2px solid var(--mia-border);
}
 
.child-page .comments-title,
.child-page .comment-reply-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--mia-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 24px;
}
 
.child-page .comment-reply-title {
  font-size: 19px;
  margin-top: 36px;
}
 
.child-page .comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
 
.child-page .comment-list .comment {
  padding: 20px 0;
  border-bottom: 1px solid var(--mia-border);
}
 
.child-page .comment-author .fn {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--mia-navy);
  font-size: 15px;
}
 
.child-page .comment-metadata a {
  font-size: 12px;
  color: var(--mia-muted);
  text-decoration: none;
}
 
.child-page .comment-content p {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.75;
  margin-top: 8px;
}
 
/* Comment form */
.child-page .comment-form input[type="text"],
.child-page .comment-form input[type="email"],
.child-page .comment-form input[type="url"],
.child-page .comment-form textarea {
  width: 100%;
  border: 1.5px solid var(--mia-border);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--mia-text);
  outline: none;
  transition: border-color 0.2s;
  background: var(--mia-white);
  margin-bottom: 14px;
}
 
.child-page .comment-form input:focus,
.child-page .comment-form textarea:focus {
  border-color: var(--mia-navy);
}
 
.child-page .comment-form input[type="submit"] {
  background: var(--mia-navy);
  color: var(--mia-white);
  border: none;
  padding: 11px 28px;
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
}
 
.child-page .comment-form input[type="submit"]:hover {
  background: #00285a;
}
 
/* ----------------------------------------------------------
   8. SIDEBAR
---------------------------------------------------------- */
.sidebar {
  /* Slight offset from content column */
  padding-left: 10px;
}
 
/* ----------------------------------------------------------
   9. SIDEBAR — LATEST PAGES WIDGET
---------------------------------------------------------- */
.side-latest {
  background: var(--mia-white);
  border: 1.5px solid var(--mia-border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
 
/* Widget heading */
.side-latest p.heading {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mia-white);
  background: var(--mia-navy);
  margin: 0;
  padding: 13px 18px;
  /* Left accent */
  border-left: 4px solid var(--mia-orange);
}
 
/* Latest pages list */
ul.latest-side {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
 
ul.latest-side li {
  border-bottom: 1px solid var(--mia-border);
  margin: 0;
}
 
ul.latest-side li:last-child {
  border-bottom: none;
}
 
/* Each sidebar card link */
a.side-a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  transition: background 0.2s;
}
 
a.side-a:hover {
  background: var(--mia-light);
  text-decoration: none;
}
 
/* Thumbnail inside sidebar card */
a.side-a img {
  width: 68px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid var(--mia-border);
  transition: opacity 0.2s;
}
 
a.side-a:hover img {
  opacity: 0.88;
}
 
/* Title text inside sidebar card */
a.side-a p {
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--mia-text);
  line-height: 1.45;
  /* Clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
 
a.side-a:hover p {
  color: var(--mia-navy);
}
 
/* "No child pages found" fallback text */
.side-latest > p:not(.heading) {
  font-size: 13px;
  color: var(--mia-muted);
  padding: 14px 18px;
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
}
 
/* ----------------------------------------------------------
   10. RESPONSIVE BREAKPOINTS
---------------------------------------------------------- */
 
/* Tablet (768px – 991px) */
@media (max-width: 991px) {
  .inner-title h1 {
    font-size: 26px;
  }
 
  .sidebar {
    padding-left: 0;
    margin-top: 40px;
  }
 
  .child-banner img {
    max-height: 320px;
  }
 
  .inner-page {
    padding: 36px 0 48px;
  }
}
 
/* Mobile (max 767px) — Bootstrap 3 stacks columns here */
@media (max-width: 767px) {
	.mia-search-tab-btn{
		padding: 14px!important;
	}
	.mia-hero{
		display: block;
	}
  /* Title area */
  .inner-wrapper {
    padding: 28px 0 24px;
  }
 
  .inner-title h1 {
    font-size: 26px;
  }
 
  /* Stack layout: content first, sidebar below */
  .inner-page .row {
    display: flex;
    flex-direction: column;
  }
 
  .inner-page .col-md-9,
  .inner-page .col-md-3 {
    width: 100%;
  }
 
  .sidebar {
    padding-left: 0;
    margin-top: 36px;
  }
 
  /* Banner image */
  .child-banner img {
    max-height: 240px;
  }
 
  /* Sidebar card: smaller thumbnail */
  a.side-a img {
    width: 58px;
    height: 44px;
  }
 
  /* Reduce section padding */
  .inner-page {
    padding: 28px 0 40px;
  }
 
  /* Content headings */
  .child-content h2 {
    font-size: 22px;
  }
 
  .child-content h3 {
    font-size: 18px;
  }
 
  /* Tables — horizontal scroll */
  .child-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
 
  /* Comments */
  .child-page .comments-area {
    margin-top: 32px;
    padding-top: 28px;
  }
}
 
/* Small mobile (max 480px) */
@media (max-width: 480px) {
  .inner-title h1 {
    font-size: 26px;
  }
 
  .inner-wrapper {
    padding: 22px 0 20px;
  }
 
  .child-banner img {
    max-height: 200px;
  }
 
  .child-content {
    font-size: 14px;
  }
 
  .child-content h2 {
    font-size: 20px;
  }
 
  a.side-a {
    gap: 10px;
    padding: 8px 12px;
  }
 
  a.side-a img {
    width: 52px;
    height: 40px;
  }
 
  a.side-a p {
    font-size: 12px;
  }
}


/* Blog Page Sidebar CSS */

/* ── Sidebar ─────────────────────────────────────── */

.mia-sidebar {
    padding-left: 20px;
}

.mia-sidebar-widget {
    margin-bottom: 36px;
}

.mia-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.mia-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mia-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.mia-sidebar-list img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.mia-sidebar-list a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    display: block;
    margin-bottom: 4px;
    color: inherit;
    text-decoration: none;
}

.mia-sidebar-list a:hover {
    text-decoration: underline;
}

.mia-sidebar-list span {
    font-size: 12px;
    color: #6b7280;
}

/* Mobile: sidebar neeche aaye */
@media ( max-width: 767px ) {
    .mia-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
}

/*Footer CSS Start Here*/

.footercall button .content svg path:nth-child(2) {
    -webkit-animation: header-phone 1s infinite cubic-bezier(.1,.57,.5,1);
    animation: header-phone 1s infinite cubic-bezier(.1,.57,.5,1)
}
.footercall button .content svg path:nth-child(3) {
    -webkit-animation: header-phone2 1s infinite cubic-bezier(.1,.57,.5,1);
    animation: header-phone2 1s infinite cubic-bezier(.1,.57,.5,1)
}

@-webkit-keyframes header-phone {
    0%,30% {
        opacity: 0;
        -webkit-transform: translate3d(-20px,20px,0);
        transform: translate3d(-20px,20px,0)
    }

    80% {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    100% {
        opacity: 0
    }
}

@keyframes header-phone {
    0%,30% {
        opacity: 0;
        -webkit-transform: translate3d(-20px,20px,0);
        transform: translate3d(-20px,20px,0)
    }

    80% {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes header-phone2 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-20px,20px,0);
        transform: translate3d(-20px,20px,0)
    }

    70%,90% {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    100% {
        opacity: 0
    }
}

@keyframes header-phone2 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-20px,20px,0);
        transform: translate3d(-20px,20px,0)
    }

    70%,90% {
        opacity: 1;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    100% {
        opacity: 0
    }
}
.footercall {
    position: fixed;
    width: 100%;
    bottom: 0;
    text-align: center;
    z-index: 999;
}
.footercall button {
    width: 100%;
    background:var(--mia-navy)!important;
    border: 0;
	color: #fff;
}
.footercall button:hover{
	background: #00285a!important;
	color:#fff;
}
.footercall button .content {
    color: #fff;
    font-size: 24px;
	text-transform:capitalize;
}
.footercall button .content svg {
    width: 30px;
    height: 25px;
    float: none;
    margin-bottom: -4px;
    margin-right: 10px;
}
.footercall button .content svg path {
    fill:#fff;
}

/* ── Footer Base ─────────────────────────────────── */
footer#colophon.site-footer {
    background-color: #17233e !important;
    background-image: url(/wp-content/uploads/2025/12/shape8.png);
    background-position: top center;
    background-repeat: repeat-x;
    background-size: 60% auto;
    padding: 60px 0 0 0;
    position: relative;
}

/* ── Remove any overlay bleeding ────────────────── */
footer#colophon.site-footer::before,
footer#colophon.site-footer::after {
    display: none;
}

/* ── Pre Footer — 4 column nav area ─────────────── */
.pre-footer {
    padding-bottom: 40px;
}

/* ── Column Headings ─────────────────────────────── */
.menu-head {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff !important;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

/* ── Nav Menu Links ──────────────────────────────── */
.menu-new ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.menu-new ul li {
    margin-bottom: 10px;
}
.menu-new ul li a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none !important;
    transition: color 0.2s;
}
.menu-new ul li a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

.menu-new ul.children{
	margin-top:10px!important;
}

/* ── Disclaimer Bar ──────────────────────────────── */
.disc__main {
    background-color: rgba(0, 0, 0, 0.2);
}
.disc__main .container {
    padding: 20px 15px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-bottom: none;
}
.disc__main p {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 12px !important;
    line-height: 1.7;
    margin: 0 !important;
}
.disc__main p strong {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ── Copyright + Bottom Nav ──────────────────────── */
.site-info {
    background-color: rgba(0, 0, 0, 0.25);
}
.site-info .container {
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
}
.site-info p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 13px !important;
    margin: 0 !important;
    line-height: 2;
	text-align:center;
}

/* ── Bottom Footer Menu ──────────────────────────── */
ul.menu-new-footer {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end !important;
}
ul.menu-new-footer li a {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 13px;
    font-family: 'Source Sans Pro', sans-serif;
    text-decoration: none !important;
    transition: color 0.2s;
}
ul.menu-new-footer li a:hover {
    color: #ffffff !important;
}

/* ── Mobile ──────────────────────────────────────── */
@media ( max-width: 767px ) {
	.mia-wait-card .mia-wait-num{
		font-size: 24px;
	}
	.mia-wait-card {
    min-height: 200px;
    max-height: 200px;
}
    footer#colophon.site-footer {
        padding-top: 40px;
    }
    .pre-footer .col-md-3 {
        margin-bottom: 30px;
    }
    ul.menu-new-footer {
        justify-content: center !important;
        margin-top: 10px;
    }
    .site-info .col-md-6 {
        text-align: center;
    }
	.footercall button {
    padding-left: 12px;
    padding-right: 12px;
}
	.footercall button .content {
    font-size: 20px;
}
	.footercall button .content svg {
    width: 22px;
    height: 22px;
    margin-right: 6px;
}
}

/* Terminal Child page CSS Start Here  */
.child_banner {
    padding: 7rem 0;
    background-repeat: no-repeat!important;
    background-size: cover!important;
    background-position: center center!important;
}

.child_banner .inner_title h1{
	color:#fff;
	text-align:center;
}


.zak-primary-nav ul li:hover > ul, .zak-primary-nav ul li.focus > ul {
    left: -110px;
}