:root {
	--color-navy: #16356f;
	--color-navy-deep: #10264f;
	--color-lime: #bed63b;
	--color-sky: #dff3ff;
	--color-mist: #f4f7fb;
	--color-bg-start: #ffffff;
	--color-bg-end: #f8fbff;
	--color-footer-bg: #10264f;
	--color-ink: #203153;
	--color-muted: #60708f;
	--color-white: #ffffff;
	--shadow-soft: 0 24px 60px rgba(15, 38, 79, 0.12);
	--shadow-card: 0 18px 40px rgba(22, 53, 111, 0.14);
	--radius-lg: 32px;
	--radius-md: 22px;
	--radius-sm: 16px;
	--shell: min(1180px, calc(100vw - 2rem));
	--font-heading: "Manrope", "Cairo", sans-serif;
	--font-body: "Cairo", sans-serif;
	--font-size-base: 16px;
	--transition: 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--font-size-base);
	background: linear-gradient(180deg, var(--color-bg-start) 0%, var(--color-bg-end) 100%);
	color: var(--color-ink);
	line-height: 1.7;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

.section-shell {
	width: var(--shell);
	margin-inline: auto;
}

.topbar {
	background: var(--color-navy);
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.9rem;
}

.topbar__inner,
.navbar-wrap__inner,
.brochure-grid,
.section-grid,
.footer-grid,
.footer-base,
.vision-grid,
.hero-section__inner {
	display: grid;
	gap: 1.5rem;
}

.topbar__inner {
	grid-template-columns: 1fr auto;
	align-items: center;
	padding: 0.8rem 0;
}

.topbar__items,
.hero-stats,
.service-list,
.footer-links,
.primary-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar__items {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.topbar__items li,
.language-switcher ul {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}
.language-switcher ul {
	flex-direction: column;
}
.topbar__items li {
	font-weight: 600;
	line-height: 1.2;
}

.topbar__icon {
	width: 28px;
	height: 28px;
	display: inline-grid;
	place-items: center;
	color: #f7fbff;
	background: linear-gradient(145deg, rgba(190, 214, 59, 0.24), rgba(255, 255, 255, 0.12));
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 10px;
	box-shadow: 0 8px 16px rgba(8, 20, 46, 0.25);
	flex: 0 0 28px;
	overflow: visible;
}

.topbar__icon svg {
	width: 15px;
	height: 15px;
	display: block;
	stroke-linecap: round;
	stroke-linejoin: round;
	overflow: visible;
}

.topbar__lang {
	position: relative;
}

.language-switcher {
	position: relative;
}

.language-switcher__dropdown {
	position: relative;
}

.language-switcher__summary {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.45rem 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-white);
	cursor: pointer;
	list-style: none;
	transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.language-switcher__summary::-webkit-details-marker {
	display: none;
}

.language-switcher__summary:hover,
.language-switcher__dropdown[open] .language-switcher__summary {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.24);
}

.language-switcher__current,
.language-switcher__link {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
}

.language-switcher__flag,
.language-switcher__fallback-flag {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 auto;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.language-switcher__fallback-flag {
	display: inline-grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.14);
	font-size: 0.6rem;
	font-weight: 800;
	line-height: 1;
}

.language-switcher__label {
	font-weight: 700;
	font-size: 0.9rem;
	white-space: nowrap;
}

.language-switcher__chevron {
	width: 8px;
	height: 8px;
	border-inline-end: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	transition: transform var(--transition);
}

.language-switcher__dropdown[open] .language-switcher__chevron {
	transform: rotate(-135deg) translateY(-1px);
}

.language-switcher__menu {
	position: absolute;
	top: calc(100% + 0.6rem);
	inset-inline-end: 0;
	min-width: 230px;
	padding: 0.35rem 0.5rem 0.5rem;
	margin: 0;
	list-style: none;
	border-radius: 18px;
	background: rgba(10, 26, 60, 0.97);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 24px 48px rgba(3, 15, 38, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
	backdrop-filter: blur(20px);
	z-index: 45;
}

.language-switcher__menu::before {
	content: attr(data-label);
	display: block;
	padding: 0.5rem 0.85rem 0.55rem;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	margin-bottom: 0.35rem;
}

.language-switcher__menu li + li {
	margin-top: 0.15rem;
}

.language-switcher__link {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0.7rem 0.85rem;
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.88rem;
	font-weight: 500;
	transition: background var(--transition), color var(--transition);
}

.language-switcher__link:hover {
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-white);
}

.language-switcher__link.is-active {
	background: rgba(190, 214, 59, 0.14);
	color: var(--color-white);
	font-weight: 700;
}

.language-switcher__check {
	width: 14px;
	height: 14px;
	margin-inline-start: auto;
	flex-shrink: 0;
	color: var(--color-lime);
}

/* ── Mobile language toggle (hidden on desktop) ── */
.mobile-lang {
	display: none;
}

@media (max-width: 1080px) {
	.mobile-lang {
		display: block;
		position: relative;
		align-self: center;
		justify-self: end;
	}

	.mobile-lang__btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		height: 30px;
		min-width: 38px;
		padding: 0 0.55rem;
		background: rgba(22, 53, 111, 0.08);
		border: 1.5px solid rgba(22, 53, 111, 0.14);
		border-radius: 999px;
		color: var(--color-navy);
		font-size: 0.7rem;
		font-weight: 800;
		letter-spacing: 0.05em;
		cursor: pointer;
		list-style: none;
		user-select: none;
		transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
	}

	.mobile-lang__btn::-webkit-details-marker {
		display: none;
	}

	.mobile-lang[open] .mobile-lang__btn {
		background: var(--color-navy);
		border-color: var(--color-navy);
		color: #fff;
		box-shadow: 0 4px 14px rgba(22, 53, 111, 0.28);
	}

	.mobile-lang__menu {
		position: absolute;
		top: calc(100% + 0.55rem);
		inset-inline-end: 0;
		width: max(260px, min(320px, calc(100vw - 2rem)));
		padding: 0.4rem 0.5rem 0.6rem;
		margin: 0;
		list-style: none;
		background: rgba(10, 26, 60, 0.97);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 20px;
		box-shadow: 0 20px 44px rgba(3, 15, 38, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
		backdrop-filter: blur(20px);
		z-index: 40;
	}

	.mobile-lang__menu::before {
		content: '';
		display: block;
		height: 1px;
		background: rgba(255, 255, 255, 0.07);
		margin: 0 0.4rem 0.35rem;
	}

	.mobile-lang__menu li + li {
		margin-top: 0.15rem;
	}

	.mobile-lang__link {
		display: flex;
		align-items: center;
		gap: 0.85rem;
		width: 100%;
		padding: 0.85rem 1rem;
		border-radius: 14px;
		color: rgba(255, 255, 255, 0.78);
		font-size: 0.95rem;
		font-weight: 500;
		text-decoration: none;
		transition: background 0.18s, color 0.18s;
	}

	.mobile-lang__link:hover {
		background: rgba(255, 255, 255, 0.08);
		color: #fff;
	}

	.mobile-lang__link.is-active {
		background: rgba(190, 214, 59, 0.14);
		color: #fff;
		font-weight: 700;
	}

	.mobile-lang__flag {
		width: 30px;
		height: 30px;
		border-radius: 50%;
		object-fit: cover;
		flex-shrink: 0;
		box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
	}

	.mobile-lang__fallback-flag {
		display: inline-grid;
		place-items: center;
		width: 30px;
		height: 30px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.14);
		font-size: 0.65rem;
		font-weight: 800;
		flex-shrink: 0;
		color: #fff;
	}

	.mobile-lang__name {
		flex: 1;
	}

	.mobile-lang__check {
		width: 14px;
		height: 14px;
		flex-shrink: 0;
		color: var(--color-lime);
	}
}

.navbar-wrap {
	position: sticky;
	top: 0;
	z-index: 30;
	backdrop-filter: blur(18px);
	background: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid rgba(22, 53, 111, 0.08);
}

.navbar-wrap__inner {
	grid-template-columns: auto 1fr auto;
	align-items: center;
	padding: 1rem 0;
}

.navbar-wrap .custom-logo {
	width: 63px;
	height: auto;
}

.site-branding__link,
.footer-branding {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.site-branding__mark {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 52px;
	min-width: 52px;
	border-radius: 18px;
	background: linear-gradient(180deg, var(--color-navy) 0%, #264d93 100%);
	color: var(--color-white);
	font-weight: 800;
	font-family: var(--font-heading);
	box-shadow: var(--shadow-card);
	background-image: url(/wp-content/uploads/2026/04/cropped-logo_80.png);
    background-size: cover;
    background-position: center;
    filter: invert(0) brightness(10);
}

.site-branding__text strong,
.footer-branding h2,
.section-heading h1,
.section-heading h2,
.reason-card h3,
.vision-card h2 {
	font-family: var(--font-heading);
	line-height: 1.1;
	margin: 0;
}

.site-branding__text strong {
	display: block;
	font-size: 1.1rem;
}

.site-branding__text small {
	display: block;
	color: var(--color-muted);
	font-size: 0.82rem;
	margin-top: 0.2rem;
}

.main-navigation {
	justify-self: center;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 1.4rem;
	font-weight: 700;
	color: var(--color-navy);
}

.primary-menu a {
	position: relative;
	padding-bottom: 0.25rem;
}

.primary-menu a::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 2px;
	background: var(--color-lime);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--transition);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item a::after,
.primary-menu .current_page_item a::after {
	transform: scaleX(1);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.95rem 1.4rem;
	border-radius: 999px;
	border: 1px solid transparent;
	background: linear-gradient(135deg, var(--color-navy) 0%, #2d5bb2 100%);
	color: var(--color-white);
	font-weight: 800;
	box-shadow: 0 18px 30px rgba(22, 53, 111, 0.2);
	transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 24px 36px rgba(22, 53, 111, 0.24);
}

.button--ghost {
	background: transparent;
	color: var(--color-navy);
	border-color: rgba(22, 53, 111, 0.16);
	box-shadow: none;
}

.button--nav {
	padding-inline: 1.2rem;
	font-size: 0.95rem;
}

.menu-toggle {
	display: none;
	background: transparent;
	border: 0;
	padding: 0;
	gap: 0.28rem;
	width: 44px;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2.5px;
	border-radius: 999px;
	background: var(--color-navy);
	transform-origin: center;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
	            opacity 0.25s ease,
	            background 0.2s;
}

.hero-section {
	position: relative;
	overflow: clip;
	padding: 4.5rem 0 3rem;
	background:
		radial-gradient(circle at top right, rgba(190, 214, 59, 0.28), transparent 28%),
		radial-gradient(circle at left center, rgba(173, 226, 255, 0.28), transparent 24%),
		linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.hero-section__inner {
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-section__glow {
	position: absolute;
	border-radius: 999px;
	filter: blur(10px);
	opacity: 0.8;
	animation: floatGlow 14s ease-in-out infinite;
}

.hero-section__glow--one {
	width: 320px;
	height: 320px;
	background: rgba(190, 214, 59, 0.24);
	inset-inline-end: -80px;
	top: 40px;
}

.hero-section__glow--two {
	width: 220px;
	height: 220px;
	background: rgba(173, 226, 255, 0.28);
	inset-inline-start: -60px;
	top: 90px;
	animation-delay: -3s;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(190, 214, 59, 0.15);
	color: var(--color-navy);
	font-weight: 800;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 1rem;
}

.section-heading h1 {
	font-size: clamp(2.65rem, 4vw, 4.7rem);
	max-width: 12ch;
}

.hero-section h1 {
	font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.section-heading h2 {
	font-size: clamp(2rem, 3vw, 3rem);
	margin-bottom: 1rem;
}

.hero-copy__lead,
.section-heading p,
.service-list__item span,
.reason-card p,
.vision-card p,
.footer-grid p,
.default-content,
.footer-links,
.footer-card p {
	color: var(--color-muted);
	font-size: 1rem;
}

.hero-copy__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 1.8rem 0 2.2rem;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.hero-stats__item,
.hero-card,
.reason-card,
.vision-card,
.brochure-card,
.visual-panel,
.footer-card,
.fallback-section,
.default-content {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(22, 53, 111, 0.08);
	box-shadow: var(--shadow-soft);
	border-radius: var(--radius-lg);
}

.hero-stats__item {
	padding: 1.1rem 1rem;
	text-align: center;
	backdrop-filter: blur(12px);
}

.hero-stats__item strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.7rem;
	color: var(--color-navy);
	line-height: 1;
	margin-bottom: 0.4rem;
}

.hero-visual {
	position: relative;
	padding: 1rem 0 1rem 1rem;
}

.hero-card--image {
	padding: 1rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(223, 243, 255, 0.7));
	transform: rotate(-3deg);
}

.hero-visual__image,
.offer-section__image,
.brochure-card__image {
	width: 100%;
	object-fit: cover;
	border-radius: calc(var(--radius-lg) - 10px);
}

.hero-visual__image {
	aspect-ratio: 1 / 1.1;
}

.hero-card--floating {
	position: absolute;
	bottom: -18px;
	inset-inline-start: 0;
	max-width: 280px;
	padding: 1rem 1.1rem;
	background: linear-gradient(135deg, var(--color-navy) 0%, #29549f 100%);
	color: var(--color-white);
	transform: translateX(-8%) rotate(2deg);
}

.hero-card--floating p,
.hero-card--floating strong {
	margin: 0;
	color: inherit;
}

.offer-section,
.vision-section,
.brochure-section,
.fallback-section {
	padding: 4.5rem 0;
}

.section-grid--offer,
.brochure-grid,
.vision-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
}

.service-list {
	display: grid;
	gap: 0.95rem;
	margin-top: 2rem;
}

.service-list__item {
	display: grid;
	gap: 0.25rem;
	padding-inline-start: 1.5rem;
	position: relative;
}

.service-list__item::before {
	content: "";
	position: absolute;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--color-lime);
	inset-inline-start: 0;
	top: 0.55rem;
	box-shadow: 0 0 0 5px rgba(190, 214, 59, 0.18);
}

.service-list__item strong {
	color: var(--color-navy);
	font-size: 1.05rem;
}

.offer-section__visual {
	position: relative;
	min-height: 420px;
	display: grid;
	place-items: center;
}

.visual-orb {
	position: absolute;
	inset: 2rem;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(190, 214, 59, 0.45), rgba(22, 53, 111, 0.1));
	filter: blur(6px);
}

.visual-panel {
	position: relative;
	padding: 1rem;
	width: min(100%, 440px);
	background: linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(237, 245, 255, 0.88));
	transform: rotate(4deg);
}

.offer-section__image {
	aspect-ratio: 1 / 1;
}

.reasons-section {
	padding: 5rem 0;
	background:
		linear-gradient(rgba(13, 34, 73, 0.86), rgba(13, 34, 73, 0.86)),
		radial-gradient(circle at top right, rgba(190, 214, 59, 0.28), transparent 30%),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='480' height='480' viewBox='0 0 480 480'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'%3E%3Cpath d='M0 80h480M0 160h480M0 240h480M0 320h480M0 400h480'/%3E%3Cpath d='M80 0v480M160 0v480M240 0v480M320 0v480M400 0v480'/%3E%3C/g%3E%3C/svg%3E");
	background-size: cover, cover, 380px;
	color: var(--color-white);
}

.section-heading--center {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 2rem;
}

.section-heading--center h2,
.reasons-section .section-heading p,
.reason-card p,
.reason-card h3 {
	color: var(--color-white);
}

.reason-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.35rem;
}

.reason-card {
	padding: 2rem 1.6rem;
	min-height: 220px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(190, 214, 59, 0.2)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	backdrop-filter: blur(10px);
}

.reason-card__icon {
	width: 54px;
	height: 54px;
	display: inline-grid;
	place-items: center;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--color-navy);
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.vision-card,
.brochure-card {
	padding: 2.4rem;
	min-height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 247, 255, 0.85));
}

.brochure-card {
	padding: 1rem;
	background: linear-gradient(160deg, #1a2f66 0%, #31498d 100%);
}

.brochure-card__image {
	aspect-ratio: 0.8 / 1;
	object-fit: cover;
}

.site-footer {
	background: var(--color-footer-bg);
	color: rgba(255, 255, 255, 0.9);
	padding: 4rem 0 1.4rem;
	margin-top: 3rem;
}

.footer-grid {
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	align-items: start;
}

.footer-grid h3 {
	margin-top: 0;
	font-family: var(--font-heading);
	font-size: 1.05rem;
	color: var(--color-white);
}

.footer-links {
	display: grid;
	gap: 0.7rem;
}

.footer-links a,
.footer-links span {
	color: rgba(255, 255, 255, 0.78);
}

.footer-card--map {
	padding: 1.25rem;
	background: rgb(255 255 255 / 68%);
	box-shadow: none;
}

.footer-map-embed-wrap {
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-map-embed {
	display: block;
	width: 100%;
	height: 200px;
	border: 0;
	filter: saturate(0.95) contrast(1.03);
}

.footer-social {
	margin-top: 2.2rem;
	padding-top: 1.8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social__label {
	margin: 0 0 1rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

.footer-social__icons {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
	align-items: center;
}

.footer-social__link {
	display: inline-flex;
	align-items: center;
	direction:ltr;
	gap: 0.5rem;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.13);
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.84rem;
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
	transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.footer-social__link:hover {
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-social__link--instagram:hover {
	background: rgba(225, 48, 108, 0.2);
	border-color: rgba(225, 48, 108, 0.45);
}

.footer-social__link--twitter:hover {
	background: rgba(255, 255, 255, 0.13);
	border-color: rgba(255, 255, 255, 0.28);
}

.footer-social__link--email:hover {
	background: rgba(190, 214, 59, 0.15);
	border-color: rgba(190, 214, 59, 0.4);
	color: var(--color-lime);
}

.footer-social__link--phone:hover {
	background: rgba(190, 214, 59, 0.15);
	border-color: rgba(190, 214, 59, 0.4);
	color: var(--color-lime);
}

.footer-social__icon {
	width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: black;
    padding: 5px;
    border-radius: 50%;
    background: #ffffff;
	overflow: visible;
}

.footer-base {
	margin-top: 2.2rem;
	padding-top: 1.4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	grid-template-columns: 1fr;
}

.default-content,
.fallback-section {
	padding: 2rem;
}

.reveal-up {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.osos-admin {
	max-width: 1100px;
	margin-top: 2rem;
}

.osos-admin__form {
	display: grid;
	gap: 1.1rem;
	margin-top: 1.5rem;
	background: var(--color-white);
	padding: 1.5rem;
	border-radius: 18px;
	box-shadow: var(--shadow-soft);
}

.osos-admin__field {
	display: grid;
	gap: 0.55rem;
}

.osos-admin__group {
	background: var(--color-mist);
	border: 1px solid rgba(22, 53, 111, 0.08);
	border-radius: 14px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.osos-admin__group h2,
.osos-admin__group h3 {
	margin-top: 0;
	margin-bottom: 0.9rem;
	font-size: 1.15rem;
}

.osos-admin__grid {
	display: grid;
	gap: 0.85rem;
}

.osos-admin__grid--design {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 0.9rem;
}

.osos-admin__field .wp-picker-container {
	line-height: 1;
}

.osos-media-control {
	display: grid;
	gap: 0.9rem;
}

.osos-media-preview {
	display: grid;
	place-items: center;
	min-height: 160px;
	border: 1px dashed rgba(22, 53, 111, 0.2);
	border-radius: 18px;
	background: var(--color-mist);
	overflow: hidden;
}

.osos-media-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.osos-media-actions {
	display: flex;
	gap: 0.8rem;
	align-items: center;
}

@keyframes floatGlow {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, 18px, 0);
	}
}

@keyframes heroUp {
	from {
		opacity: 0;
		transform: translateY(38px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes heroRight {
	from {
		opacity: 0;
		transform: translateX(56px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes heroLeft {
	from {
		opacity: 0;
		transform: translateX(-56px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes heroPop {
	0% {
		opacity: 0;
		transform: translateX(-8%) rotate(2deg) scale(0.72);
	}
	65% {
		transform: translateX(-8%) rotate(2deg) scale(1.07);
	}
	100% {
		opacity: 1;
		transform: translateX(-8%) rotate(2deg) scale(1);
	}
}

@keyframes heroGlowIn {
	from {
		opacity: 0;
		transform: scale(0.6);
	}
	to {
		opacity: 0.8;
		transform: scale(1);
	}
}

/* hero entrance — stagger via --hi custom property */
.hero-section__glow {
	animation: heroGlowIn 2.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-section__glow--two {
	animation-delay: 0.25s;
}

.hero-el {
	animation: heroUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--hi, 0) * 180ms + 80ms) both;
}

.hero-section .hero-stats__item {
	animation: heroUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-section .hero-stats__item:nth-child(1) {
	animation-delay: 0.56s;
}

.hero-section .hero-stats__item:nth-child(2) {
	animation-delay: 0.65s;
}

.hero-section .hero-stats__item:nth-child(3) {
	animation-delay: 0.74s;
}

.hero-el--visual {
	animation: heroRight 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-section .hero-card--floating {
	animation: heroPop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s both;
}

[dir="rtl"] .hero-el--visual,
body.rtl .hero-el--visual {
	animation-name: heroLeft;
}

@media (prefers-reduced-motion: reduce) {
	.hero-el,
	.hero-el--visual,
	.hero-section .hero-stats__item,
	.hero-section .hero-card--floating,
	.hero-section__glow {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.hero-section .hero-card--floating {
		transform: translateX(-8%) rotate(2deg);
	}
}

@media (max-width: 1080px) {
	.hero-section__inner,
	.section-grid--offer,
	.brochure-grid,
	.vision-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		order: -1;
	}

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

	.navbar-wrap {
		height: 60px;
	}

	.navbar-wrap__inner {
		grid-template-columns: auto 1fr auto;
		padding: 0;
		height: 60px;
	}

	/* hide desktop-only elements */
	.button--nav {
		display: none;
	}

	.menu-toggle {
		display: inline-grid;
		justify-self: end;
		cursor: pointer;
		padding: 6px;
		gap: 5px;
		border-radius: 8px;
		transition: background 0.2s;
	}

	.menu-toggle:hover {
		background: rgba(22, 53, 111, 0.07);
	}

	/* ── Hamburger → X animation ── */
	.menu-toggle[aria-expanded="true"] span:nth-child(1) {
		transform: translateY(7.5px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
		transform: scaleX(0);
	}

	.menu-toggle[aria-expanded="true"] span:nth-child(3) {
		transform: translateY(-7.5px) rotate(-45deg);
	}

	/* ── Mobile menu drawer (fixed overlay below navbar) ── */
	.main-navigation {
		position: fixed;
		top: 60px;
		/* Explicit physical + logical props: backdrop-filter on parent can hijack
		   containing-block in WebKit, so we force full viewport width explicitly. */
		left: 0;
		right: 0;
		width: 100%;
		inset-inline: 0;
		background: #fff;
		box-shadow: 0 16px 48px rgba(13, 34, 73, 0.16);
		padding: 0.5rem 1.5rem 2rem;
		max-height: calc(100svh - 60px);
		overflow-y: auto;
		z-index: 29;
		/* closed state */
		opacity: 0;
		visibility: hidden;
		transform: translateY(-12px);
		transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		            transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		            visibility 0s 0.32s;
	}

	.main-navigation.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		            transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		            visibility 0s 0s;
	}

	/* menu items layout */
	.primary-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.primary-menu > li > a {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 1rem 0.25rem;
		border-bottom: 1px solid rgba(22, 53, 111, 0.07);
		font-size: 1.05rem;
		font-weight: 500;
		opacity: 0;
		transform: translateY(10px);
		transition: opacity 0.28s, transform 0.28s, color 0.18s;
	}

	.primary-menu > li > a::after {
		display: none;
	}

	.primary-menu > li:last-child > a {
		border-bottom: none;
	}

	.primary-menu > li > a:hover,
	.primary-menu .current-menu-item > a,
	.primary-menu .current_page_item > a {
		color: var(--color-lime);
		padding-inline-start: 0.6rem;
	}

	/* stagger items in */
	.main-navigation.is-open .primary-menu > li:nth-child(1) > a { opacity: 1; transform: none; transition-delay: 0.06s; }
	.main-navigation.is-open .primary-menu > li:nth-child(2) > a { opacity: 1; transform: none; transition-delay: 0.11s; }
	.main-navigation.is-open .primary-menu > li:nth-child(3) > a { opacity: 1; transform: none; transition-delay: 0.16s; }
	.main-navigation.is-open .primary-menu > li:nth-child(4) > a { opacity: 1; transform: none; transition-delay: 0.21s; }
	.main-navigation.is-open .primary-menu > li:nth-child(5) > a { opacity: 1; transform: none; transition-delay: 0.26s; }
	.main-navigation.is-open .primary-menu > li:nth-child(6) > a { opacity: 1; transform: none; transition-delay: 0.31s; }

	/* CTA inside mobile menu */
	.main-navigation .menu-cta {
		display: flex;
		justify-content: center;
		margin-top: 1.5rem;
		width: 90%;
		opacity: 0;
		transform: translateY(8px);
		transition: opacity 0.28s 0.34s, transform 0.28s 0.34s;
	}

	.main-navigation.is-open .menu-cta {
		opacity: 1;
		transform: none;
	}

	/* ── Backdrop ── */
	.menu-backdrop {
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		width: 100%;
		inset-inline: 0;
		bottom: 0;
		background: rgba(13, 34, 73, 0.42);
		backdrop-filter: blur(3px);
		-webkit-backdrop-filter: blur(3px);
		z-index: 28;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s, visibility 0s 0.32s;
	}

	.menu-backdrop.is-active {
		opacity: 1;
		visibility: visible;
		transition: opacity 0.3s, visibility 0s 0s;
	}

	/* body scroll lock */
	body.menu-is-open {
		overflow: hidden;
	}

	/* admin bar offset */
	body.admin-bar .main-navigation,
	body.admin-bar .menu-backdrop {
		top: 106px;
	}

	.hero-visual {
		padding-inline-start: 0;
	}
}

@media (max-width: 720px) {
	/* hide top contact bar — keep viewport clean */
	.topbar {
		display: none;
	}

	.osos-admin__grid--design {
		grid-template-columns: 1fr;
	}

	/* hero — compact so full section fits without scrolling */
	.hero-section {
		padding-top: 1.5rem;
		padding-bottom: 1rem;
	}

	.hero-copy {
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero-section h1 {
		font-size: clamp(1.3rem, 6vw, 1.7rem);
		max-width: none;
		margin-bottom: 0.5rem;
	}

	.hero-copy__lead {
		font-size: 0.9rem;
		max-width: 36ch;
		margin-inline: auto;
	}

	.hero-copy__actions {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.7rem;
		margin: 0.9rem 0 1rem;
	}

	/* keep stats 3-col on mobile hero */
	.hero-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.5rem;
		width: 100%;
	}

	.hero-stats__item {
		padding: 0.7rem 0.4rem;
	}

	.hero-stats__item strong {
		font-size: 1.3rem;
	}

	/* compact image so hero fits viewport, shown above text */
	.hero-visual {
		order: -1;
		padding: 0;
		max-width: 320px;
		margin-inline: auto;
		margin-top: 0;
		margin-bottom: 1rem;
	}

	.hero-card--image {
		transform: none;
		padding: 0.5rem;
	}

	.hero-visual__image {
		aspect-ratio: 4 / 3;
	}

	/* hide floating card on mobile — saves space */
	.hero-card--floating {
		display: none;
	}

	/* mobile visual slides up, not sideways */
	.hero-el--visual {
		animation-name: heroUp;
	}

	.reason-grid {
		grid-template-columns: 1fr;
	}

	.section-heading h1 {
		font-size: clamp(2.2rem, 11vw, 3.3rem);
	}

	.offer-section,
	.vision-section,
	.brochure-section,
	.fallback-section,
	.reasons-section {
		padding: 3.5rem 0;
	}

	.vision-card,
	.reason-card,
	.hero-card--image,
	.brochure-card {
		border-radius: 24px;
	}

	.osos-media-actions {
		flex-direction: column;
		align-items: stretch;
	}

	body.admin-bar .navbar-wrap {
		top: 46px;
	}
}

.floating-contacts {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	z-index: 9999;
}

.floating-contacts__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	color: var(--color-white);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
	transition: transform var(--transition), box-shadow var(--transition);
}

.floating-contacts__btn:hover {
	transform: scale(1.1);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.floating-contacts__btn--whatsapp {
	background: #25d366;
}

.floating-contacts__btn--phone {
	background: var(--color-navy);
}

@media (max-width: 720px) {
	.floating-contacts {
		bottom: 1.25rem;
		right: 50%;
		transform: translateX(50%);
		flex-direction: row;
	}

	.floating-contacts:hover {
		transform: translateX(50%);
	}

	.floating-contacts__btn:hover {
		transform: scale(1.1);
	}
}

[dir="rtl"] body,
body.rtl {
	direction: rtl;
}

[dir="rtl"] .service-list__item,
body.rtl .service-list__item {
	padding-inline-start: 0;
	padding-inline-end: 1.5rem;
}

[dir="rtl"] .floating-contacts,
body.rtl .floating-contacts {
	right: auto;
	left: 2rem;
}

@media (max-width: 720px) {
	[dir="rtl"] .floating-contacts,
	body.rtl .floating-contacts {
		left: auto;
		right: 50%;
	}
}

[dir="rtl"] .service-list__item::before,
body.rtl .service-list__item::before {
	inset-inline-start: auto;
	inset-inline-end: 0;
}
