/**
 * Fizzly CMS — standalone styles (no DSA/Travel360 theme dependency)
 */

:root {
	--blue: #44b3d0;
	--royal: #5696d1;
	--aqua: #47b4ca;
	--teal: #4fb7b9;
	--mint: #57bbab;
	--header-color: #1e4a5f;
	--text-color: #5a7a8a;
	--cloud: #eef9fc;
	--white: #ffffff;
	--pool-light: #d4eef5;
	--pool-mid: #a8dce8;
	--pool-deep: #7ec8de;
	--shadow: 0 8px 28px rgba(86, 150, 209, 0.1);
	--radius: 12px;
	--fizzly-gradient: linear-gradient(135deg, #d4eef5 0%, #a8dce8 45%, #7ec8de 100%);
	--fizzly-overlay: linear-gradient(120deg, rgba(86, 150, 209, 0.82) 0%, rgba(68, 179, 208, 0.72) 55%, rgba(79, 183, 185, 0.65) 100%);
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
	color: var(--text-color);
	background: var(--white);
	line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--royal); }

h1, h2, h3, h4, h5, h6 {
	color: var(--header-color);
	line-height: 1.2;
	margin-top: 0;
}

p { margin-top: 0; }

.clearfix::after { content: ""; display: table; clear: both; }

.container-xxl {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.division { position: relative; }

/* Typography helpers */
.main-font { font-weight: 600; color: var(--header-color); }
.fs-72 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
.fs-56, .fs-54, .fs-52 { font-size: clamp(1.75rem, 3.5vw, 3.25rem); }
.fs-48 { font-size: clamp(1.6rem, 3vw, 3rem); }
.fs-42 { font-size: clamp(1.5rem, 2.5vw, 2.625rem); }
.fs-36 { font-size: 1.75rem; }
.fs-34 { font-size: 1.65rem; }
.fs-32 { font-size: 1.5rem; }
.fs-26, .fs-25, .fs-24 { font-size: 1.35rem; }
.fs-23 { font-size: 1.25rem; }
.fs-22 { font-size: 1.15rem; }
.fs-19, .fs-18, .fs-17 { font-size: 1.05rem; }
.fs-16 { font-size: 1rem; }
.fs-15 { font-size: 0.95rem; }
.fs-13 { font-size: 0.85rem; }
.fs-12 { font-size: 0.75rem; }

.ls-1px { letter-spacing: 1px; }
.mx-30 { margin-left: 1.5rem; margin-right: 1.5rem; }

/* Spacing */
.pt-100 { padding-top: 5rem; }
.pt-120 { padding-top: 6rem; }
.pb-100 { padding-bottom: 5rem; }
.pb-120 { padding-bottom: 6rem; }
.py-80 { padding-top: 4rem; padding-bottom: 4rem; }
.py-100 { padding-top: 5rem; padding-bottom: 5rem; }
.py-120 { padding-top: 6rem; padding-bottom: 6rem; }
.mt-15 { margin-top: 0.75rem; }
.mt-25 { margin-top: 1.25rem; }
.mt-30 { margin-top: 1.5rem; }
.mt-60 { margin-top: 3rem; }
.mb-15 { margin-bottom: 0.75rem; }
.mb-20 { margin-bottom: 1rem; }
.mb-30 { margin-bottom: 1.5rem; }
.mb-50 { margin-bottom: 2.5rem; }
.mb-60 { margin-bottom: 3rem; }
.mb-70 { margin-bottom: 3.5rem; }
.mb-0 { margin-bottom: 0 !important; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.r-08 { border-radius: 8px; }
.r-12, .r-14 { border-radius: var(--radius); }
.r-20 { border-radius: 20px; }

/* Colors */
.color--blue { color: var(--blue) !important; }
.color--white { color: #fff !important; }
.color--header { color: var(--header-color) !important; }
.color--grey { color: var(--text-color) !important; }
.color--metal { color: var(--header-color) !important; }
.color--yellow { color: #f5b301; }

.bg--white { background: var(--white) !important; }
.bg--cloud { background: var(--cloud) !important; }
.bg--royal { background: var(--royal) !important; }
.bg--whitesmoke { background: #f5f8fa !important; }
.bg--scroll { background-attachment: scroll; }

.border-bottom { border-bottom: 1px solid rgba(86, 150, 209, 0.15); }
.border-smoke { border-color: rgba(86, 150, 209, 0.2) !important; }

.block--shadow { box-shadow: var(--shadow); }
.block--border { border: 1px solid rgba(86, 150, 209, 0.12); }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	border: 2px solid transparent;
	cursor: pointer;
	transition: 0.2s ease;
}

.btn-md { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 0.9rem; }

.btn--blue {
	background: var(--blue) !important;
	border-color: var(--blue) !important;
	color: #fff !important;
}

.btn--blue:hover {
	background: var(--royal) !important;
	border-color: var(--royal) !important;
	color: #fff !important;
}

.btn--tra-black {
	background: transparent;
	border-color: var(--header-color);
	color: var(--header-color);
}

.hover--blue:hover {
	color: var(--blue) !important;
	border-color: var(--blue) !important;
}

.tra-link {
	font-weight: 600;
	color: var(--blue);
}
.tra-link:hover { text-decoration: underline; }

/* Header / nav */
#header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(86, 150, 209, 0.12);
}

.header-wrapper { position: relative; }

.wsmobileheader {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1rem;
}

.desktoplogo { display: none; }
.logo-white { display: none; }
.logo-black { display: block; }

.wsmainfull { display: none; }

.wsmainfull.is-open { display: block; }

.wsmainwp {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 0;
}

.wsmenu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem 1rem;
}

.wsmenu-list > li { position: relative; }

.wsmenu-list .h-link,
.wsmenu-list a.h-link {
	color: var(--header-color);
	font-weight: 500;
	padding: 0.5rem 0;
	display: inline-block;
}

.wsmenu-list .h-link:hover { color: var(--blue); }

.sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 0.5rem 0;
	list-style: none;
	margin: 0;
	z-index: 20;
}

.wsmenu-list > li:hover > .sub-menu { display: block; }

.sub-menu li a {
	display: block;
	padding: 0.55rem 1rem;
	color: var(--header-color);
}

.sub-menu li a:hover { background: var(--cloud); color: var(--blue); }

.wsmegamenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	box-shadow: var(--shadow);
	border-radius: var(--radius);
	padding: 1.5rem;
	z-index: 20;
}

.mg_link:hover > .wsmegamenu { display: block; }

.megamenu-item {
	padding: 0.75rem;
	border-radius: var(--radius);
	transition: background 0.2s;
}

.megamenu-item:hover { background: var(--cloud); }

.wsanimated-arrow {
	width: 28px;
	height: 22px;
	position: relative;
	cursor: pointer;
}

.wsanimated-arrow span,
.wsanimated-arrow::before,
.wsanimated-arrow::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--header-color);
	transition: 0.2s;
}

.wsanimated-arrow span { top: 10px; }
.wsanimated-arrow::before { top: 4px; }
.wsanimated-arrow::after { top: 16px; }

@media (min-width: 992px) {
	.wsmobileheader { display: none; }
	.desktoplogo { display: block; }
	.desktoplogo + .desktoplogo { display: none; }
	.wsmainfull { display: block !important; }
	.wsmainwp { padding: 0.5rem 0; }
}

/* Hero */
.hero-1.hero-section {
	background: var(--fizzly-gradient);
	padding: 4rem 0 3rem;
}

.hero-1 h2, .hero-1 p, .hero-1 .advantages li p {
	color: var(--header-color);
}

.tag-widget { margin-bottom: 1.5rem; }

.tag-widget a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 0.75rem 0.35rem 0.35rem;
	border-radius: 999px;
}

.tag-widget .bg--royal {
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	font-size: 0.85rem;
}

.hero-1-img {
	margin-top: 2rem;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.hero-1-img img {
	width: 100%;
	min-height: 200px;
	object-fit: cover;
	background: linear-gradient(135deg, #cceef5, #e3f4f8);
}

.advantages {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 2rem;
}

.advantages li p { margin: 0; font-weight: 500; }

/* Section titles */
.section-title h2 { margin-bottom: 0; }
.section-txt p { margin-bottom: 0; }

.module-subtitle {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--blue);
	margin-bottom: 0.75rem;
}

.subtitle-lined.line-blue {
	padding-left: 1rem;
	border-left: 3px solid var(--blue);
}

.title-01, .title-03 { text-align: left; }

/* Feature boxes */
.fbox-3, .fbox-2 {
	padding: 1.5rem;
	box-shadow: var(--shadow);
	border: 1px solid rgba(86, 150, 209, 0.08);
}

.fbox-3-img, .fbox-2-img {
	overflow: hidden;
	margin-bottom: 1rem;
	min-height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--cloud);
}

.fbox-3-img img, .fbox-2-img img {
	width: 100%;
	object-fit: cover;
	background: linear-gradient(135deg, #e3f4f8, #cceef5);
}

.fbox-txt p:last-child { margin-bottom: 0; }

/* Content sections */
.txt-block, .img-block { padding: 1rem 0; }

.cbox-1, .cbox-5 {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.cbox-1-ico, .cbox-5-ico {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--cloud);
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.users-widget .users {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

/* Brands */
.brands-title { text-align: center; margin-bottom: 2rem; }
.brands-title p { color: var(--header-color); font-weight: 600; }

.loop_carousel_left {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	align-items: center;
}

.carousel_slide img {
	max-height: 48px;
	width: auto;
	opacity: 0.7;
	filter: grayscale(20%);
}

.carousel_slide:hover img { opacity: 1; }

hr.divider {
	border: none;
	border-top: 1px solid rgba(86, 150, 209, 0.15);
	margin: 0;
}

/* Reviews */
.review-2 {
	padding: 1.5rem;
	margin: 0.5rem;
	border-radius: var(--radius);
}

.review-author { display: flex; align-items: center; gap: 0.75rem; margin: 1rem 0; }
.review-avatar img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--cloud); }
.review-source img { max-height: 28px; width: auto; }

.reviews-carousel {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
}

/* Awards */
.awards-wrapper p { color: var(--header-color); font-weight: 600; }
.awards-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.award-badge img { max-height: 64px; width: auto; }

/* Banner */
.banner-1-wrapper { overflow: hidden; }
.banner-overlay {
	padding: 4rem 2rem;
	border-radius: 20px;
	background: var(--fizzly-overlay);
	color: #fff;
	text-align: center;
}

.banner-1-txt h2, .banner-1-txt p { color: #fff; }

/* FAQ accordion */
.accordion { list-style: none; padding: 0; margin: 0; }

.accordion-item {
	border: 1px solid rgba(86, 150, 209, 0.15);
	border-radius: var(--radius);
	margin-bottom: 0.75rem;
	overflow: hidden;
	background: #fff;
}

.accordion-thumb {
	padding: 1.1rem 1.25rem;
	cursor: pointer;
	font-weight: 600;
	color: var(--header-color);
	position: relative;
}

.accordion-thumb::after {
	content: "+";
	position: absolute;
	right: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--blue);
	font-size: 1.4rem;
}

.accordion-item.is-active .accordion-thumb::after { content: "−"; }

.accordion-panel {
	display: none;
	padding: 0 1.25rem 1.25rem;
	color: var(--text-color);
}

.accordion-item.is-active .accordion-panel { display: block; }
.accordion-item.is-active .accordion-thumb { color: var(--blue); }

/* Footer */
.footer-1.footer {
	background: var(--cloud);
	padding-top: 4rem;
}

.footer-logo { max-height: 40px; width: auto; margin-bottom: 1rem; }

.footer-socials {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 0.75rem;
}

.footer-socials a {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--blue);
}

.footer-links .row { row-gap: 1.5rem; }

.bottom-footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-end;
	gap: 1.5rem;
}

.bottom-footer-list p { margin: 0; }

.footer hr {
	border: none;
	border-top: 1px solid rgba(86, 150, 209, 0.15);
	margin: 2rem 0;
}

/* Blog / support / pages hero */
.support-hero,
.blog-hero,
.page-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-color: var(--pool-mid);
	padding: 8rem 0 5rem;
	min-height: 280px;
	display: flex;
	align-items: center;
}

.support-hero-overlay,
.blog-hero-overlay,
.page-hero-overlay {
	position: absolute;
	inset: 0;
	background: var(--fizzly-overlay);
}

.support-hero .container-xxl,
.blog-hero .container-xxl,
.page-hero .container-xxl {
	position: relative;
	z-index: 2;
}

.support-hero-badge,
.blog-hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	font-size: 0.85rem;
	text-transform: uppercase;
	padding: 8px 16px;
	border-radius: 999px;
	margin-bottom: 1rem;
}

.support-cat-card {
	background: #fff;
	border-radius: var(--radius);
	padding: 2rem 1.5rem;
	box-shadow: var(--shadow);
	border: 1px solid rgba(86, 150, 209, 0.1);
	height: 100%;
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s;
}

.support-cat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(68, 179, 208, 0.15);
}

.blog-post, .posts-wrapper .blog-post {
	margin-bottom: 2rem;
}

.blog-post-txt a { color: var(--header-color); font-weight: 600; }
.blog-post-txt a:hover { color: var(--blue); }

.post-meta-list {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 1rem;
	font-size: 0.9rem;
	color: var(--text-color);
}

.simple-list { list-style: none; padding: 0; }
.simple-list .list-item { padding: 0.75rem 0; border-bottom: 1px solid rgba(86, 150, 209, 0.12); }

/* Stat blocks */
.statistic-block { text-align: center; padding: 1rem; }
.statistic-block span { display: block; font-size: 2.5rem; font-weight: 700; color: var(--blue); }

/* Hide broken image alt boxes */
img[src=""], img:not([src]) { opacity: 0; min-height: 0; }

/* Preloader removed — keep hidden if present */
#loading { display: none !important; }

@media (max-width: 991.98px) {
	.wsmainfull {
		background: #fff;
		border-top: 1px solid rgba(86, 150, 209, 0.12);
		padding: 0 1rem 1rem;
	}

	.wsmenu-list {
		flex-direction: column;
		align-items: stretch;
	}

	.sub-menu, .wsmegamenu {
		position: static;
		box-shadow: none;
		padding-left: 1rem;
	}

	.bottom-footer-list { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 767.98px) {
	.pt-120, .py-120 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
	.hero-1.hero-section { padding-top: 2.5rem; }
}

/* Flaticon fallbacks (font not loaded) */
[class^="flaticon-"], [class*=" flaticon-"] {
	font-style: normal;
	display: inline-block;
	line-height: 1;
}

.flaticon-next-1::before { content: "→"; }
.flaticon-check-1::before { content: "✓"; font-weight: 700; }
.flaticon-union::before { content: "◆"; }
.flaticon-robot::before { content: "⚙"; }
.flaticon-chat-2::before { content: "💬"; font-size: 1.5rem; }
.flaticon-workflow::before { content: "📋"; font-size: 1.5rem; }
.flaticon-payment::before { content: "💳"; font-size: 1.5rem; }
.flaticon-users::before { content: "👥"; font-size: 1.5rem; }
.flaticon-calculator::before { content: "🧮"; font-size: 1.5rem; }
.flaticon-settings::before { content: "⚙"; font-size: 1.5rem; }
.flaticon-help::before { content: "?"; font-weight: 700; font-size: 1.5rem; }
.flaticon-folder::before { content: "📁"; font-size: 1.5rem; }

.support-cat-icon [class^="flaticon-"]::before {
	font-size: 2rem;
}
