/* BookForVisa blog redesign — scoped to .bfv-blog-* to avoid touching the rest of the site */

/* Karla font — same family used across the main site (assets_newdesign/fonts) */
@font-face {
	font-family: 'Karla-regular';
	src: url('../fonts/Karla-Regular.woff2') format('woff2'),
		url('../fonts/Karla-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Karla-bold';
	src: url('../fonts/Karla-Bold.woff2') format('woff2'),
		url('../fonts/Karla-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Karla-italic';
	src: url('../fonts/Karla-Italic.woff2') format('woff2'),
		url('../fonts/Karla-Italic.woff') format('woff');
	font-weight: normal;
	font-style: italic;
}

body,
body * {
	font-family: 'Karla-regular', sans-serif;
}

html,
body {
	background-color: #fff !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Karla-bold', sans-serif;
}

.bfv-site-header {
	background: #fff;
	border-bottom: 1px solid #ececf3;
    box-shadow: 0 3px 16px 0 rgb(0 0 0 / .1) !important;
    position: sticky;
    top: 0px;
    z-index: 9;
}

.bfv-site-header__inner {
	/* max-width: 1240px; */
	margin: 0 auto;
	padding: 22px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bfv-site-header__logo img {
	display: block;
	height: 30px;
	width: auto;
}

.bfv-site-header__nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
}

.bfv-site-header__nav a {
	text-decoration: none;
	color: #1f2a44;
	font-weight: 600;
	font-size: 15px;
}

.bfv-site-header__nav a:hover,
.bfv-site-header__nav a.is-active {
	color: #6059f6
}

.bfv-site-header__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
}

.bfv-site-header__toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #1f2a44;
}

@media (max-width: 782px) {
	.bfv-site-header__toggle {
		display: flex;
	}

	.bfv-site-header__nav {
		display: none;
		width: 100%;
	}

	.bfv-site-header__nav.is-open {
		display: block;
	}

	.bfv-site-header__inner {
		flex-wrap: wrap;
	}

	.bfv-site-header__nav ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		padding: 16px 0 6px;
	}
}

/* Astra makes #content .ast-container a flex row on desktop (for its sidebar layout);
   without this, our hero/heading/grid siblings would sit side-by-side instead of stacking. */
.bfv-blog-page {
	width: 100%;
	flex: 1 1 100%;
}

.bfv-blog-hero {
	/* background: #eef1fb; */
	padding: 20px 20px 28px;
	margin: 0 0 30px;
}

.bfv-blog-hero__inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.bfv-blog-hero__title {
    font-size: 29px ;
    color: #000 !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
	color: #1f2a44;
	margin: 0 0 24px;
    background: linear-gradient(to bottom, transparent 55%, rgba(186, 160, 255, .85) 55%);
    box-decoration-break: clone !important;
     -webkit-box-decoration-break: clone !important;
border-radius: 12px !important;
}

.bfv-blog-hero__title span {
	/* background: #ded0fb; */
	padding: 2px 6px;
	border-radius: 3px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.bfv-blog-search {
	display: flex;
	/* max-width: 700px; */
	margin: 0 auto 20px;
}

.bfv-blog-search__input {
	flex: 1 1 auto;
	border: 1px solid #d9d9e3;
	border-radius: 6px 0 0 6px;
	padding: 14px 18px;
	font-size: 15px;
	outline: none;
}

.bfv-blog-search__input:focus {
	border-color: #6c3cff;
}

.bfv-blog-search__btn {
	background: #6c3cff;
	border: none;
	border-radius: 0 6px 6px 0;
	padding: 0 22px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
    width:100px;
}

.bfv-blog-search__btn:hover {
	background: #6c3cff;
}

.bfv-blog-filters {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: center; */
	gap: 10px;
}

.bfv-blog-filters__pill {
	display: inline-block;
	padding: 10px 22px;
	border-radius: 6px;
	background: #fff;
	color: #1f2a44;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	border: 1px solid #e2e2ec;
	transition: background 0.15s ease, color 0.15s ease;
}

.bfv-blog-filters__pill:hover {
	border-color: #6c3ef4;
	color: #6c3ef4;
}

.bfv-blog-filters__pill.is-active {
	background: #6400e4;
	border-color: #6c3ef4;
	color: #fff;
}

.bfv-blog-heading {
	text-align: center;
	font-size: 35px;
	font-weight: 400;
	color: #1f2a44;
	margin: 10px 0 36px;    font-family: 'Karla-regular', sans-serif;


}

.bfv-blog-grid {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px 60px;
}

.bfv-blog-grid__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

@media (max-width: 900px) {
	.bfv-blog-grid__items {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.bfv-blog-grid__items {
		grid-template-columns: 1fr;
	}
	.bfv-blog-hero__title {
		font-size: 22px;
	}
}

.bfv-blog-card {
	position: relative;
	height: 460px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(31, 42, 68, 0.08);
	transition: box-shadow 0.2s ease;
}

.bfv-blog-card:hover {
	box-shadow: 0 10px 28px rgba(31, 42, 68, 0.2);
}

/* Default face: icon/photo strip on top + white body below (always in the DOM) */
.bfv-blog-card__face--default {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	background: #fff;
	opacity: 1;
	transition: opacity 0.25s ease;
}

.bfv-blog-card:hover .bfv-blog-card__face--default {
	opacity: 0;
}

.bfv-blog-card__media {
	position: relative;
	display: block;
	flex: 0 0 220px;
	background: linear-gradient(135deg, #dfe1f0, #aab0c9);
	overflow: hidden;
}

.bfv-blog-card__media[data-fallback="flight"] { background: linear-gradient(135deg, #dfe6f7, #9db3e0); }
.bfv-blog-card__media[data-fallback="hotel"] { background: linear-gradient(135deg, #e3eefc, #9cc3ef); }
.bfv-blog-card__media[data-fallback="flight-hotel"] { background: linear-gradient(135deg, #dfe1f0, #aab0c9); }
.bfv-blog-card__media[data-fallback="default"] { background: linear-gradient(135deg, #eae6f7, #b9aee0); }

.bfv-blog-card__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 12, 25, 0.65), transparent 60%);
	pointer-events: none;
}

.bfv-blog-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bfv-blog-card__icon {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 10px;
	padding: 30px;
}

.bfv-blog-card__icon svg {
	width: 100%;
	height: auto;
	max-width: 110px;
	flex: 0 1 auto;
}

.bfv-blog-card__icon svg:not(:only-child) {
	max-width: 60px;
}

.bfv-blog-card__meta,
.bfv-blog-card__hover-meta {
	position: absolute;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.bfv-blog-card__meta {
	left: 14px;
	bottom: 14px;
}

.bfv-blog-card__hover-meta {
	left: 20px;
	top: 20px;
}

.bfv-blog-card__tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
}
.bfv-blog-card__tag p{
    margin: 0;
    line-height: 15px;
}

.bfv-blog-card__tag-icon {
	display: block;
	flex: 0 0 auto;
}

.bfv-blog-card__date {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	font-weight: 500;
    margin-left: 18px;
    line-height: 7px;
}

.bfv-blog-card__body {
	padding: 20px 20px 22px;
	flex: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.bfv-blog-card__title-link {
	text-decoration: none;
}

.bfv-blog-card__title {
	font-size: 18px;
	line-height: 1.4;
	font-weight: 700;
	color: #1f2a44;
	margin: 0 0 10px;
}

.bfv-blog-card__title-link:hover .bfv-blog-card__title {
	color: #6400e4;
}

.bfv-blog-card__excerpt {
	font-size: 14px;
	line-height: 1.6;
	color: #6b7280;
	margin: 0 0 14px;
}

.bfv-blog-card__readmore {
	display: inline-block;
	align-self: flex-start;
	margin-top: auto;
	background: #6400e4;
	color: #fff;
	font-weight: 400;
	font-size: 15px;
	padding: 5px 10px;
	border-radius: 30px;
	text-decoration: none;
	transition: background 0.15s ease;
}

.bfv-blog-card__readmore:hover {
	background: #5200bd;
	color: #fff;
}

/* Hover face: full-bleed image with dark gradient + text overlay, fades in on hover */
.bfv-blog-card__face--hover {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background-color: #eef1fb;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.bfv-blog-card__face--hover[data-fallback="flight"] { background-color: #ded0fb; }
.bfv-blog-card__face--hover[data-fallback="hotel"] { background-color: #cfe4fc; }
.bfv-blog-card__face--hover[data-fallback="flight-hotel"] { background-color: #f8d9c4; }

.bfv-blog-card:hover .bfv-blog-card__face--hover {
	opacity: 1;
	pointer-events: auto;
}

/* Image zoom-in while hovering, like a slow Ken Burns push-in */
.bfv-blog-card__hover-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1);
	transition: transform 0.6s ease;
}

.bfv-blog-card:hover .bfv-blog-card__hover-bg {
	transform: scale(1.12);
}

/* Overlay lives on the same element that scales, so it zooms together with the image */
.bfv-blog-card__hover-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(30deg, rgba(26, 42, 99, .85), rgba(26, 42, 99, .5));
}

.bfv-blog-card__hover-content {
	position: relative;
	z-index: 1;
	padding: 24px;
	width: 100%;
	transform: translateY(16px);
	transition: transform 0.35s ease 0.05s;
}

.bfv-blog-card:hover .bfv-blog-card__hover-content {
	transform: translateY(0);
}

.bfv-blog-card__hover-title {
	color: #fff;
	font-size: 19px;
	line-height: 1.4;
	font-weight: 700;
	margin: 0 0 10px;
}

.bfv-blog-card__hover-excerpt {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 16px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bfv-blog-card__hover-content .bfv-blog-card__readmore {
	background: #fff;
	color: #6400e4;
}

.bfv-blog-card__hover-content .bfv-blog-card__readmore:hover {
	background: #ede4fb;
	color: #6400e4;
}

.bfv-blog-pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.bfv-blog-pagination__inner {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	box-shadow: 0 1px 3px rgba(16, 24, 40, 0.05);
	padding: 6px;
}

.bfv-blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	margin: 0;
	padding: 0 4px;
	border-radius: 6px;
	background: transparent;
	border: none;
	color: #2f6fed;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}

.bfv-blog-pagination .page-numbers.current {
	background: #2f6fed;
	color: #fff;
}

.bfv-blog-pagination .page-numbers:hover:not(.current) {
	background: #eef3ff;
	color: #2f6fed;
}

.bfv-blog-pagination .page-numbers.dots {
	color: #9aa3b2;
	background: transparent;
	cursor: default;
}

.bfv-blog-pagination .page-numbers.prev,
.bfv-blog-pagination .page-numbers.next {
	color: #9aa3b2;
	font-weight: 400;
	font-size: 18px;
}

.bfv-blog-pagination .page-numbers.prev:hover,
.bfv-blog-pagination .page-numbers.next:hover {
	background: transparent;
	color: #2f6fed;
}

.bfv-blog-empty {
	text-align: center;
	color: #6b7280;
	font-size: 16px;
	padding: 60px 0;
}
input.bfv-blog-search__input
 {
    padding: 12px 120px 12px 12px;
    height:47px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
        font-family: 'Karla-bold', sans-serif;


}
.bfv-search_section{
    padding: 10px;
    max-width: 800px;
    margin: auto;
}
@media (min-width: 1200px) {
    .bfv-site-header__inner {
        max-width: 1140px;
    }
}

/* @media (min-width: 992px) {
    .bfv-site-header__inner {
        max-width: 960px;
    }
}
@media (min-width: 768px) {
    .bfv-site-header__inner {
        max-width: 720px;
    }
} */
/* @media (min-width: 576px) {
    .bfv-site-header__inner {
        max-width: 540px;
    }
} */
/* .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
} */

/* ==========================================================================
   Single blog post — two-column layout + content typography
   Scoped to .bfv-post-* / .single-post so nothing else is touched.
   ========================================================================== */

.single-post .site-content .ast-container {
	max-width: 1540px;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
}

.bfv-post-layout {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	width: 100%;
	padding: 30px 20px 60px;
}

.bfv-post-layout #primary {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
}

.bfv-post-sidebar {
	flex: 0 0 560px;
	width: 560px;
}

/* .bfv-post-sidebar__toc {
	position: sticky;
	top: 24px;
} */
li.bfv-related-posts__item {
    background: #fff;
    box-shadow: 0 0 7px #ccc;
    margin: 10px 0 5px;
    padding: 8px 10px;
    border-radius: 10px;
}
.bfv-post-toc {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(16, 24, 40, 0.05);
	padding: 20px 22px;
}

.bfv-post-toc h2 {
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #1f2a44 !important;
	margin: 0 0 12px !important;
	padding: 0 !important;
	border: none !important;
}

.bfv-post-toc ol {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: bfv-toc;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bfv-post-toc ol li {
	counter-increment: bfv-toc;
	padding-left: 26px;
	position: relative;
	font-size: 13px;
	line-height: 1.5;
}

.bfv-post-toc ol li::before {
	content: counter(bfv-toc);
	position: absolute;
	left: 0;
	top: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #ede4fb;
	color: #6400e4;
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bfv-post-toc ol a {
	color: #4b5563;
	text-decoration: none;
	font-weight: 500;
}

.bfv-post-toc ol a:hover {
	color: #6400e4;
}

.bfv-related-posts {
	background: #fff;
	/* border: 1px solid #e5e7eb; */
	border-radius: 12px;
	/* box-shadow: 0 2px 10px rgba(16, 24, 40, 0.05); */
	/* padding: 20px 22px; */
	margin-top: 20px;
}

.bfv-related-posts__title {
	font-size: 16px;
	font-weight: 700;
	color: #6400e4;
	margin: 0 0 16px;
}

.bfv-related-posts__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.bfv-related-posts__item + .bfv-related-posts__item {
	padding-top: 14px;
	border-top: 1px solid #f0f0f4;
}

.bfv-related-posts__link {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	text-decoration: none;
}

.bfv-related-posts__thumb {
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	border-radius: 8px;
	overflow: hidden;
	background: linear-gradient(135deg, #eae6f7, #b9aee0);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bfv-related-posts__thumb svg {
	width: 60%;
	height: auto;
}

.bfv-related-posts__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bfv-related-posts__body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.bfv-related-posts__post-title {
	font-size: 15px;
	font-weight: 600;
	color: #1f2a44;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bfv-related-posts__link:hover .bfv-related-posts__post-title {
	color: #1e87f0;
    text-decoration: underline;

}

.bfv-related-posts__date {
	font-size: 12px;
	color: #9aa3b2;
}
.bfv-related-posts__link:hover .bfv-related-posts__date  {
    text-decoration: underline;

}

@media (max-width: 992px) {
	.bfv-post-layout {
		flex-direction: column;
	}

	.bfv-post-sidebar {
		order: -1;
		flex-basis: auto;
		width: 100%;
	}

	.bfv-post-sidebar__toc {
		position: static;
	}
}

/* Content typography */
.single-post .entry-content {
	font-size: 16px;
	line-height: 1.75;
	color: #3f4557;
}

.single-post .entry-content > h2 {
	font-size: 24px;
	font-weight: 700;
	color: #1f2a44;
	margin: 40px 0 18px;
	padding-left: 14px;
	border-left: 4px solid #6400e4;
}

.single-post .entry-content > h3 {
	font-size: 19px;
	font-weight: 700;
	color: #1f2a44;
	margin: 28px 0 14px;
}

.single-post .entry-content > h4 {
	font-size: 16px;
	font-weight: 700;
	color: #1f2a44;
	margin: 22px 0 10px;
}

.single-post .entry-content > p {
	margin: 0 0 18px;
}

.single-post .entry-content a {
	color: #1e87f0;
	text-decoration: underline;
}

.single-post .entry-content ul,
.single-post .entry-content ol {
	margin: 0 0 18px;
	padding-left: 22px;
}

.single-post .entry-content li {
	margin-bottom: 8px;
}

.single-post .entry-content figure {
	margin: 24px 0;
}

.single-post .entry-content figure img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
	box-shadow: 0 4px 18px rgba(16, 24, 40, 0.1);
}

.single-post .entry-content figcaption {
	margin-top: 8px;
	font-size: 13px;
	color: #8a90a2;
	text-align: center;
}

/* ==========================================================================
   Single post hero — title + category illustration (left) and the static
   flight/hotel search widget (right). Scoped to .bfv-post-hero only.
   ========================================================================== */

.single-post .entry-header,
.single-post .entry-meta {
	display: none;
}

/* Same fix as .bfv-blog-page: Astra's .ast-container is a flex row for its
   direct children, so the hero and content blocks need one wrapper to stack. */
.bfv-post-page {
	width: 100%;
	flex: 1 1 100%;
}

.bfv-post-hero {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	/* max-width: 1180px; */
	margin: 0 auto;
	padding: 30px 20px 0;
}

.bfv-post-hero__main {
	flex: 1 1 auto;
	min-width: 0;
}

.bfv-post-hero__title {
	font-size: 32px;
	font-weight: 400;
	color: #1f2a44;
	line-height: 1.3;
	margin: 0 0 24px;
	font-family: 'Karla-regular', sans-serif;

}

.bfv-post-hero__media {
	position: relative;
	border-radius: 16px;
	background: linear-gradient(135deg, #eae6f7, #b9aee0);
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.bfv-post-hero__img {
	width: 100%;
	height: 100%;
	max-height: 420px;
	object-fit: cover;
	display: block;
}

.bfv-post-hero__icon {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 24px;
	padding: 40px;
}

.bfv-post-hero__icon svg {
	width: 100%;
	height: auto;
	max-width: 160px;
}

.bfv-post-hero__icon svg:not(:only-child) {
	max-width: 100px;
}

.bfv-post-hero__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
	color: #6b7280;
	font-size: 14px;
	font-weight: 500;
}

.bfv-post-hero__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.bfv-post-hero__meta-sep {
	color: #d1d5db;
}

@media (max-width: 992px) {
	.bfv-post-hero {
		flex-direction: column;
	}
}

/* Flight/hotel search widget */
.bfv-flight-widget {
	flex: 0 0 560px;
	width: 560px;
	background: #fff;
	border: 1px solid #6400e4;
	border-radius: 20px;
box-shadow: 0 0 2px #6400e4;
	padding: 22px;
}

@media (max-width: 992px) {
	.bfv-flight-widget {
		width: 100%;
		flex-basis: auto;
	}
}

.bfv-flight-widget__tabs {
	display: flex;
	background: #f4f6ff;
	border-radius: 999px;
	/* padding: 5px; */
	gap: 4px;
	margin-bottom: 20px;
}

.bfv-flight-widget__tab {
	flex: 1 1 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 20px 0;
	border-radius: 999px;
	font-weight: 400;
	font-size: 16px;
	color: #6400e4;
	cursor: pointer;
	border: none;
	background: transparent;
	 font-family: 'Karla-regular', sans-serif;
     box-shadow: none;
}

.bfv-flight-widget__tab:hover,.bfv-flight-widget__trip:hover{
    background-color: inherit!important;
	color: #6400e4;

}
.bfv-flight-widget__tab.is-active {
	background: #6400e4;
	color: #fff;
}

.bfv-flight-widget__trip-types {
	display: flex;
	gap: 10px;
	margin-bottom: 22px;
    justify-content: center;
}

.bfv-flight-widget__trip {
  /* flex: 1 1 0; */
    text-align: center;
    padding: 14px 15px;
    border-radius: 999px;
    background: #f1eefe;
    color: #6400e4;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    border: none;
    font-family: 'Karla-regular', sans-serif;
}

.bfv-flight-widget__trip.is-active {
	background: #6400e4;
	color: #fff;
}

.bfv-flight-widget__row {
	display: flex;
	gap: 30px;
	margin-bottom: 16px;
	position: relative;
}

.bfv-flight-widget__field {
	flex: 1 1 0;
	min-width: 0;
}

/* Floating label (Material-style): the label sits centered over the input
   until it's focused or has a value, then shrinks and floats to the top. */
.bfv-flight-widget__input {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #e2e2ec;
	border-radius: 10px;
	padding: 0 14px;
	height: 52px;
	background: #fff;
}

.bfv-flight-widget__input svg {
	flex: 0 0 auto;
	position: relative;
	z-index: 1;
}

.bfv-flight-widget__input input,
.bfv-flight-widget__input select {
	border: none;
	outline: none;
	flex: 1 1 auto;
	font-size: 13px;
	color: #1f2a44;
	background: transparent;
	width: 100%;
	height: 100%;
	min-width: 0;
	font-family: inherit;
	appearance: none;
	padding-top: 15px;
	position: relative;
	z-index: 1;
}

.bfv-flight-widget__input input::placeholder {
	color: transparent;
}

.bfv-flight-widget__input input:focus::placeholder {
	color: #b7bec9;
}

.bfv-flight-widget__input label {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 13px;
	font-weight: 600;
	color: #9aa3b2;
	background: transparent;
	pointer-events: none;
	white-space: nowrap;
	transition: top 0.15s ease, font-size 0.15s ease, color 0.15s ease, font-weight 0.15s ease;
	z-index: 2;
}

.bfv-flight-widget__field--icon .bfv-flight-widget__input label {
	left: 38px;
}

.bfv-flight-widget__input input:focus + label,
.bfv-flight-widget__input input:not(:placeholder-shown) + label,
.bfv-flight-widget__input select:focus + label,
.bfv-flight-widget__field--select .bfv-flight-widget__input label {
	top: -14px;
    transform: translateY(0);
    font-size: 13px;
    font-weight: 700;
    color: #141c3a;
    left: 10px;
    background: #fff;
    padding: 4px 6px;
}

.bfv-flight-widget__clear {
	color: #9aa3b2;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	flex: 0 0 auto;
	position: relative;
	z-index: 1;
}

.bfv-flight-widget__swap {
	position: absolute;
	left: 50%;
	top: 40px;
	transform: translate(-50%, -50%);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background:transparent;
	/* border: 1px solid #6400e4; */
	color: #6400e4;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	padding: 0;
    box-shadow:none;
}

.bfv-flight-widget__search {
	width: 100%;
	border: none;
	border-radius: 999px;
	background: #6400e4;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.03em;
	padding: 16px 0;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 12px 25px rgba(100, 0, 228, 0.45);
	margin-top: 6px;
	font-family: inherit;
}

/* Panel + state switching: Flight/Hotel tabs and the trip-type sub-tabs. */
.bfv-flight-widget__panel--hotel {
	display: none;
}

.bfv-flight-widget[data-active-tab="hotel"] .bfv-flight-widget__panel--flight,
.bfv-flight-widget[data-active-tab="hotel"] .bfv-flight-widget__trip-types {
	display: none;
}

.bfv-flight-widget[data-active-tab="hotel"] .bfv-flight-widget__panel--hotel {
	display: block;
}

.bfv-flight-widget__add-city {
	display: none;
}

.bfv-flight-widget[data-active-trip="multi-city"] .bfv-flight-widget__return-date {
	display: none;
}

.bfv-flight-widget[data-active-trip="multi-city"] .bfv-flight-widget__add-city {
	display: block;
}

.bfv-flight-widget[data-active-trip="one-way"] .bfv-flight-widget__return-date {
	display: none;
}

/* "+ Add More Cities" / "+ Add another cities" link */
.bfv-flight-widget__link-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: none;
	background: transparent;
	color: #2f6fed;
	font-size: 13px;
	font-weight: 600;
	padding: 0;
	cursor: pointer;
	font-family: inherit;
}

.bfv-flight-widget__row--single.bfv-flight-widget__add-city {
	margin-bottom: 16px;
}

/* Exclude Transit — searchable dropdown */
.bfv-flight-widget__field--combobox {
	position: relative;
}

.bfv-flight-widget__combobox-list {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 5;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: #fff;
	border: 1px solid #e2e2ec;
	border-radius: 10px;
	box-shadow: 0 10px 25px rgba(16, 24, 40, 0.12);
	max-height: 220px;
	overflow-y: auto;
}

.bfv-flight-widget__combobox-list li {
	padding: 8px 10px;
	font-size: 13px;
	color: #1f2a44;
	border-radius: 6px;
	cursor: pointer;
}

.bfv-flight-widget__combobox-list li:hover {
	background: #f1eefe;
	color: #6400e4;
}
.bfv-post-layout #primary{
    margin-top:0
}
.single-layout-1 .wp-block-heading{
    margin:0
}
.ast-article-single{
    padding:0!important
}
button:hover{
    background-color: inherit;
	color: #6400e4;
}

/* ==========================================================================
   Custom dark footer — blog listing page + single blog post page only
   (see footer.php). Scoped entirely to .bfv-site-footer.
   ========================================================================== */

.bfv-site-footer {
	background: #141c3a;
	color: #fff;
	padding: 60px 0px 0;
}

.bfv-site-footer__top {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	gap: 60px;
	padding-bottom: 50px;
}

.bfv-site-footer__col {
	flex: 1 1 0;
	min-width: 0;
}

.bfv-site-footer__heading {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #fff;
	margin: 0 0 18px;
}

.bfv-site-footer__desc {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 26px;
	max-width: 480px;
}

.bfv-site-footer__badges {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
}

.bfv-site-footer__badges li {
	/* background: #fff; */
	border-radius: 6px;
	padding: 8px 10px;
	display: flex;
	align-items: center;
}

.bfv-site-footer__badges img {
	display: block;
	height: 26px;
	width: auto;
}

.bfv-site-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.bfv-site-footer__contact li {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 15px;
	color: #fff;
}

.bfv-site-footer__contact a {
	color: #fff;
	text-decoration: none;
}

.bfv-site-footer__contact a:hover {
	text-decoration: underline;
}

.bfv-site-footer__icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bfv-site-footer__bottom {

	max-width: 1180px;
	margin: 0 auto;
	padding: 22px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.bfv-site-footer__payments,
.bfv-site-footer__legal {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.bfv-site-footer__payments {
	gap: 10px;
}

.bfv-site-footer__payments img {
	display: block;
	height: 24px;
	width: auto;
}

.bfv-site-footer__legal {
	justify-content: flex-end;
	gap: 18px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

.bfv-site-footer__legal a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}

.bfv-site-footer__legal a:hover {
	color: #fff;
}
input:focus, input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="reset"]:focus, input[type="search"]:focus, input[type="number"]:focus, textarea:focus, .wp-block-search__input:focus{
    border:none
}
@media (max-width: 900px) {
	.bfv-site-footer__top {
		flex-direction: column;
		gap: 40px;
	}

	.bfv-site-footer__legal {
		justify-content: flex-start;
	}
}

