/* ═══════════════════════════════════════════════════════════
   WaterBird Elementor Widgets — shared stylesheet
   Each widget's rules live in their own namespaced block below.
   Add new widget styles under a new comment block, don't touch
   existing ones, so nothing here ever collides across widgets.
   ═══════════════════════════════════════════════════════════ */

/* ── Solutions Category (wbw-solutions-category) ───────────── */

.wbw-cat {
	font-family: 'Poppins', sans-serif;
	margin-bottom: 64px;
}
.wbw-cat:last-child {
	margin-bottom: 0;
}

.wbw-cat-head {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0 24px;
	align-items: start;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 2px solid rgba(17, 76, 95, .08);
}

.wbw-cat-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--teal, #114c5f), var(--tl, #1e88a8));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}
.wbw-cat-icon img {
	width: 26px;
	height: 26px;
	object-fit: contain;
}
.wbw-cat-icon svg {
	width: 26px;
	height: 26px;
	stroke: #fff;
	stroke-width: 1.8;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.wbw-cat-text h3 {
	font-family: 'Inter', sans-serif;
	font-size: clamp(20px, 2.5vw, 28px);
	font-weight: 700;
	letter-spacing: -.5px;
	color: var(--tx, #0f2027);
	margin: 0 0 8px;
}
.wbw-cat-text p {
	font-size: 15px;
	line-height: 1.72;
	color: var(--mu, #5a6b72);
	margin: 0;
}

/* Cards grid — 4 columns by default, overridden per-instance by the
   Layout > Columns control via inline selector on .wbw-cards */
.wbw-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.wbw-card {
	background: #fff;
	border: 1px solid var(--bd, rgba(17, 76, 95, .1));
	border-radius: 14px;
	padding: 22px 20px;
	position: relative;
	overflow: hidden;
	transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s, border-color .25s;
}
.wbw-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--sh-md, 0 12px 28px rgba(17, 76, 95, .12));
	border-color: var(--bh, var(--tl, #1e88a8));
}
.wbw-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, var(--tl, #1e88a8), var(--teal, #114c5f));
	transform: scaleY(0);
	transform-origin: top;
	transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
.wbw-card:hover::before {
	transform: scaleY(1);
}

.wbw-card-img {
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 10px;
	overflow: hidden;
	margin: -2px -1px 16px;
	width: calc(100% + 2px);
}
.wbw-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wbw-card h4 {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -.25px;
	color: var(--tx, #0f2027);
	margin: 0 0 9px;
	transition: color .2s;
}
.wbw-card:hover h4 {
	color: var(--teal, #114c5f);
}
.wbw-card p {
	font-size: 13px;
	line-height: 1.62;
	color: var(--mu, #5a6b72);
	margin: 0;
}

@media (max-width: 1024px) {
	.wbw-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 960px) {
	.wbw-cat-head {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 580px) {
	.wbw-cards {
		grid-template-columns: 1fr;
	}
	.wbw-cat-icon {
		display: none;
	}
}

/* ── Hero Section (wbw-hero-section) ────────────────────────── */

.wbw-hero {
	position: relative;
	color: #fff;
	padding: clamp(90px, 12vh, 140px) 24px clamp(70px, 9vh, 110px);
	overflow: hidden;
	isolation: isolate;
	font-family: 'Poppins', sans-serif;
	text-align: center;
	background: #070f14;
}
.wbw-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(900px 600px at 15% 50%, rgba(17, 76, 95, .55), transparent 65%),
		radial-gradient(700px 500px at 85% 20%, rgba(30, 136, 168, .18), transparent 65%),
		radial-gradient(800px 700px at 50% 110%, rgba(10, 55, 68, .55), transparent 60%);
}
.wbw-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(126, 212, 232, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(126, 212, 232, .04) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(ellipse at 50% 50%, #000 20%, transparent 75%);
}

.wbw-hero-in {
	position: relative;
	z-index: 2;
	max-width: 820px;
	margin: 0 auto;
}

.wbw-hero-crumb {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	letter-spacing: 1.5px;
	color: rgba(126, 212, 232, .65);
	margin-bottom: 20px;
}
.wbw-hero-crumb a {
	color: rgba(126, 212, 232, .65);
	text-decoration: none;
}
.wbw-hero-crumb a:hover {
	color: #7ed4e8;
}
.wbw-hero-crumb-sep {
	margin: 0 8px;
	color: rgba(126, 212, 232, .35);
}
.wbw-hero-crumb [aria-current="page"] {
	color: rgba(200, 220, 226, .85);
}

.wbw-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(126, 212, 232, .08);
	color: #7ed4e8;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	padding: 8px 16px;
	border-radius: 30px;
	margin-bottom: 24px;
	border: 1px solid rgba(126, 212, 232, .2);
}
.wbw-hero-eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #7ed4e8;
	box-shadow: 0 0 8px #7ed4e8;
	animation: wbwHeroPulse 2.2s ease-in-out infinite;
}
@keyframes wbwHeroPulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: .4;
		transform: scale(1.5);
	}
}

.wbw-hero h1 {
	font-family: 'Inter', sans-serif;
	font-size: clamp(30px, 5vw, 60px);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -1.5px;
	color: #fff;
	margin: 0 0 18px;
}
.wbw-hero h1 em {
	font-style: normal;
	background: linear-gradient(135deg, #fff 0%, #7ed4e8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.wbw-hero-sub {
	font-size: clamp(14px, 1.6vw, 18px);
	line-height: 1.72;
	color: rgba(200, 220, 226, .72);
	margin: 0 auto 20px;
	max-width: 720px;
}
.wbw-hero-sub:last-of-type {
	margin-bottom: 36px;
}

.wbw-hero-btns {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.wbw-hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 14px 30px;
	border-radius: 9px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: transform .2s;
}
.wbw-hero-btn:hover {
	transform: translateY(-2px);
}
.wbw-hero-btn svg {
	width: 16px;
	height: 16px;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
}

.wbw-hero-btn-primary {
	background: linear-gradient(135deg, #114c5f, #1e88a8);
	color: #fff;
	box-shadow: 0 6px 22px rgba(17, 76, 95, .35);
}
.wbw-hero-btn-primary:hover {
	color: #fff;
}
.wbw-hero-btn-primary svg {
	stroke: #fff;
}

.wbw-hero-btn-secondary {
	background: rgba(255, 255, 255, .08);
	color: #fff;
	padding: 14px 24px;
	border: 1px solid rgba(255, 255, 255, .18);
	backdrop-filter: blur(10px);
}
.wbw-hero-btn-secondary:hover {
	background: rgba(255, 255, 255, .14);
	color: #fff;
}
.wbw-hero-btn-secondary svg {
	stroke: #7ed4e8;
}

@media (max-width: 580px) {
	.wbw-hero {
		padding: 80px 20px 60px;
	}
	.wbw-hero-btns {
		flex-direction: column;
		align-items: center;
	}
	.wbw-hero-btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}
}

/* ── Shared section header (eyebrow + heading) ──────────────────
   Used by widgets whose header is just an eyebrow pill + <h2>,
   e.g. wbw-faq-section. Reuse these classes rather than redefining
   the same pattern per widget. ────────────────────────────────── */

.wbw-sec-head {
	text-align: center;
	margin-bottom: 48px;
}
.wbw-sec-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: var(--tp, #eaf4f7);
	color: var(--teal, #114c5f);
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	padding: 7px 15px;
	border-radius: 28px;
	margin-bottom: 16px;
	border: 1px solid rgba(17, 76, 95, .12);
}
.wbw-sec-eyebrow::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--tl, #1e88a8);
	flex-shrink: 0;
}
.wbw-sec-head h2 {
	font-family: 'Inter', sans-serif;
	font-size: clamp(24px, 3.5vw, 42px);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -1.5px;
	color: var(--tx, #0f2027);
	margin: 0;
}
.wbw-sec-head h2 em {
	font-style: normal;
	color: var(--tl, #1e88a8);
}

/* ── FAQ Section (wbw-faq-section) ──────────────────────────────── */

.wbw-faq {
	font-family: 'Poppins', sans-serif;
	padding: 90px 24px 100px;
	background: #fff;
}
.wbw-faq-in {
	max-width: 900px;
	margin: 0 auto;
}

.wbw-faq-list {
	display: flex;
	flex-direction: column;
}

.wbw-faq-item {
	background: #fff;
	border: 1px solid var(--bd, rgba(17, 76, 95, .09));
	border-bottom: none;
	overflow: hidden;
}
.wbw-faq-item:first-child {
	border-radius: 14px 14px 0 0;
}
.wbw-faq-item:last-child {
	border-radius: 0 0 14px 14px;
	border-bottom: 1px solid var(--bd, rgba(17, 76, 95, .09));
}

.wbw-faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	user-select: none;
}
.wbw-faq-q h3 {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--tx, #0f2027);
	margin: 0;
	flex: 1;
	line-height: 1.4;
}

.wbw-faq-q-ic {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: var(--tp, #eaf4f7);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background .2s;
}
.wbw-faq-q-ic svg {
	width: 13px;
	height: 13px;
	stroke: var(--teal, #114c5f);
	stroke-width: 2.5;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform .25s;
}
.wbw-faq-item.open .wbw-faq-q-ic {
	background: var(--teal, #114c5f);
}
.wbw-faq-item.open .wbw-faq-q-ic svg {
	stroke: #fff;
	transform: rotate(180deg);
}

.wbw-faq-a {
	display: none;
	padding: 0 24px 20px;
	font-size: 14px;
	line-height: 1.72;
	color: var(--mu, #5a6b72);
}
.wbw-faq-item.open .wbw-faq-a {
	display: block;
}

@media (max-width: 580px) {
	.wbw-faq {
		padding: 70px 18px 80px;
	}
	.wbw-faq-q {
		padding: 16px 18px;
	}
	.wbw-faq-a {
		padding: 0 18px 16px;
	}
}
