/* ==========================================================================
   Airport Nav Pills — template-parts/airport-nav-pills.php
   ========================================================================== */

.airport-nav-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 10px 18px;
    color: var(--aa-text, #172033);
    background: var(--aa-white, #ffffff);
    border: 1px solid var(--aa-border, #e5e9f0);
    border-radius: 999px;
    font-size: 12px;
    font-weight: normal;
    text-decoration: none;
    transition: background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.nav-pill:hover {
    color: var(--aa-primary, #1261c9);

    background: var(--aa-primary-light, #edf5ff);

    border-color: #cbdcf5;

    transform: translateY(-1px);
}

.nav-pill.active {
    color: var(--aa-white, #ffffff);

    background: var(--aa-primary, #1261c9);

    border-color: var(--aa-primary, #1261c9);
}

.nav-pill.active:hover {
    background: var(--aa-primary-dark, #0b4ea8);

    border-color: var(--aa-primary-dark, #0b4ea8);

    transform: none;
}

/* 3rd-level (grandchild) pills — visually one step down from parent pills */

/* .nav-pill--sub {
    padding: 8px 15px;

    color: var(--aa-text-light, #667085);

    background: var(--aa-background-soft, #f8fafc);

    border-color: var(--aa-border-light, #edf0f4);
    border-radius: var(--aa-radius-sm, 8px);

    font-size: 13px;
    font-weight: 600;
}

.nav-pill--sub:hover {
    color: var(--aa-primary, #1261c9);

    background: var(--aa-primary-light, #edf5ff);

    border-color: #cbdcf5;
}

.nav-pill--sub.active {
    color: var(--aa-white, #ffffff);

    background: var(--aa-primary, #1261c9);

    border-color: var(--aa-primary, #1261c9);
} */

.aa-homepage {
    --aa-primary: #1261c9;
    --aa-primary-dark: #0b4ea8;
    --aa-primary-light: #edf5ff;

    --aa-text: #172033;
    --aa-text-light: #667085;

    --aa-border: #e5e9f0;
    --aa-border-light: #edf0f4;

    --aa-white: #ffffff;
    --aa-background: #ffffff;
    --aa-background-soft: #f8fafc;

    --aa-radius-sm: 8px;
    --aa-radius-md: 12px;
    --aa-radius-lg: 16px;

    --aa-shadow-sm: 0 2px 10px rgba(16, 24, 40, 0.05);
    --aa-shadow-md: 0 8px 30px rgba(16, 24, 40, 0.08);

    --aa-container-width: 1180px;

    color: var(--aa-text);
    background: var(--aa-background);
}

.aa-homepage *,
.aa-homepage *::before,
.aa-homepage *::after {
    box-sizing: border-box;
}

.aa-homepage img {
    display: block;
    max-width: 100%;
}

.aa-homepage a {
    color: inherit;
    text-decoration: none;
}

.aa-homepage button,
.aa-homepage input,
.aa-homepage select {
    font: inherit;
}

.aa-homepage button,
.aa-homepage input,
.aa-homepage select {
    margin: 0;
}

.aa-homepage input {
	border: none;
}

.aa-homepage p,
.aa-homepage h1,
.aa-homepage h2,
.aa-homepage h3 {
    margin-top: 0;
}

.aa-container {
    width: min(
        calc(100% - 40px),
        var(--aa-container-width)
    );

    margin-inline: auto;
}

.aa-sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);
    white-space: nowrap;

    border: 0;
}

/* ==========================================================================
   Hero — floating airplane (decorative)
   ========================================================================== */

.aa-hero__plane {
    position: absolute;
    top: 110px;
    right: 20px;
    z-index: 2;
    width: 560px;
    max-width: 44%;
    pointer-events: none;
    animation: aa-hero-plane-float 6s ease-in-out infinite;
}

.aa-hero__plane img {
    display: block;

    width: 100%;
    height: auto;

    filter: drop-shadow(0 25px 35px rgba(11, 30, 60, 0.35));
}

@keyframes aa-hero-plane-float {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    50% {
        transform: translateY(-14px) translateX(-6px) rotate(-1deg);
    }

}


@media (max-width: 1200px) {

    .aa-hero__plane {
        top: 20px;
        right: -30px;

        width: 440px;
    }

}

@media (max-width: 991px) {

    .aa-hero__plane {
        display: none;
    }

}

@media (prefers-reduced-motion: reduce) {

    .aa-hero__plane {
        animation: none;
    }

}

.aa-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1261C9;
    background: radial-gradient(circle, rgba(18, 97, 201, 1) 0%, rgba(237, 245, 255, 1) 34%, rgba(11, 78, 168, 1) 100%);
}

.aa-hero__media {
    position: absolute;
    inset: 0;

    z-index: 0;
}

.aa-hero__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.aa-hero__overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(255, 255, 255, 0.88) 38%,
            rgba(255, 255, 255, 0.20) 72%,
            rgba(255, 255, 255, 0.05) 100%
        );
}

.aa-hero__container {
    position: relative;

    z-index: 2;

    padding-top: 65px;
    padding-bottom: 110px;
}

.aa-hero__content {
    max-width: 590px;
}

.aa-eyebrow {
    margin-bottom: 14px;

    color: var(--aa-primary);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.aa-hero__title {
    margin-bottom: 20px;

    color: var(--aa-text);

    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.08;

    font-weight: 750;
    letter-spacing: -0.035em;
}

.aa-hero__title span {
    color: var(--aa-primary);
}

.aa-hero__description {
    max-width: 520px;

    margin-bottom: 0;

    color: #4b5565;

    font-size: 18px;
    line-height: 1.65;
}

/* ==========================================================================
   Search Bar — aa-search
   ========================================================================== */

.aa-search-card {
    width: 100%;
    max-width: 60%;
}

.aa-search-section {
	margin-top: -50px;
	position: relative;
	z-index: 99;
}

.aa-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 40px 0px 0px;
}

.aa-search__form {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 4px 4px 4px 20px;

    background: var(--aa-background-soft);

    border: 1px solid var(--aa-border);
    border-radius: 999px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.aa-search__form:focus-within {
    border-color: var(--aa-primary);

    box-shadow:
        0 0 0 3px rgba(18, 97, 201, 0.10);
}

.aa-search__icon {
    display: flex;
    flex-shrink: 0;

    color: var(--aa-text-light);
}

.aa-search__icon-svg {
    width: 20px;
    height: 20px;

    fill: currentColor;
}

.aa-search__field {
    flex: 1;

    min-width: 0;

    padding: 13px 0;

    color: var(--aa-text);

    background: transparent;

    border: 0;
    outline: none;

    font-size: 15px;
}

.aa-search__field::placeholder {
    color: var(--aa-text-light);
}

/* Remove native search-input decorations across browsers */

.aa-search__field::-webkit-search-decoration,
.aa-search__field::-webkit-search-cancel-button,
.aa-search__field::-webkit-search-results-button,
.aa-search__field::-webkit-search-results-decoration {
    appearance: none;
}

.aa-search__submit {
    flex-shrink: 0;

    min-height: 46px;

    padding: 0 28px;

    color: var(--aa-white);

    background: var(--aa-primary);

    border: 0;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 650;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.aa-search__submit:hover {
    background: var(--aa-primary-dark);
	color: var(--aa-white)!important;
    transform: translateY(-1px);
}

/* Close button — hidden in the hero card by default. If this same markup
   is reused as a toggleable header/overlay search, add the modifier class
   .aa-search--overlay to the .aa-search wrapper to reveal it. */

.aa-search__close {
    display: none;

    flex-shrink: 0;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    padding: 0;

    color: var(--aa-text-light);

    background: transparent;

    border: 0;
    border-radius: 50%;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.aa-search__close:hover {
    color: var(--aa-text);

    background: var(--aa-background-soft);
}

.aa-search__close-icon {
    width: 18px;
    height: 18px;
}

.aa-search--overlay .aa-search__close {
    display: flex;
}

.aa-button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 20px;

    border: 0;
    border-radius: var(--aa-radius-sm);

    font-size: 14px;
    font-weight: 650;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.aa-button--primary {
    color: var(--aa-white);

    background: var(--aa-primary);
}

.aa-button--primary:hover {
    background: var(--aa-primary-dark);

    transform: translateY(-1px);
}

.aa-quick-access,
.aa-airports-section,
.aa-airlines-section,
.aa-blog-section {
    padding: 80px 0;
}

.aa-airports-section,
.aa-blog-section {
    background: var(--aa-background-soft);
}

.aa-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}

.aa-section-heading--center {
    display: block;

    max-width: 650px;

    margin-inline: auto;

    margin-bottom: 35px;

    text-align: center;
}

.aa-section-heading__eyebrow {
    margin-bottom: 6px;

    color: var(--aa-primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.aa-section-heading h2 {
    margin-bottom: 0;

    color: var(--aa-text);

    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.2;

    letter-spacing: -0.025em;
}

.aa-section-heading--center p {
    margin-top: 10px;
    margin-bottom: 0;

    color: var(--aa-text-light);

    font-size: 15px;
    line-height: 1.6;
}

.aa-section-link {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--aa-primary);

    font-size: 14px;
    font-weight: 650;
}

.aa-section-link:hover {
    color: var(--aa-primary-dark);
}

.aa-quick-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 14px;
}

.aa-quick-card {
    min-height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    text-align: center;
    background: var(--aa-white);
    border: 1px solid var(--aa-border);
    border-radius: var(--aa-radius-md);
	cursor: pointer;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.aa-quick-card:hover {
    border-color: #cbdcf5;

    box-shadow: var(--aa-shadow-sm);

    transform: translateY(-3px);
}

.aa-quick-card__icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    color: var(--aa-primary);

    background: var(--aa-primary-light);

    border-radius: 50%;

    font-size: 20px;
    font-weight: 700;
}

.aa-quick-card__title {
    display: block;

    margin-bottom: 4px;

    color: var(--aa-text);

    font-size: 14px;
    font-weight: 650;
}

.aa-quick-card__text {
    display: block;

    color: var(--aa-text-light);

    font-size: 12px;
}

.aa-pages-section {
    padding: 80px 0;
    background: #f8fafc;
}

.aa-pages-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 16px;
}

.aa-page-card {
    min-width: 0;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5e9f0;
    border-radius: 12px;

    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.03);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.aa-page-card:hover {
    border-color: #cbdcf5;

    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.07);

    transform: translateY(-2px);
}

.aa-page-card__image-link {
    flex: 0 0 105px;

    width: 90px;
    height: 90px;

    display: block;

    overflow: hidden;

    background: #edf5ff;
}

.aa-page-card__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.aa-page-card:hover
.aa-page-card__image {
    transform: scale(1.05);
}

.aa-page-card__placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1261c9;

    background:
        linear-gradient(
            135deg,
            #edf5ff 0%,
            #f7faff 100%
        );

    font-size: 25px;
}

.aa-page-card__placeholder span {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    box-shadow: 0 3px 12px rgba(18, 97, 201, 0.10);
}

.aa-page-card__content {
    min-width: 0;

    flex: 1;

    padding: 16px 17px;
}

.aa-page-card__title {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 650;
    letter-spacing: -0.01em;
	margin: 0;
}

.aa-page-card__title a {
    color: #172033;

    text-decoration: none;
}

.aa-page-card__title a:hover {
    color: #1261c9;
}

.aa-page-card__link {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: #1261c9;

    font-size: 12px;
    font-weight: 650;

    text-decoration: none;
}

.aa-page-card__link:hover {
    color: #0b4ea8;
}

.aa-page-card__link span {
    transition: transform 0.2s ease;
}

.aa-page-card:hover
.aa-page-card__link span {
    transform: translateX(3px);
}

.aa-pages-empty {
    padding: 40px 20px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e5e9f0;
    border-radius: 12px;
}

.aa-pages-empty p {
    margin: 0;

    color: #667085;

    font-size: 14px;
}

.aa-airlines-section {
    background: var(--aa-white);
}

.aa-airline-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 14px;
}

.aa-airline-card {
    position: relative;

    aspect-ratio: 4 / 3;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: var(--aa-background-soft);

    border: 1px solid var(--aa-border);
    border-radius: var(--aa-radius-md);

    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.aa-airline-card:hover {
    box-shadow: var(--aa-shadow-md);

    transform: translateY(-3px);
}

.aa-airline-card__img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.aa-airline-card:hover .aa-airline-card__img {
    transform: scale(1.06);
}

/* Darkens the image so the floating white title stays legible,
   heavier toward the bottom where the text sits. */

.aa-airline-card__overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(10, 15, 25, 0.25) 0%,
            rgba(10, 15, 25, 0.35) 45%,
            rgba(10, 15, 25, 0.82) 100%
        );
}

.aa-airline-card__title {
    position: relative;

    z-index: 2;

    width: 100%;

    padding: 14px 12px 16px;

    color: var(--aa-white);

    font-size: 13px;
    font-weight: 650;

    text-align: center;

    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.aa-blog-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.aa-blog-card {
    overflow: hidden;

    background: var(--aa-white);

    border: 1px solid var(--aa-border);

    border-radius: var(--aa-radius-md);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.aa-blog-card:hover {
    box-shadow: var(--aa-shadow-sm);

    transform: translateY(-3px);
}

.aa-blog-card__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.aa-blog-card__image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #edf5ff 0%,
            #f7faff 100%
        );

    color: #1261c9;

    font-size: 28px;
}

.aa-blog-card__image-placeholder span {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 50%;
}

.aa-blog-card__image-link {
    display: block;

    aspect-ratio: 16 / 10;

    overflow: hidden;
}

.aa-blog-card__image-link img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.aa-blog-card:hover
.aa-blog-card__image-link img {
    transform: scale(1.035);
}

.aa-blog-card__content {
    padding: 20px;
}

.aa-blog-card__category {
    margin-bottom: 9px;

    color: var(--aa-primary);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.aa-blog-card h3 {
    margin-bottom: 11px;

    font-size: 17px;
    line-height: 1.4;

    letter-spacing: -0.01em;
}

.aa-blog-card h3 a:hover {
    color: var(--aa-primary);
}

.aa-blog-card__excerpt {
    margin-bottom: 17px;

    color: var(--aa-text-light);

    font-size: 13px;
    line-height: 1.65;
}

/* Airlines Parent */

/* ==========================================================================
   Page Hero (title + breadcrumb) — shared across page-templates/*.php
   ========================================================================== */

.aa-page-hero {
    padding: 40px 0 34px;

    background: var(--aa-background-soft);

    border-bottom: 1px solid var(--aa-border-light);
}

.aa-page-hero__breadcrumb {
    margin-bottom: 12px;

    color: var(--aa-text-light);

    font-size: 13px;
}

.aa-breadcrumb a {
    color: var(--aa-text-light);
}

.aa-breadcrumb a:hover {
    color: var(--aa-primary);
}

.aa-breadcrumb span {
    color: var(--aa-text-light);
}

.aa-page-hero__title {
    margin-bottom: 0;

    color: var(--aa-text);

    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.15;

    font-weight: 750;
    letter-spacing: -0.03em;
}

/* ==========================================================================
   Page Body — content (left) + sidebar (right)
   ========================================================================== */

.aa-page-body {
    padding: 30px 0 80px;
}

.aa-page-body__grid {
    display: flex;

    align-items: flex-start;

    gap: 50px;
}

.aa-page-body__content {
    flex: 2 1 0;

    min-width: 0;

    color: var(--aa-text);

    font-size: 16px;
    line-height: 1.75;
}

.aa-page-body__content h2,
.aa-page-body__content h3 {
    color: var(--aa-text);

    letter-spacing: -0.02em;
}

.aa-page-body__content p {
    margin-bottom: 18px;
}

.aa-page-body__sidebar {
    flex: 1 1 0;

    min-width: 0;
}

.aa-sidebar__heading {
    margin-bottom: 16px;

    color: var(--aa-text);

    font-size: 17px;

    letter-spacing: -0.015em;
}

.aa-sidebar__list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

/* Sidebar modifier for the reused .aa-page-card component */

.aa-page-card--sidebar {
    align-items: center;
}

.aa-page-card--sidebar .aa-page-card__image-link {
    flex-basis: 80px;

    width: 80px;
    height: 80px;
}

.aa-page-card--sidebar .aa-page-card__content {
    padding: 12px 14px;
}

.aa-page-card--sidebar .aa-page-card__title {
    margin-bottom: 8px;

    font-size: 14px;
}

/* ==========================================================================
   Office Children Cards — page-templates/offices.php
   ========================================================================== */

.aa-office-cards {
    margin-top: 40px;
}

.aa-office-cards__heading {
    margin-bottom: 18px;

    color: var(--aa-text, #172033);

    font-size: 20px;

    letter-spacing: -0.02em;
}

.aa-office-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.page-template-offices .aa-office-cards__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aa-office-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: var(--aa-white, #ffffff);

    border: 1px solid var(--aa-border, #e5e9f0);
    border-radius: var(--aa-radius-md, 12px);

    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.03);

    text-decoration: none;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.aa-office-card:hover {
    border-color: #cbdcf5;

    box-shadow: var(--aa-shadow-sm, 0 2px 10px rgba(16, 24, 40, 0.05));

    transform: translateY(-3px);
}

.aa-office-card__image {
    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: var(--aa-primary-light, #edf5ff);
}

.aa-office-card__img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.aa-office-card:hover .aa-office-card__img {
    transform: scale(1.04);
}

.aa-office-card__placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--aa-primary, #1261c9);

    font-size: 26px;
}

.aa-office-card__content {
    padding: 16px 17px;
}

.aa-office-card__title {
    margin: 0;

    color: var(--aa-text, #172033);

    font-size: 15px;
    line-height: 1.4;

    font-weight: 650;

    letter-spacing: -0.01em;
}

.aa-office-card:hover .aa-office-card__title {
    color: var(--aa-primary, #1261c9);
}

/* ==========================================================================
   All Airlines list — page-templates/all-airlines.php
   ========================================================================== */

.aa-airlines-list {
    margin-top: 40px;
}

.aa-airlines-list__grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 14px;
}

.aa-airlines-list__card {
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px 16px;

    text-align: center;

    background: var(--aa-white, #ffffff);

    border: 1px solid var(--aa-border, #e5e9f0);

    border-radius: var(--aa-radius-md, 12px);

    text-decoration: none;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.aa-airlines-list__card:hover {
    border-color: #cbdcf5;

    box-shadow: var(--aa-shadow-sm, 0 2px 10px rgba(16, 24, 40, 0.05));

    transform: translateY(-3px);
}

.aa-airlines-list__title {
    color: var(--aa-text, #172033);

    font-size: 14px;
    font-weight: 650;

    line-height: 1.4;
}

.aa-airlines-list__card:hover .aa-airlines-list__title {
    color: var(--aa-primary, #1261c9);
}


/* ==========================================================================
   For Desktop
   ========================================================================== */

@media (max-width: 1024px) {

    .aa-pages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aa-airline-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .aa-container {
        width: min(
            calc(100% - 32px),
            var(--aa-container-width)
        );
    }

    .aa-hero {
        min-height: 400px;
    }

    .aa-hero__container {
        padding-top: 55px;
        padding-bottom: 105px;
    }

    .aa-hero__title {
        max-width: 560px;
    }

    .aa-search-form {
        grid-template-columns:
            1fr 1fr;

        padding: 18px;
    }

    .aa-search-form .aa-button {
        grid-column: 1 / -1;
    }

    .aa-quick-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .aa-airport-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .aa-airport-card:nth-child(n + 4) {
        display: none;
    }

    .aa-airline-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .aa-blog-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .aa-airlines-list__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 991px) {

    .aa-page-body__grid {
        flex-direction: column;

        gap: 40px;
    }

    .aa-page-body__content,
    .aa-page-body__sidebar {
        flex: 1 1 auto;

        width: 100%;
    }

}


/* ==========================================================================
   For Mobile
   ========================================================================== */

@media (max-width: 767px) {

    .airport-nav-pills {
        flex-wrap: nowrap;

        gap: 8px;

        margin-bottom: 24px;
        padding-bottom: 16px;

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .airport-nav-pills::-webkit-scrollbar {
        display: none;
    }

    .nav-pill {
        flex-shrink: 0;

        padding: 9px 15px;

        font-size: 13px;
    }

    .nav-pill--sub {
        padding: 7px 13px;

        font-size: 12px;
    }

    .aa-search {
        padding: 34px 0px 14px;
    }

    .aa-search__form {
        padding-left: 16px;
    }

    .aa-search__field {
        padding: 11px 0;

        font-size: 14px;
    }

    .aa-search__submit {
        min-height: 42px;

        padding: 0 18px;

        font-size: 13px;
    }

    .aa-pages-section {
        padding: 60px 0;
    }

    .aa-pages-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .aa-page-card__image-link {
        flex-basis: 95px;
        width: 95px;
        height: 95px;
    }

    .aa-page-card__content {
        padding: 14px 15px;
    }

    .aa-page-card__title {
        margin-bottom: 9px;

        font-size: 14px;
    }

    .page-template-offices .aa-office-cards__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))!important;
    }

    .aa-airline-grid {
        grid-template-columns:
            repeat(1, minmax(0, 1fr));

        gap: 10px;
    }

    .aa-airline-card__title {
        padding: 12px 10px 14px;

        font-size: 16px;
    }

    .aa-container {
        width: calc(100% - 28px);
    }

    .aa-hero {
        min-height: 440px;
        align-items: flex-start;
    }

    .aa-hero__media img {
        object-position: 65% center;
    }

    .aa-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.96) 0%,
                rgba(255, 255, 255, 0.90) 58%,
                rgba(255, 255, 255, 0.30) 100%
            );
    }

    .aa-hero__container {
        padding-top: 55px;
        padding-bottom: 70px;
    }

    .aa-hero__content {
        max-width: 100%;
    }

    .aa-eyebrow {
        font-size: 11px;
    }

    .aa-hero__title {
        margin-bottom: 16px;

        font-size: clamp(34px, 10vw, 44px);
    }

    .aa-hero__description {
        font-size: 16px;
        line-height: 1.55;
    }

    /* Search */

    .aa-search-section {
        margin-top: -85px;
    }

    .aa-search-tabs {
        gap: 22px;

        padding-inline: 18px;
    }

    .aa-search-tab {
        padding: 15px 0;

        font-size: 13px;
    }

    .aa-search-form {
        grid-template-columns: 1fr;

        gap: 10px;

        padding: 15px;
    }

    .aa-search-form .aa-button {
        grid-column: auto;
    }

    /* Sections */

    .aa-quick-access,
    .aa-airports-section,
    .aa-airlines-section,
    .aa-blog-section {
        padding: 60px 0;
    }

    .aa-section-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 12px;

        margin-bottom: 24px;
    }

    .aa-section-heading--center {
        display: block;

        text-align: center;
    }

    .aa-section-heading h2 {
        font-size: 27px;
    }

    /* Quick Access */

    .aa-quick-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .aa-quick-card {
        min-height: 130px;

        padding: 16px 10px;
    }

    .aa-quick-card__icon {
        width: 40px;
        height: 40px;

        margin-bottom: 10px;
    }

    /* Airports */

    .aa-airport-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .aa-airport-card:nth-child(n + 4) {
        display: block;
    }

    .aa-airport-card {
        display: grid;

        grid-template-columns: 120px 1fr;
    }

    .aa-airport-card__image-link {
        aspect-ratio: 1 / 1;

        height: 100%;
    }

    .aa-airport-card__content {
        padding: 15px;
    }

    .aa-airport-card h3 {
        font-size: 14px;
    }

    /* Airlines */

    .aa-airline-grid {
        grid-template-columns:
            repeat(1, minmax(0, 1fr));

        gap: 10px;
    }

    .aa-airline-card {
        min-height: 125px;
    }

    .aa-airline-card__logo {
        width: 85px;
        height: 55px;
    }

    /* Blog */

    .aa-blog-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .aa-blog-card__content {
        padding: 18px;
    }

    .aa-blog-card h3 {
        font-size: 16px;
    }

    .aa-page-hero {
        padding: 30px 0 26px;
    }

    .aa-page-body {
        padding: 45px 0 60px;
    }

    .aa-office-cards {
        margin-top: 30px;
    }

    .aa-office-cards__grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .aa-office-cards__heading {
        font-size: 18px;
    }

    .aa-airlines-list {
        margin-top: 30px;
    }

    .aa-airlines-list__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .aa-search-card {
        width: 100%;
        max-width: 100%;
    }

    .aa-airlines-list__card {
        min-height: 75px;

        padding: 16px 12px;
    }

    .aa-airlines-list__title {
        font-size: 13px;
    }

}


@media (max-width: 420px) {

    .aa-search__submit {
        padding: 0 14px;
    }

    .aa-page-card__image-link {
        flex-basis: 85px;

        width: 85px;
        height: 85px;
    }

    .aa-page-card__content {
        padding: 12px 13px;
    }

    .aa-page-card__title {
        font-size: 13px;
        line-height: 1.35;
    }

    .aa-page-card__link {
        font-size: 11px;
    }

    .aa-container {
        width: calc(100% - 22px);
    }

    .aa-hero__title {
        font-size: 33px;
    }

    .aa-search-tabs {
        gap: 16px;
    }

    .aa-search-tab {
        font-size: 12px;
    }

    .aa-quick-grid {
        gap: 8px;
    }

    .aa-quick-card__title {
        font-size: 13px;
    }

    .aa-quick-card__text {
        font-size: 11px;
    }

    .aa-airport-card {
        grid-template-columns: 105px 1fr;
    }

    .aa-airlines-list__grid {
        gap: 8px;
    }

}


/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .nav-pill {
        transition-duration: 0.01ms !important;
    }

    .aa-homepage *,
    .aa-homepage *::before,
    .aa-homepage *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}


/* ==========================================================================
   Footer — footer.php 
   ========================================================================== */

.site-footer {
    --footer-primary: #1261c9;
    --footer-primary-dark: #0b4ea8;

    --footer-bg: #0f1726;
    --footer-bg-soft: #16203344;

    --footer-text: #c3cad9;
    --footer-text-strong: #ffffff;
    --footer-text-muted: #8891a3;

    --footer-border: rgba(255, 255, 255, 0.08);

    --footer-container-width: 1200px;

    color: var(--footer-text);

    background: var(--footer-bg);
}

.site-footer a {
    color: var(--footer-text);

    text-decoration: none;

    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--footer-text-strong);
}

.site-footer p {
    margin: 0;
}


/* Generic centered container — replaces Bootstrap's .container */

.footer-container {
    width: min(
        calc(100% - 40px),
        var(--footer-container-width)
    );

    margin-inline: auto;
}


/* Utility to match Bootstrap's .hidden — kept so the existing
   "hidden" class on .pre-footer still behaves the same way. */

.hidden {
    display: none !important;
}


/* ==========================================================================
   Pre-footer — logo/description + menu columns
   ========================================================================== */

.site-footer .pre-footer {
    padding: 64px 0 40px;
	display: none;
}

.footer-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 40px;
}

.footer-col {
    min-width: 0;
}

.site-footer .site-footer-logo img {
    max-width: 170px;
    height: auto;

    margin-bottom: 16px;
}

.site-footer .site-footer-logo p.no-margin {
    max-width: 320px;

    color: var(--footer-text);

    font-size: 14px;
    line-height: 1.7;
}

.site-footer .menu-head {
    margin-bottom: 18px;

    color: var(--footer-text-strong);

    font-size: 14px;
    font-weight: 650;

    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.site-footer .menu-new {
    display: flex;
    flex-direction: column;

    gap: 12px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.site-footer .menu-new li {
    margin: 0;
}

.site-footer .menu-new a {
    font-size: 14px;
    line-height: 1.5;
}


/* ==========================================================================
   Disclaimer strip
   ========================================================================== */

.site-footer .disc__main {
    padding: 22px 0;

    background: var(--footer-bg-soft);

    border-top: 1px solid var(--footer-border);
    border-bottom: 1px solid var(--footer-border);
}

.site-footer .disc__main p {
    color: var(--footer-text-muted);

    font-size: 12px;
    line-height: 1.7;
}

.site-footer .disc__main p strong {
    color: var(--footer-text);
}


/* ==========================================================================
   Bottom bar — copyright
   ========================================================================== */

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

.site-footer .site-info p {
    color: var(--footer-text-muted);

    font-size: 13px;

    text-align: center;
}


/* ==========================================================================
   Mobile "Call Now" bar (.footercall)
   ========================================================================== */

footer#colophon {
    margin-bottom: 50px;
}

.footercall {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
	z-index: 999;
}

.footercall .mobile_view {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 54px;

    padding: 0 16px;

    color: #ffffff;

    background: var(--footer-primary, #1261c9);

    border: 0;

    cursor: pointer;

    transition: background-color 0.2s ease;
}

.footercall .mobile_view:hover {
    background: var(--footer-primary-dark, #0b4ea8);
}

.footercall .content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 650;
}

.footercall #phone {
    width: 24px;
    height: 24px;

    flex-shrink: 0;

    fill: #ffffff;
}


@media (max-width: 991px) {

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        row-gap: 36px;
    }

}

@media (max-width: 767px) {
	
	.footercall .content {
		display: flex;
		align-items: center;
		gap: 10px;
		color: #ffffff;
		font-size: 20px;
		font-weight: 650;
	}

    .site-footer .pre-footer {
        padding: 48px 0 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .site-footer .site-footer-logo p.no-margin {
        max-width: 100%;
    }

    /* Fixed "Call Now" bar only shows on mobile, above the bottom of the
       viewport, and adds bottom padding to the page so it doesn't cover
       the last bit of content. */
    .footercall {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;

        z-index: 999;

        display: block;

        box-shadow: 0 -2px 12px rgba(16, 24, 40, 0.15);
    }

}


/* ==========================================================================
   Single Post — single.php
   ========================================================================== */

.aa-single__hero {
    padding: 40px 0 32px;

    background: var(--aa-background-soft);

    border-bottom: 1px solid var(--aa-border-light);
}

.aa-single__category {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    color: var(--aa-primary);
    background: var(--aa-primary-light);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.aa-single__title {
    max-width: 780px;
    margin-bottom: 20px;
    color: var(--aa-text);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    letter-spacing: -0.03em;
	font-weight: 750;
}

.aa-single__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 20px;
}

.aa-single__meta-item {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--aa-text-light);

    font-size: 14px;
}

.aa-single__avatar {
    width: 28px;
    height: 28px;

    border-radius: 50%;
}


/* Featured image — sits inside the content column, not full page width */

.aa-single__featured-image {
    margin-bottom: 32px;
}

.aa-single__image {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 9;

    object-fit: cover;

    border-radius: var(--aa-radius-lg);
}


/* Content typography */

.aa-single__content {
    color: var(--aa-text);

    font-size: 17px;
    line-height: 1.8;
}

.aa-single__content > * + * {
    margin-top: 22px;
}

.aa-single__content h2,
.aa-single__content h3,
.aa-single__content h4 {
    margin-top: 40px;
    margin-bottom: 0;

    color: var(--aa-text);

    font-weight: 700;

    letter-spacing: -0.02em;
}

.aa-single__content h2 {
    font-size: 26px;
    line-height: 1.3;
}

.aa-single__content h3 {
    font-size: 21px;
    line-height: 1.35;
}

.aa-single__content h3:first-child{
	margin-top: 0!important;
}

.aa-single__content h4 {
    font-size: 18px;
    line-height: 1.4;
}

.aa-single__content p {
    margin: 0;
}

.aa-single__content a {
    color: var(--aa-primary);

    text-decoration: underline;
    text-decoration-color: rgba(18, 97, 201, 0.35);
    text-underline-offset: 2px;
}

.aa-single__content a:hover {
    text-decoration-color: var(--aa-primary);
}

.aa-single__content strong {
    color: var(--aa-text);

    font-weight: 700;
}

.aa-single__content ul,
.aa-single__content ol {
    margin: 0;
    padding-left: 22px;
}

.aa-single__content li + li {
    margin-top: 8px;
}

.aa-single__content li::marker {
    color: var(--aa-primary);
}

.aa-single__content blockquote {
    margin: 0;
    padding: 4px 0 4px 20px;

    color: var(--aa-text-light);

    border-left: 3px solid var(--aa-primary);

    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
}

.aa-single__content img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: var(--aa-radius-md);
}

.aa-single__content figure {
    margin: 0;
}

.aa-single__content figcaption {
    margin-top: 10px;

    color: var(--aa-text-light);

    font-size: 13px;
    text-align: center;
}

.aa-single__content hr {
    margin: 8px 0;

    border: 0;
    border-top: 1px solid var(--aa-border);
}

.aa-single__content table {
    width: 100%;

    border-collapse: collapse;

    font-size: 15px;
}

.aa-single__content th,
.aa-single__content td {
    padding: 10px 12px;

    text-align: left;

    border: 1px solid var(--aa-border);
}

.aa-single__content th {
    background: var(--aa-background-soft);

    font-weight: 650;
}


/* Tags */

.aa-single__tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 40px;
    padding-top: 32px;

    border-top: 1px solid var(--aa-border-light);
}

.aa-single__tag {
    padding: 6px 14px;

    color: var(--aa-text-light);

    background: var(--aa-background-soft);

    border: 1px solid var(--aa-border);
    border-radius: 999px;

    font-size: 13px;
    font-weight: 600;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.aa-single__tag:hover {
    color: var(--aa-primary);

    background: var(--aa-primary-light);

    border-color: #cbdcf5;
}


/* Prev / Next navigation */

.aa-single__nav {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin-top: 40px;
}

.aa-single__nav-link {
    display: flex;
    flex-direction: column;

    gap: 6px;

    padding: 18px 20px;

    background: var(--aa-white);

    border: 1px solid var(--aa-border);
    border-radius: var(--aa-radius-md);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.aa-single__nav-link:hover {
    border-color: #cbdcf5;

    box-shadow: var(--aa-shadow-sm);

    transform: translateY(-2px);
}

.aa-single__nav-link--next {
    text-align: right;

    align-items: flex-end;
}

.aa-single__nav-label {
    color: var(--aa-primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.aa-single__nav-title {
    color: var(--aa-text);

    font-size: 14px;
    font-weight: 650;

    line-height: 1.4;
}


@media (max-width: 767px) {

    .aa-single__hero {
        padding: 30px 0 24px;
    }

    .aa-single__meta {
        gap: 14px;
    }

    .aa-single__content {
        font-size: 16px;
    }

    .aa-single__nav {
        grid-template-columns: 1fr;
    }

    .aa-single__nav-link--next {
        text-align: left;

        align-items: flex-start;
    }

}



/* ==========================================================================
   Page Hero — right-side layout for the Call Now box
   (only active where .aa-page-hero__inner is used, i.e. templates that
   include the [call_now_box] shortcode — other page-hero templates that
   don't use __inner are unaffected)
   ========================================================================== */

.aa-page-hero__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 32px;

    flex-wrap: wrap;
}

.aa-page-hero__main {
    flex: 1 1 0;

    min-width: 0;
}


/* ==========================================================================
   Call Now box — [call_now_box] shortcode
   ========================================================================== */

.aa-callbox {
    --aa-callbox-btn-bg: #10263a;
    --aa-callbox-btn-bg-hover: #0a1a28;

    flex-shrink: 0;

    width: 320px;
    max-width: 100%;

    padding: 28px 26px;

    text-align: center;

    background: var(--aa-white);

    border-radius: var(--aa-radius-lg);

    box-shadow: var(--aa-shadow-md);
}

.aa-callbox__label {
    margin-bottom: 16px;

    color: var(--aa-text);

    font-size: 22px;
    font-weight: 750;

    letter-spacing: -0.02em;
}

.aa-callbox__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 14px;
    padding: 15px 20px;
    color: var(--aa-white)!important;
    background: var(--aa-callbox-btn-bg);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.aa-callbox__button:hover {
    background: var(--aa-callbox-btn-bg-hover);
    transform: translateY(-1px);
}

.aa-callbox__icon {
    display: flex;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--aa-white);
}

.aa-callbox__icon svg {
    width: 100%;
    height: 100%;
}

.aa-callbox__text {
    margin: 0;

    color: var(--aa-text-light);

    font-size: 13px;
    line-height: 1.55;
}


@media (max-width: 767px) {

    .aa-page-hero__inner {
        flex-direction: column;

        gap: 24px;
    }

    .aa-callbox {
        width: 100%;
    }
	
	.aa-homepage input::placeholder {
    font-size: 12px;
}

}

/* ==========================================================================
   Bottom bar — copyright + footer bottom menu
   ========================================================================== */

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

.site-footer .site-info .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-wrap: wrap;

    gap: 12px 24px;
}

.site-footer .site-info p {
    color: var(--footer-text-muted);

    font-size: 13px;
}

.site-footer .menu-new-footer {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 4px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.site-footer .menu-new-footer li {
    display: flex;
    align-items: center;

    margin: 0;
}

.site-footer .menu-new-footer li:not(:last-child)::after {
    content: "|";

    margin-left: 4px;

    color: var(--footer-border);

    font-size: 12px;
}

.site-footer .menu-new-footer a {
    padding: 0 8px;

    color: var(--footer-text-muted);

    font-size: 13px;
}

.site-footer .menu-new-footer a:hover {
    color: var(--footer-text-strong);
}


@media (max-width: 767px) {

    .site-footer .site-info .footer-container {
        justify-content: center;

        text-align: center;
    }

    .site-footer .menu-new-footer {
        justify-content: center;
    }

}