/* ----------------------------------------- */
/* --------------Header styles-------------- */
/* ----------------------------------------- */

.site-header {
    background-color: var(--header-background-color);
}

.site-branding img {
    width: 220px;
    height: auto;
}

.site-toggle-btn {
    outline: none;
    border: none;
    background-color: transparent;
}

.site-toggle-btn:focus {
    outline: none;
    box-shadow: none;
}

.burger-bar {
    margin: 8px 0;
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--body-color);
}

.burger-bar:nth-child(2) {
    width: 22px;
}

.toggle-search-form{
	color: var(--secondary-color);
}

.site-main-menu-primary ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-main-menu-primary ul li {
    display: block;
}

.site-main-menu-primary ul li a {
    display: block;
    padding: 10px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
}

.site-main-menu-primary ul li a:hover {
    color: var(--primary-color);
}


/* Mobile menu */

.admin-bar div#mobile-navigation {
    top: 46px;
}

div#mobile-navigation {
    position: fixed;
    background: #fff;
    width: 80%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    padding: 30px 20px;
    transform: translateX(-100%);
    transition: all .3s ease-in;
}

div#mobile-navigation.show {
    transform: translateX(0);
}

.mobile-navigation__logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mobile-navigation__logo .site-branding {
    font-size: 20px;
    color: var(--body-color);
    margin: 0;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children ul {
    position: absolute;
    z-index: 9;
    background: #fff;
    right: -50%;
    top: 100%;
    width: 100%;
    min-width: 200px;
    box-shadow: none;
    transform-origin: top;
    transform: rotateX(90deg);
    opacity: 0;
    transition: all 0.3s ease-in;
    max-height: 250px;
    overflow: auto;
}

.desktop-navigation__menu .menu-item-has-children:hover ul {
    box-shadow: 0 8px 14px #ccc;
    transform: rotateX(0deg);
    opacity: 1;
}

.mobile-navigation__menu .menu-item-has-children.show ul {
    transform: rotateX(0deg);
    opacity: 1;
    height: 100%;
}


a.mobile-navigation__close {
    font-size: 42px;
    color: var(--mobile-menu-close-btn-color);
    text-decoration: none;
}

.mobile-menu-support::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    z-index: 998;
    transform: translateX(-100%);
    transition: all 0.3s ease-in;
}

.menu-item-has-children::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    right: 0;
    top: 50%;
    border-top: 2px solid var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
    transform-origin: center;
    transform: rotate(-135deg) translate(50%);
    transition: transform .3s ease-in;
}

.mobile-navigation__menu .menu-item-has-children::after {
    top: 15px;
    right: 15px;
}

.mobile-menu-open {
    overflow: hidden;
}

.desktop-navigation__menu .menu-item-has-children:hover::after,
.mobile-navigation__menu .menu-item-has-children.show::after {
    transform: rotate(45deg);
	border-top: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
}

.mobile-navigation__menu-list {
    list-style: none;
    padding: 0;
}

.mobile-navigation__menu-list>li>a,
.mobile-navigation__menu .menu-item-has-children ul>li>a {
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid;
}

.mobile-navigation__menu .menu-item-has-children ul {
    left: 0;
    top: 110%;
    box-shadow: none;
    margin: 0;
    padding-left: 10px;
    list-style: none;
    overflow: hidden;
    position: relative;
    max-height: fit-content;
    height: 0;
}


.mobile-navigation__menu {
    height: calc(100% - 100px);
    overflow-y: auto;
    overflow-x: hidden;
}


.mobile-menu-support.mobile-menu-open::before {
    transform: translateX(0);
}

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

.front-page-header .page-header-inner {
    display: flex;
    justify-content: center;
    flex-flow: wrap column;
}

.page-header {
    padding: 30px 0;
    position: relative;
    min-height: 380px;
    background-size: cover;
    background-position: -180px 0px;
    background-repeat: no-repeat;
    background-color: rgb(0 0 0 / 25%);
}


.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.page-header.no-banner-image{
	min-height: 200px;
}
.page-header.no-banner-image::before{
	display: none;
}

.section-title {
    color: #FF6602;
}
.widget-title{
	font-size:18px; 
	color: #fff; 
	margin-bottom:15px;
}
footer .widget ul{
    list-style: none;
    padding: 0; 
    margin: 0;
}
footer .widget ul li{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
footer .widget ul li a{
    color: #fff;  
}
footer .widget ul li a:hover{
    color: var(--primary-color)
}

.card-title {
    color: var(--primary-color);
}

/* ----------------------------------------- */
/* -----------------Footer------------------ */
/* ----------------------------------------- */

.footer {
    background-color: var(--footer-background-color);
    padding: 20px 0;
    margin-top: 50px;
    color: #fff;
}

.footer a {
    display: block;
    color: #fff;
}

.footer a:hover {
    color: #FF6602;
}

.footer h1 {
    color: #FF6602;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer ul li>a {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.footer-bottom {
    background-color: var(--bottom-footer-background-color);
    padding: 15px 0;
    color: #fff;
}

.footer-bottom nav {
    justify-content: flex-end !important;
}

.bottom-footer-menu ul li {
    padding: 0 10px;
}

.bottom-footer-menu a {
    color: var(--white-color);
}

.bottom-footer-menu a:hover {
    color: var(--link-hover-color);
}

.navbar-expand-lg .bottom-footer-menu .navbar-nav {
    flex-direction: row;
}

.social-marketing-bottom {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.social-icons-footer {
    display: flex;
    gap: 20px;
}

.social-content {
    width: 90%;
}

.social-content img {
    width: 250px;
    margin: 10px 0px;
}

#whereairlines-mail {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

/* header search form */

#header-search-form {
    position: fixed;
    left: 0;
    width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	z-index: 99999;
    visibility: hidden;
    opacity: 0;
	transition: all 0.3s ease-in;
}
.search-form.show {
    visibility: visible !important;
    opacity: 1 !important;
}
#header-search-form .header-search-form-close {
    z-index: 999;
    top: 20px;
    position: absolute;
    right: 20px;
    border: 2px solid #c33;
    background: #f44;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
}
#header-search-form > form {
	z-index: 99999;
}
#header-search-form::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgb( 0 0 0 / 30%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

body.front-page-php .toggle-search-form {
    display: none;
}


/* Author Page */
body.single-post .author-info-on-blog {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    background-color: #f3f3f3;
    border-radius: 1px 35px;
    gap: 33px;
}

body.single-post .author-info-on-blog img {
    width: 90px;
    border-radius: 50%;
}

body.single-post .post-author-on-blog ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.single-post .author-info-on-blog .author-bio {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    float: left;
}

body.single-post .author-info-on-blog .author-bio p {
    font-size: 27px;
    font-weight: 600;
    line-height: 30px;
    margin-top: 15px;
}
.post-meta {
    font-size: 14px;
    color: #FF6602;
    margin-top: 5px;
	margin-bottom: 0;
}

/* ------------Breadcrums styles----------- */

/* body.page-template-child-page #breadcrumbs {
    justify-content: start;
} */
nav#theme-breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
}


nav#theme-breadcrumbs ol li {
    position: relative;
    display: inline-block;
}

nav#theme-breadcrumbs ol li:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #cfcfcf;
    border-radius: 50px;
    top: 50%;
    right: 5px;
    transform: translateY(-50%)
}

nav#theme-breadcrumbs ol li a,
#breadcrumbs a {
    color: #FF6602;
    display: block;
    padding-right: 10px;
    text-decoration: none;
}

nav#theme-breadcrumbs ol li span,
#breadcrumbs span {
    color: #fff;
    display: block;
    padding-right: 10px;
}

 #breadcrumbs>span {
    color: #FF6602;
}


body #breadcrumbs span,
body #breadcrumbs a {
    display: inline-block !important;
    padding-right: 0 !important;
}

#breadcrumbs {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

body.page-child #breadcrumbs {
    margin-bottom: 15px;
}

/* comment section */
.comment-respond {
    padding: 20px 10px;
}

#commentform {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.comment-notes {
    font-size: 14px;
    color: #555;
}

.comment-form p {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#commentform .comment-form-email,
#commentform .comment-form-author {
    width: calc(50% - 15px);
}

#commentform .comment-form-email {
    margin-left: auto;
}

#commentform label {
    font-weight: bold;
    margin-bottom: 4px;
}

#commentform input,
#commentform textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

#commentform textarea {
    resize: vertical;
}

.comment-form-cookies-consent {
    flex-direction: row !important;
    align-items: center;
}

.comment-form-cookies-consent input {
    margin-right: 8px;
}

#commentform .submit {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#commentform .submit:hover {
	background-color: var(--secondary-color);
}
ul.commentlist {
	list-style: none;
	padding: 0;
}
.comment-author.vcard img{
	width: 60px;
	height: auto;
	margin-bottom: 40px;
}
.comment-author.vcard {
    display: flex;
    gap: 25px;
}
ul.commentlist .comment-meta {
    color: var(--secondary-color);
}

/* Enhanced CTA Section */
.travel-cta {
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    padding: 33px 0;
    margin-bottom: -30px;
    position: relative;
    width: 95%;
    margin: 50px auto;
    text-align: center;
}

.cta-header h3 {
    font-size: 33px;
    font-weight: 700;
    line-height: 40px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.cta-header p {
    font-size: 20px;
    font-weight: 400;
    line-height: 33px;
    color: #fff;
    margin-top: 20px;
}

.cta-action a {
    font-weight: 600;
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 22px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
}

.travel-cta svg {
    fill: #fff;
    width: 4em;
    padding-bottom: 20px;
}

.cta-action a:hover {
    background-color: var(--highlight-color);
    transform: scale(1.05);
}

/* How It Works */
.how-it-works {
    text-align: center;
    padding: 60px 20px;
    background-color:#4da527 !important;
    color: white;
    border-radius: 8px;
    margin: auto;
    width: 95%;
}

.howworks-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.howworks-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.step {
    background: white;
    color: #334e6f;
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.step:hover {
    transform: translateY(-10px);
}

.step img {
    width: 100px;
    margin-bottom: 15px;
}

.step .step-image svg {
    width: 100px;
}

.step-image {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e9f8fb;
    border-radius: 50%;
    padding: 20px;
    color: var(--primary-color);
    margin: 0 auto 15px;
}

.step h3 a {
    color:#4da527;
    font-size: 22px;
    text-decoration: none;
}

.step p {
    font-size: 16px;
    opacity: 0.7;
}


/* ----------------------------------------- */
/* --------------Main styles---------------- */
/* ----------------------------------------- */

.page-content {
    margin: 0px auto;
}
.page-content .child-page-sidebar>p{
	background-color: var(--secondary-color) !important;
}
.other-locations>h4 {
    background: var(--secondary-color) !important;
    border-radius: 5px;
}
.has-luminous-vivid-orange-background-color {
    border-radius: 1em 1em 0 0;
    padding: 20px !important;
}

.pill-image-se{
	border-bottom-left-radius: 150px;
	border-top-right-radius: 150px;
}

.card-image-wrapper {
    min-height: 255px;
}
.page-content .section-child-pages .card-img-top{
	height:auto;
	width:100%;
}

.thumbnail-container {
    padding: 10px;
    border: 1px solid #ececec;
    border-radius: 8px;
}

.map-container iframe {
	max-width: 100%;
	width: 100%;
	height: 100%;
	min-height: 300px;
}

body.page-template-child-page .page-content .col-12.col-lg-7 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
}
body.page-template-child-page .page-content .col-12.col-lg-7 ul.airlines-listing {
    float: left;
    list-style: none;
    padding: 0; 
}
body.page-template-child-page .page-content .col-12.col-lg-7 ul.airlines-listing li{
	font-size: 18px;
    border-bottom: 1px dashed var(--primary-color);
	padding-top:5px;
	padding-bottom:5px;
	line-height: 30px;
}
body.page-template-child-page .page-content .col-12.col-lg-7 .list-unstyled b{
	font-size: 18px;
}
.page-content .has-fixed-layout{
	width: 100%;
}
.page-content .has-fixed-layout td{
	border-width: 1px !important;
	padding-top: 5px;
	padding-bottom: 5px;
}


body.single-post .page-content .wp-block-heading.has-text-align-center,
body.page .page-content .wp-block-heading.has-text-align-center{
    border-radius: 1em 1em 0em 0em !important;
	background-color: var(--secondary-color);
	color: #fff;
    margin-bottom: 10px;
    padding: 10px 0px;
}



/* ========================================
   404 PAGE
   Prefix: _404_
   ======================================== */

.error404 #page {
    background: #fff !important;
}

/* --- Wrapper --- */
._404_wrapper {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    padding: 40px 0;
    background: linear-gradient(170deg, #f8fffe 0%, #f9f9f9 40%, #f5f8fc 100%);
    position: relative;
    overflow: hidden;
}
._404_wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(63,208,212,0.06) 0%, transparent 70%);
    pointer-events: none;
}
._404_wrapper::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16,32,57,0.03) 0%, transparent 70%);
    pointer-events: none;
}

._404_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}


/* --- Content Column --- */
._404_content {
    flex: 1;
    max-width: 560px;
    text-align: center;
}


/* --- 404 Number --- */
._404_number-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

._404_number {
    font-size: 7rem;
    font-weight: 800;
    color: #102039;
    line-height: 1;
    letter-spacing: -0.04em;
    animation: _404_float 4s ease-in-out infinite;
}
._404_number:first-child {
    animation-delay: 0s;
}
._404_number:last-child {
    animation-delay: 0.8s;
}

@keyframes _404_float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

._404_zero-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation-delay: 0.4s !important;
}

._404_zero-text {
    position: relative;
    z-index: 2;
    font-size: 7rem;
    font-weight: 800;
    color: #102039;
    line-height: 1;
    letter-spacing: -0.04em;
}

._404_zero-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(63,208,212,0.15);
    animation: _404_ring-pulse 3s ease-in-out infinite;
}
._404_zero-ring--outer {
    width: 110px;
    height: 110px;
    animation-delay: 0s;
}
._404_zero-ring--inner {
    width: 130px;
    height: 130px;
    border-color: rgba(63,208,212,0.08);
    animation-delay: 1.5s;
}

@keyframes _404_ring-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0; }
}


/* --- Plane Illustration --- */
._404_illustration {
    position: relative;
    height: 40px;
    margin-bottom: 28px;
    overflow: visible;
}

._404_plane {
    color: #3fd0d4;
    animation: _404_fly 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(63,208,212,0.3));
}

@keyframes _404_fly {
    0%   { transform: translate(0, 0) rotate(0deg); }
    25%  { transform: translate(30px, -8px) rotate(-5deg); }
    50%  { transform: translate(60px, 2px) rotate(0deg); }
    75%  { transform: translate(30px, 6px) rotate(3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

._404_trail {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(63,208,212,0.25), transparent);
    transform: translateY(-50%);
    border-radius: 2px;
    z-index: 1;
}

._404_cloud {
    position: absolute;
    border-radius: 50%;
    background: rgba(63,208,212,0.06);
    z-index: 0;
}
._404_cloud--1 {
    width: 60px;
    height: 20px;
    top: -6px;
    left: 15%;
    animation: _404_drift 8s ease-in-out infinite;
}
._404_cloud--2 {
    width: 45px;
    height: 14px;
    bottom: -4px;
    right: 20%;
    animation: _404_drift 10s ease-in-out 2s infinite;
}
._404_cloud--3 {
    width: 35px;
    height: 12px;
    top: 8px;
    right: 35%;
    animation: _404_drift 7s ease-in-out 4s infinite;
}

@keyframes _404_drift {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(15px); opacity: 1; }
}


/* --- Title & Text --- */
._404_title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #102039;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

._404_text {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}


/* --- Buttons --- */
._404_actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

._404_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

._404_btn--primary {
    background: linear-gradient(135deg, #3fd0d4, #2ab8bc);
    color: #fff;
    box-shadow: 0 4px 14px -3px rgba(63,208,212,0.4);
}
._404_btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -3px rgba(63,208,212,0.5);
    color: #fff !important;
}
._404_btn--primary svg {
    transition: transform 0.3s ease;
}
._404_btn--primary:hover svg {
    transform: translateX(-3px);
}

._404_btn--outline {
    background: transparent;
    color: #102039;
    border: 1.5px solid #ddd;
}
._404_btn--outline:hover {
    border-color: #3fd0d4;
    color: #3fd0d4 !important;
    background: rgba(63,208,212,0.04);
    transform: translateY(-1px);
}


/* --- Helpful Links --- */
._404_helpful {
    margin-bottom: 28px;
}

._404_helpful-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

._404_helpful-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

._404_helpful-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: #3fd0d4;
    text-decoration: none;
    transition: color 0.25s ease;
}
._404_helpful-links a:hover {
    color: #102039 !important;
}

._404_helpful-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #ddd;
}


/* --- Social --- */
._404_social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

._404_social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f5f5f5;
    color: #999;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
._404_social a:hover {
    background: #102039;
    color: #fff;
    border-color: #102039;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px -2px rgba(16,32,57,0.25);
}


/* --- Image Column --- */
._404_image-col {
    flex: 0 0 auto;
    width: 400px;
}

._404_image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px -15px rgba(16,32,57,0.2);
}

._404_image-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

._404_image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16,32,57,0.5) 0%, rgba(16,32,57,0.1) 40%, transparent 70%);
    pointer-events: none;
}

._404_image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #102039;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* --- Responsive --- */
@media (max-width: 991.98px) {
    ._404_inner {
        flex-direction: column-reverse;
        gap: 40px;
    }
    ._404_image-col {
        width: 100%;
        max-width: 500px;
    }
    ._404_image-wrap img {
        height: 300px;
    }
    ._404_number {
        font-size: 5rem;
    }
    ._404_zero-text {
        font-size: 5rem;
    }
    ._404_zero-ring--outer {
        width: 80px;
        height: 80px;
    }
    ._404_zero-ring--inner {
        width: 96px;
        height: 96px;
    }
}

@media (max-width: 575.98px) {
    ._404_wrapper {
        padding: 30px 0;
    }
    ._404_number {
        font-size: 3.8rem;
    }
    ._404_zero-text {
        font-size: 3.8rem;
    }
    ._404_zero-ring--outer {
        width: 62px;
        height: 62px;
    }
    ._404_zero-ring--inner {
        width: 76px;
        height: 76px;
    }
    ._404_image-wrap img {
        height: 220px;
    }
    ._404_image-wrap {
        border-radius: 18px;
    }
    ._404_title {
        font-size: 1.25rem;
    }
    ._404_text {
        font-size: 0.88rem;
    }
    ._404_btn {
        padding: 10px 20px;
        font-size: 0.84rem;
    }
    ._404_illustration {
        height: 30px;
    }
    ._404_plane {
        width: 36px;
        height: 36px;
    }
}

.below-banner-image {
    border-radius: 6em;
}

.sidebar {
    overflow: hidden;
}

.sidebar h2,
.sidebar h3 {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 4px 8px;
    font-size: 24px
}

.sidebar ul {
    margin: 0 5px 10px;
}

.sidebar ul>li {
    margin-bottom: 15px;
}

.sidebar ul>li img {
    width: 100%;
    max-height: 150px;
}

.sidebar ul>li>a {
    float: left;
    font-weight: 500;
    margin-bottom: 12px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 12px;
    display: block;
    width: 100%;
}


.airline-alphabet {
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    margin-bottom: 20px;
}

.airline-alphabet::before,
.airline-alphabet::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--primary-color);
    top: 50%;
    transform: translateY(-50%)
}

.airline-alphabet::before {
    left: -15px;
}

.airline-alphabet::after {
    right: -15px;
}

body .article-child-page .is-layout-flex {
    flex-flow: column;
}

.article-child-page iframe {
    width: 100%;
}

.schema-faq-section {
    border: 1px solid var(--primary-color);
    margin-bottom: 15px;
}

.schema-faq-section .schema-faq-question {
    background: var(--primary-color);
    display: block;
    padding: 5px 10px;
    color: var(--white-color);
    border-bottom: 2px dashed;
}

#ez-toc-container {
    position: sticky;
    top: 50px;
	width: 100% !important;
}


.schema-faq-section .schema-faq-answer {
    margin: 0;
    padding: 10px;
}

@keyframes apparition {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

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

@keyframes float {

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

    50% {
        transform: translateY(180px);
    }
}

@keyframes floatReverse {

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

    50% {
        transform: translateY(-180px);
    }
}

@keyframes float2 {

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

    50% {
        transform: translateY(28px);
    }
}

@keyframes floatReverse2 {

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

    50% {
        transform: translateY(-28px);
    }
}
/* ========================================
   AIRLINES LISTING PAGE
   Prefix: _airlist_
   ======================================== */


/* --- Hero --- */
._airlist_hero {
    background: linear-gradient(160deg, #102039 0%, #0a1628 50%, #152a4a 100%);
    position: relative;
    overflow: hidden;
}
._airlist_hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(63,208,212,0.07) 0%, transparent 70%);
    pointer-events: none;
}

._airlist_hero-title {
    font-size: 2.25rem;
    letter-spacing: -0.03em;
}

._airlist_hero-sub {
    max-width: 500px;
    font-size: 0.95rem;
    line-height: 1.7;
}


/* --- Badge --- */
._airlist_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(63,208,212,0.1);
    border: 1px solid rgba(63,208,212,0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: #3fd0d4;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
._airlist_badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3fd0d4;
    animation: _airlist_pulse 2s ease-in-out infinite;
}
._airlist_badge--light {
    background: rgba(63,208,212,0.1);
    border-color: rgba(63,208,212,0.2);
}
@keyframes _airlist_pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}


/* --- Scroll Reveal --- */
._airlist_reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(3px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
._airlist_visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    filter: blur(0) !important;
}


/* --- Sticky Alphabet Nav --- */
._airlist_sticky-nav {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 10px 0;
    transition: box-shadow 0.3s ease;
}
._airlist_nav-scrolled {
    box-shadow: 0 4px 20px -4px rgba(0,0,0,0.08);
}
#_airlist_navInner {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
#_airlist_navInner::-webkit-scrollbar {
    display: none;
}

._airlist_nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 6px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #888;
    text-decoration: none;
    transition: all 0.25s ease;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
._airlist_nav-link:hover {
    background: rgba(63,208,212,0.08);
    color: #3fd0d4;
}
._airlist_nav-active {
    background: #102039 !important;
    color: #fff !important;
    box-shadow: 0 3px 10px -2px rgba(16,32,57,0.3);
}


/* --- Letter Divider --- */
._airlist_letter-divider {
    padding-top: 4px;
}
._airlist_letter-char {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #102039, #1a3058);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px -2px rgba(16,32,57,0.25);
}
._airlist_letter-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(16,32,57,0.12), rgba(16,32,57,0.04));
}
._airlist_letter-count {
    font-size: 0.75rem;
    font-weight: 500;
    color: #bbb;
    white-space: nowrap;
}

._airlist_letter-row:first-child {
    margin-top: 0 !important;
}
._airlist_letter-row:first-child ._airlist_letter-line {
    background: linear-gradient(90deg, rgba(16,32,57,0.12), transparent);
}


/* --- Airline Card --- */
._airlist_card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}
._airlist_card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #3fd0d4;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 3px 3px 0;
}
._airlist_card:hover {
    border-color: rgba(63,208,212,0.25);
    box-shadow: 0 4px 16px -6px rgba(63,208,212,0.15);
    transform: translateY(-2px);
}
._airlist_card:hover::before {
    transform: scaleY(1);
}

._airlist_card-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3fd0d4, #2ab8bc);
    transition: transform 0.3s ease;
}
._airlist_card:hover ._airlist_card-dot {
    transform: scale(1.4);
}

._airlist_card-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #102039;
    line-height: 1.35;
    transition: color 0.25s ease;
}
._airlist_card:hover ._airlist_card-name {
    color: #3fd0d4 !important;
}

._airlist_card-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
    color: #3fd0d4;
    flex-shrink: 0;
    margin-left: auto;
}
._airlist_card:hover ._airlist_card-arrow {
    opacity: 1;
    transform: translateX(0);
}


/* --- Back to Top --- */
._airlist_btt {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #102039;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px -4px rgba(16,32,57,0.4);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 80;
}
._airlist_btt-show {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}
._airlist_btt:hover {
    background: #3fd0d4;
    box-shadow: 0 8px 24px -4px rgba(63,208,212,0.4);
    transform: translateY(-2px);
}


/* --- Responsive --- */
@media (max-width: 767.98px) {
    ._airlist_hero-title {
        font-size: 1.65rem !important;
    }
    ._airlist_nav-link {
        min-width: 32px;
        height: 32px;
        font-size: 0.72rem;
    }
    ._airlist_letter-char {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    ._airlist_card {
        padding: 10px 12px;
    }
    ._airlist_card-name {
        font-size: 0.78rem;
    }
    ._airlist_card-arrow {
        display: none;
    }
    ._airlist_btt {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    ._airlist_card-arrow {
        display: none;
    }
}

/* ========================================
   HOMEPAGE REVAMP STYLES
   ======================================== */

/* --- Extra CSS Variable --- */

/* --- Section Badge (pill label above headings) --- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(63,208,212,0.1), rgba(63,208,212,0.04));
    border: 1px solid rgba(63,208,212,0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.section-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: pulse-dot 2s ease-in-out infinite;
}
.section-badge--light {
    background: rgba(63,208,212,0.1);
    border-color: rgba(63,208,212,0.2);
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* --- Section Heading & Subtext --- */
.section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 10px;
}
.section-subtext {
    font-size: 0.95rem;
    color: #777;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(3px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* --- Subtle top border on white sections --- */
.latest-pages-section::before,
.airlines-directory-section::before,
.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(63,208,212,0.15), transparent);
}


/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    background: linear-gradient(160deg, #102039 0%, #0a1628 50%, #152a4a 100%);
    position: relative;
    overflow: hidden;
}
.how-it-works::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(63,208,212,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(63,208,212,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.step-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    height: 100%;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.step-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(63,208,212,0.2);
    transform: translateY(-4px);
}
.step-card:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    line-height: 1;
}

.step-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(63,208,212,0.15), rgba(63,208,212,0.05));
    border: 1px solid rgba(63,208,212,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.4s ease;
    animation: float-icon 6s ease-in-out infinite;
}
.step-card:nth-child(2) .step-icon-wrap {
    animation-delay: 2s;
}
.step-card:hover .step-icon-wrap {
    background: linear-gradient(135deg, rgba(63,208,212,0.25), rgba(63,208,212,0.1));
    transform: scale(1.08);
}
.step-icon-wrap svg {
    width: 26px;
    height: 26px;
    fill: var(--primary-color);
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.step-card h3 a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}
.step-card:hover h3 a {
    color: var(--primary-color) !important;
}
.step-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0;
}


/* ========================================
   AIRLINE TABS
   ======================================== */
/* ========================================
   AIRLINE TABS (pure CSS, no BS JS)
   ======================================== */
.airline-tab-nav {
    gap: 6px;
}
.airline-tab-btn {
    padding: 7px 18px;
    border-radius: 100px;
    border: 1.5px solid #e5e5e5;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.4;
}
.airline-tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(63,208,212,0.04);
}
.airline-tab-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

/* Tab pane base state — JS controls display/opacity */
.airline-tab-pane {
    /* display and opacity are set by JS on load */
}


/* ========================================
   AIRLINE CARDS (inside tabs)
   ======================================== */
.airline-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.airline-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.35s ease;
    border-radius: 0 3px 3px 0;
}
.airline-card:hover {
    border-color: rgba(63,208,212,0.3);
    box-shadow: 0 6px 24px -8px rgba(63,208,212,0.15);
    transform: translateY(-2px);
}
.airline-card:hover::before {
    transform: scaleY(1);
}

.airline-card-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transition: transform 0.35s ease;
}
.airline-card:hover .airline-card-dot {
    transform: scale(1.3);
}

.airline-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.35;
    transition: color 0.3s ease;
}
.airline-card:hover .airline-card-title {
    color: var(--primary-color) !important;
}

.airline-card-arrow {
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.35s ease;
    color: var(--primary-color);
    flex-shrink: 0;
}
.airline-card:hover .airline-card-arrow {
    opacity: 1;
    transform: translateX(0);
}


/* ========================================
   EXPLORE CTA (replaces travel expert)
   ======================================== */
.explore-cta {
    background: linear-gradient(160deg, #102039 0%, #0d1a30 50%, #162d50 100%);
    position: relative;
    overflow: hidden;
}
.explore-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(63,208,212,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.explore-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(63,208,212,0.15), rgba(63,208,212,0.05));
    border: 1px solid rgba(63,208,212,0.15);
    animation: float-icon 6s ease-in-out infinite;
}
.explore-cta-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
}


/* ========================================
   ENHANCED CARDS (Latest Pages & Blog)
   Targets cards output by get_template_part
   ======================================== */
.latest-pages-section .card,
.blog-section .card {
    border: 1px solid rgba(0,0,0,0.06) !important;
    border-radius: 14px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.latest-pages-section .card:hover,
.blog-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px -12px rgba(0,0,0,0.1);
    border-color: rgba(63,208,212,0.15) !important;
}
.latest-pages-section .card-img-top,
.blog-section .card-img-top {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.latest-pages-section .card:hover .card-img-top,
.blog-section .card:hover .card-img-top {
    transform: scale(1.04);
}
.latest-pages-section .card-title,
.blog-section .card-title {
    font-weight: 700 !important;
    color: var(--secondary-color) !important;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
}
.latest-pages-section .card:hover .card-title,
.blog-section .card:hover .card-title {
    color: var(--primary-color) !important;
}
.latest-pages-section .card-title a,
.blog-section .card-title a {
    text-decoration: none !important;
    color: inherit !important;
}


/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 767.98px) {
    .section-heading {
        font-size: 1.5rem;
    }
    .step-card {
        padding: 28px 20px;
    }
    .step-number {
        font-size: 32px;
    }
    .airline-card {
        padding: 12px 14px;
    }
    .airline-card-arrow {
        display: none;
    }
    .airline-card-title {
        font-size: 0.8rem;
    }
    .explore-cta-icon {
        width: 60px;
        height: 60px;
    }
}


@media screen and (min-width: 992px) {
    .mobile-navigation {
        display: none;
    }

    .front-page-header .page-header-inner,
    .search-page-header .page-header-inner {
        max-width: 75%;
        margin: 0 auto;
        text-align: center;
    }

    .menu-item-has-children {
        padding-right: 10px;
    }

    .mobile-menu-support::before {
        display: none;
    }

    .mobile-menu-open {
        overflow: auto;
    }

    .map-container iframe {
        min-height: 300px;
    }

    form#searchform {
        width: 50%;
        margin-right: auto;
        margin-left: auto;
    }
	.menu-item-has-children ul{
		min-width: 650px;
		padding: 20px;
		column-count: 3;
		border-bottom-left-radius: 8px;
		border-bottom-right-radius: 8px;
	}
}

@media only screen and (min-width: 1024px) {
    .page-header {
        min-height: 400px;
        background-position: top center;
    }
}


@media only screen and (max-width: 1080px) {

    body.single-post .author-info-on-blog {
        gap: 5px;
    }

    body.single-post .author-info-on-blog .author-bio {
        flex-direction: column;
        align-items: center;
    }

    body.single-post .author-info-on-blog .author-bio .author-name {
        text-align: center;
    }

    #commentform .comment-form-email,
    #commentform .comment-form-author {
        width: 100%;
    }

    .travel-cta {
        width: 90%;
    }

    .steps {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .step {
        width: 90%;
    }

    .step img {
        width: 80px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .footer-bottom nav {
        justify-content: flex-start !important;
    }
}

@media only screen and (min-width: 412px){
	.page-header{
		background-position: top center;
	} 
}