/* ============================================================
   REUVEN YUSUPOV — Styles
   RTL · Hebrew · Black & Gold
   ============================================================ */


/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */

:root {

	--color-black: #000000;
	--color-white: #ffffff;
	--color-gold: #C9A84C;
	--color-gold-hover: #b8953f;
	--color-navy: #0a0e1a;
	--color-overlay: rgba(0, 0, 0, 0.52);

	--font-primary: 'Fb Philosof', 'Heebo', sans-serif;

	--navbar-height: 72px;
	--nav-protrusion-depth: 80px;

	--max-width: 1240px;
	--section-padding-x: 6%;
	--section-padding-y: 7rem;

	--spacing-heading-gap: 1rem;
	--spacing-paragraph-gap: 1.375rem;
	--spacing-cta-top: 2.5rem;

	--cta-radius: 15px;
	--cta-color: rgb(186, 148, 47);
	--cta-border: 2px solid var(--cta-color);

}


/* ============================================================
   RESET & BASE
   ============================================================ */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}


html {
	font-size: 16px;
}


body {
	font-family: var(--font-primary);
	background-color: var(--color-black);
	color: var(--color-white);
	direction: rtl;
	text-align: right;
	overflow-x: hidden;
	padding-top: 0;
}


img {
	display: block;
	max-width: 100%;
}


a {
	color: inherit;
	text-decoration: none;
}


button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: var(--font-primary);
}


/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */

#scroll-progress-bar {
	position: fixed;
	top: calc(36px + var(--navbar-height));
	right: 0;
	left: 0;
	height: 2px;
	width: 0%;
	background-color: var(--color-gold);
	z-index: 999;
	transform-origin: right center;
}


/* ============================================================
   PRIMARY CTA BUTTON — Global
   ============================================================ */

.primary-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 2.25rem;
	position: relative;
	overflow: hidden;
	background: transparent;
	color: var(--cta-color);
	font-size: 1.0625rem;
	font-weight: 700;
	font-family: var(--font-primary);
	border-radius: var(--cta-radius);
	border: var(--cta-border);
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: color 0.32s ease, border-color 0.32s ease, background 0.32s ease;
	text-align: center;
}


.primary-cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 55%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.45) 50%,
		transparent 100%
	);
	transform: skewX(-18deg);
	pointer-events: none;
}


.primary-cta-button:hover {
	background: linear-gradient(
		90deg,
		#5c3f08 0%,
		#a0761e 20%,
		#C9A84C 40%,
		#F2D060 52%,
		#C9A84C 64%,
		#a0761e 80%,
		#5c3f08 100%
	);
	color: #000;
	border-color: transparent;
}


.primary-cta-button:hover::before {
	animation: cta-shine 0.65s ease forwards;
}


@keyframes cta-shine {
	from { left: -100%; }
	to   { left: 160%; }
}


/* ============================================================
   LOADING SCREEN
   ============================================================ */

#loading-screen {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background-color: var(--color-black);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}


.loading-content-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.75rem;
}


#loading-logo {
	width: 160px;
	height: 160px;
	object-fit: contain;
	opacity: 0;
}


.loading-name {
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--color-white);
	letter-spacing: 0.04em;
	text-align: center;
	opacity: 0;
}


.loading-services {
	font-size: 1.125rem;
	font-weight: 300;
	color: var(--color-white);
	letter-spacing: 0.14em;
	opacity: 0;
	text-align: center;
}


.loading-bar-track {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	height: 3px;
	background-color: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}


.loading-bar-fill {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 0%;
	background-color: var(--color-white);
}


/* ============================================================
   TOP BAR
   ============================================================ */

#top-bar {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1001;
	height: 36px;
	background-color: var(--color-navy);
	border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}


.top-bar-inner {
	max-width: var(--max-width);
	height: 100%;
	margin: 0 auto;
	padding: 0 var(--section-padding-x);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	direction: rtl;
}


.top-bar-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8125rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.72);
	white-space: nowrap;
	padding: 0 1.25rem;
	transition: color 0.2s ease;
}


a.top-bar-item:hover {
	color: var(--color-gold);
}


.top-bar-divider {
	width: 1px;
	height: 14px;
	background-color: rgba(201, 168, 76, 0.3);
	flex-shrink: 0;
}


.top-bar-address {
	cursor: default;
}


/* ============================================================
   NAVBAR
   ============================================================ */

#main-header {
	position: fixed;
	top: 36px;
	right: 0;
	left: 0;
	z-index: 1000;
	height: 145px;
	background: transparent;
	overflow: visible;
	opacity: 0;
	pointer-events: none;
}


#main-header.navigation-visible {
	opacity: 1;
	pointer-events: all;
}


.main-navigation-container {
	width: 100%;
	max-width: var(--max-width);
	height: var(--navbar-height);
	margin: 0 auto;
	padding: 0 var(--section-padding-x);
	display: flex;
	align-items: center;
	justify-content: space-between;
}


.nav-right-group,
.nav-left-group {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex: 1;
}


.nav-link {
	font-size: 1.0625rem;
	font-weight: 500;
	color: var(--color-white);
	position: relative;
	padding-bottom: 3px;
	white-space: nowrap;
	transition: color 0.2s ease;
}


/* RTL underline grows from right to left */

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0%;
	height: 2px;
	background-color: var(--color-white);
	transition: width 1s ease;
}


.nav-link:hover::after {
	width: 100%;
}


/* Navbar shape SVG */

.nav-shape-svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 145px;
	pointer-events: none;
	z-index: 0;
}


.nav-shape-path {
	fill: rgba(0, 0, 0, 0.5);
}


/* Logo protrusion */

.main-navigation-container {
	position: relative;
	z-index: 1;
}


.nav-logo-wrapper {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	z-index: 10;
}


.nav-logo-circle {
	display: flex;
	align-items: center;
	justify-content: center;
}


.nav-logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
}


#nav-logo {
	width: 120px;
	height: 120px;
	object-fit: contain;
	opacity: 0;
	transition: opacity 0.3s ease;
}


#nav-logo.logo-ready {
	opacity: 1;
}


/* Navbar CTA */

.nav-cta-button {
	display: inline-flex;
	padding: 0.5rem 1.25rem;
	font-size: 0.9375rem;
}


/* Navbar social icons */

.nav-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-gold-hover);
	opacity: 0.85;
	transition: opacity 0.2s ease;
}


.nav-social-icon:hover {
	opacity: 1;
}


/* Hamburger */

.hamburger-toggle-button {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 4px;
	background: none;
	border: none;
	cursor: pointer;
}


.hamburger-line {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--color-white);
	transition: transform 0.3s ease, opacity 0.3s ease;
}


/* ============================================================
   MOBILE MENU
   ============================================================ */

#mobile-navigation-menu {
	position: fixed;
	inset: 0;
	z-index: 998;
	background-color: var(--color-black);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-100%);
}


#mobile-navigation-menu.menu-open {
	pointer-events: all;
}


.mobile-nav-links-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}


.mobile-nav-link {
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--color-white);
	transition: color 0.2s ease;
}


.mobile-nav-link:hover {
	color: var(--color-gold);
}


.mobile-cta-button {
	margin-top: 1rem;
	font-size: 1.125rem;
}


/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
	position: relative;
	width: 100%;
	height: calc(100vh - 36px);
	margin-top: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}


.hero-video-background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	z-index: 0;
}


.hero-overlay {
	position: absolute;
	inset: 0;
	background-color: var(--color-overlay);
	z-index: 1;
}


.hero-content-wrapper {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 var(--section-padding-x);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
}


.hero-supra-heading {
	font-size: 1.1rem;
	font-weight: 300;
	color: var(--color-gold);
	letter-spacing: 0.18em;
}


.hero-text-block {
	display: inline-flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.45rem;
}


.hero-main-heading {
	font-size: 5.5rem;
	font-weight: 700;
	color: var(--color-white);
	line-height: 1.05;
	letter-spacing: 0.01em;
	text-align: center;
}


.hero-sub-heading {
	font-size: 1.125rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.6;
	white-space: nowrap;
	text-align: center;
}


.hero-cta-button {
	margin-top: var(--spacing-cta-top);
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}


.services-section {
	width: 100%;
	min-height: 100vh;
	background-color: var(--color-navy);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: var(--section-padding-y) 0;
	overflow: hidden;
}


.section-inner-wrapper {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--section-padding-x);
}


.section-heading-block {
	margin-bottom: 4rem;
}


#services .section-heading-block {
	text-align: center;
}


.section-main-heading {
	font-size: 2.625rem;
	font-weight: 900;
	color: var(--color-gold);
	line-height: 1.2;
}


.services-carousel-scene {
	position: relative;
	width: 100%;
	margin: 1rem 0 3rem;
	display: flex;
	align-items: center;
}


.services-carousel-center-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 210px;
	height: 210px;
	border-radius: 50%;
	background: var(--color-navy);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}


.services-carousel-center-logo img {
	width: 135px;
	height: 135px;
	object-fit: contain;
}



.services-carousel-viewport {
	position: relative;
	z-index: 3;
	width: 100%;
	overflow: hidden;
	direction: ltr;
	-webkit-mask-image: linear-gradient(
		to right,
		transparent 0%,
		black 12%,
		black 88%,
		transparent 100%
	);
	mask-image: linear-gradient(
		to right,
		transparent 0%,
		black 12%,
		black 88%,
		transparent 100%
	);
}


.services-carousel-track {
	display: flex;
	direction: ltr;
	gap: 0;
	width: max-content;
	padding: 2rem 0;
	will-change: transform;
}




.service-circle-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
	width: 134px;
	animation: icon-float 3.5s ease-in-out infinite;
	transition: scale 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* 8-phase sine-wave stagger — ripple flows across the row */
.service-circle-item:nth-child(8n+1) { animation-delay: 0s; }
.service-circle-item:nth-child(8n+2) { animation-delay: 0.44s; }
.service-circle-item:nth-child(8n+3) { animation-delay: 0.88s; }
.service-circle-item:nth-child(8n+4) { animation-delay: 1.32s; }
.service-circle-item:nth-child(8n+5) { animation-delay: 1.75s; }
.service-circle-item:nth-child(8n+6) { animation-delay: 1.32s; }
.service-circle-item:nth-child(8n+7) { animation-delay: 0.88s; }
.service-circle-item:nth-child(8n+8) { animation-delay: 0.44s; }


.service-circle-item:hover {
	scale: 1.08;
	animation-play-state: paused;
}


@keyframes icon-float {
	0%, 100% { transform: translateY(0px); }
	50%       { transform: translateY(-9px); }
}


.service-circle-icon-ring {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	border: 1.5px solid rgba(201, 168, 76, 0.22);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: ring-glow 4s ease-in-out infinite;
	transition: border-color 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}


/* Ring glow stagger — offset +0.3 s from float for organic feel */
.service-circle-item:nth-child(8n+1) .service-circle-icon-ring { animation-delay: 0.3s; }
.service-circle-item:nth-child(8n+2) .service-circle-icon-ring { animation-delay: 0.74s; }
.service-circle-item:nth-child(8n+3) .service-circle-icon-ring { animation-delay: 1.18s; }
.service-circle-item:nth-child(8n+4) .service-circle-icon-ring { animation-delay: 1.62s; }
.service-circle-item:nth-child(8n+5) .service-circle-icon-ring { animation-delay: 2.05s; }
.service-circle-item:nth-child(8n+6) .service-circle-icon-ring { animation-delay: 1.62s; }
.service-circle-item:nth-child(8n+7) .service-circle-icon-ring { animation-delay: 1.18s; }
.service-circle-item:nth-child(8n+8) .service-circle-icon-ring { animation-delay: 0.74s; }


@keyframes ring-glow {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
		border-color: rgba(201, 168, 76, 0.22);
		background: rgba(255, 255, 255, 0.04);
	}

	50% {
		box-shadow: 0 0 20px rgba(201, 168, 76, 0.32), inset 0 0 10px rgba(201, 168, 76, 0.07);
		border-color: rgba(201, 168, 76, 0.62);
		background: rgba(201, 168, 76, 0.07);
	}
}


.service-circle-icon-ring svg {
	animation: icon-breathe 3.5s ease-in-out infinite;
	transition: transform 0.35s ease, filter 0.35s ease;
}


/* SVG breathe — synced with float */
.service-circle-item:nth-child(8n+1) .service-circle-icon-ring svg { animation-delay: 0s; }
.service-circle-item:nth-child(8n+2) .service-circle-icon-ring svg { animation-delay: 0.44s; }
.service-circle-item:nth-child(8n+3) .service-circle-icon-ring svg { animation-delay: 0.88s; }
.service-circle-item:nth-child(8n+4) .service-circle-icon-ring svg { animation-delay: 1.32s; }
.service-circle-item:nth-child(8n+5) .service-circle-icon-ring svg { animation-delay: 1.75s; }
.service-circle-item:nth-child(8n+6) .service-circle-icon-ring svg { animation-delay: 1.32s; }
.service-circle-item:nth-child(8n+7) .service-circle-icon-ring svg { animation-delay: 0.88s; }
.service-circle-item:nth-child(8n+8) .service-circle-icon-ring svg { animation-delay: 0.44s; }


@keyframes icon-breathe {
	0%, 100% {
		transform: scale(1);
		filter: drop-shadow(0 0 0px rgba(201, 168, 76, 0)) brightness(0.88);
	}

	50% {
		transform: scale(1.12);
		filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.55)) brightness(1.18);
	}
}


/* Hover — freeze animation, amplify glow, brighten icon */
.service-circle-item:hover .service-circle-icon-ring {
	border-color: rgba(201, 168, 76, 0.8);
	background: rgba(201, 168, 76, 0.1);
	box-shadow: 0 0 28px rgba(201, 168, 76, 0.45), inset 0 0 14px rgba(201, 168, 76, 0.1);
}


.service-circle-item:hover .service-circle-icon-ring svg {
	transform: scale(1.18);
	filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.72)) brightness(1.3);
}


@media (prefers-reduced-motion: reduce) {
	.service-circle-item,
	.service-circle-icon-ring,
	.service-circle-icon-ring svg {
		animation: none;
	}
}


/* ===== ICON-SPECIFIC HOVER ANIMATIONS ===== */

/* Tassel pendulum — graduation cap */
.service-circle-item:hover .ic-tassel {
	animation: tassel-swing 0.7s ease-in-out infinite alternate;
}

@keyframes tassel-swing {
	from { transform: rotate(-20deg); }
	to   { transform: rotate(20deg); }
}


/* Vault dial spin */
.service-circle-item:hover .ic-dial {
	animation: dial-spin 2s linear infinite;
}

@keyframes dial-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}


/* Gauge needle sweep */
.service-circle-item:hover .ic-gauge-needle {
	animation: gauge-sweep 1.4s ease-in-out infinite alternate;
}

@keyframes gauge-sweep {
	from { transform: rotate(-60deg); }
	to   { transform: rotate(45deg); }
}


/* Coin glint */
.service-circle-item:hover .ic-coin-top {
	animation: coin-glint 1.2s ease-in-out infinite;
}

@keyframes coin-glint {
	0%, 100% { filter: drop-shadow(0 0 0px transparent); }
	50%       { filter: drop-shadow(0 3px 8px rgba(201, 168, 76, 0.85)); }
}


/* Bar chart grow — staggered wave */
.service-circle-item:hover .ic-bar-1 {
	animation: bar-grow 1s ease-in-out infinite;
}

.service-circle-item:hover .ic-bar-2 {
	animation: bar-grow 1s ease-in-out 0.2s infinite;
}

.service-circle-item:hover .ic-bar-3 {
	animation: bar-grow 1s ease-in-out 0.4s infinite;
}

@keyframes bar-grow {
	0%   { transform: scaleY(1); }
	35%  { transform: scaleY(0.2); }
	80%  { transform: scaleY(1); }
	100% { transform: scaleY(1); }
}


/* Sun rays rotate */
.service-circle-item:hover .ic-sun {
	animation: sun-pulse 2s ease-in-out infinite;
}

.service-circle-item:hover .ic-sun-rays {
	animation: rays-rotate 3s linear infinite;
}

@keyframes sun-pulse {
	0%, 100% { transform: scale(1); }
	50%       { transform: scale(1.12); filter: drop-shadow(0 0 5px rgba(201, 168, 76, 0.7)); }
}

@keyframes rays-rotate {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}


/* Checkmark draw */
.service-circle-item:hover .ic-checkmark {
	animation: checkmark-draw 0.65s ease-out forwards;
}

@keyframes checkmark-draw {
	from { stroke-dashoffset: 22; }
	to   { stroke-dashoffset: 0; }
}


/* Growth line draw */
.service-circle-item:hover .ic-growth-line {
	animation: growth-draw 0.9s ease-out forwards;
}

@keyframes growth-draw {
	from { stroke-dashoffset: 40; }
	to   { stroke-dashoffset: 0; }
}


/* Heartbeat + ECG trace */
.service-circle-item:hover .ic-heart {
	animation: heartbeat 1.1s ease-in-out infinite;
}

.service-circle-item:hover .ic-ecg {
	animation: ecg-draw 1.5s ease-out infinite;
}

@keyframes heartbeat {
	0%   { transform: scale(1); }
	12%  { transform: scale(1.14); }
	24%  { transform: scale(1); }
	38%  { transform: scale(1.09); }
	55%  { transform: scale(1); }
	100% { transform: scale(1); }
}

@keyframes ecg-draw {
	0%   { stroke-dashoffset: 42; }
	65%  { stroke-dashoffset: 0; }
	90%  { stroke-dashoffset: 0; }
	100% { stroke-dashoffset: 42; }
}


/* Medical cross pulse */
.service-circle-item:hover .ic-cross {
	animation: cross-pulse 1.1s ease-in-out infinite;
}

@keyframes cross-pulse {
	0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px transparent); }
	50%       { transform: scale(1.08); filter: drop-shadow(0 0 7px rgba(201, 168, 76, 0.75)); }
}


/* House glow */
.service-circle-item:hover .ic-roof,
.service-circle-item:hover .ic-house-walls {
	animation: house-glow 1.4s ease-in-out infinite;
}

@keyframes house-glow {
	0%, 100% { filter: drop-shadow(0 0 0px transparent); }
	50%       { filter: drop-shadow(0 0 7px rgba(201, 168, 76, 0.8)); }
}


/* Shield breathe */
.service-circle-item:hover .ic-shield {
	animation: shield-breathe 1.4s ease-in-out infinite;
}

@keyframes shield-breathe {
	0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px transparent); }
	50%       { transform: scale(1.07); filter: drop-shadow(0 0 9px rgba(201, 168, 76, 0.75)); }
}


/* Compass needle settle */
.service-circle-item:hover .ic-compass-needle {
	animation: compass-settle 2.2s ease-out forwards;
}

@keyframes compass-settle {
	0%   { transform: rotate(-130deg); }
	40%  { transform: rotate(60deg); }
	60%  { transform: rotate(-20deg); }
	78%  { transform: rotate(12deg); }
	90%  { transform: rotate(-4deg); }
	100% { transform: rotate(0deg); }
}


/* Family bob — staggered */
.service-circle-item:hover .ic-family-1 {
	animation: family-bob 0.9s ease-in-out infinite;
}

.service-circle-item:hover .ic-family-2 {
	animation: family-bob 0.9s ease-in-out 0.22s infinite;
}

.service-circle-item:hover .ic-family-3 {
	animation: family-bob 0.9s ease-in-out 0.44s infinite;
}

@keyframes family-bob {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-3.5px); }
}


/* Kill all icon-specific animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	.ic-tassel,
	.ic-dial,
	.ic-gauge-needle,
	.ic-coin-top,
	.ic-bar,
	.ic-sun,
	.ic-sun-rays,
	.ic-checkmark,
	.ic-growth-line,
	.ic-heart,
	.ic-ecg,
	.ic-cross,
	.ic-roof,
	.ic-house-walls,
	.ic-shield,
	.ic-compass-needle,
	.ic-family-1,
	.ic-family-2,
	.ic-family-3 {
		animation: none !important;
	}
}


.service-circle-label {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--color-gold);
	text-align: center;
	width: 110px;
	line-height: 1.4;
	direction: rtl;
}


.section-cta-wrapper {
	position: relative;
	z-index: 4;
	margin-top: 0.5rem;
	display: flex;
	justify-content: center;
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section {
	width: 100%;
	min-height: 100vh;
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--section-padding-y) 0;
	overflow: hidden;
}


.about-inner-wrapper {
	display: flex;
	align-items: center;
	gap: 2%;
	padding: 0;
}


.about-visual-column {
	flex: 0 0 58%;
	position: relative;
	transform: translateX(-12%);
}


.about-lion-bg {
	width: 115%;
	height: auto;
	display: block;
	margin-right: -8%;
	mix-blend-mode: screen;
}


.about-profile-image {
	position: absolute;
	width: 82%;
	top: 0;
	right: -28%;
	height: auto;
	object-fit: cover;
}


.about-text-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	position: relative;
	z-index: 1;
}


.about-body-text {
	font-size: 1.0625rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.7;
}


.about-body-text strong {
	font-weight: 700;
	color: var(--color-white);
}


.about-sub-heading {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--cta-color);
	line-height: 1.5;
}


.about-sub-heading strong {
	font-weight: 700;
	color: var(--cta-color);
}


.about-cta-button {
	margin-top: var(--spacing-cta-top);
}


/* ============================================================
   CLIENTS SECTION
   ============================================================ */

.clients-section {
	width: 100%;
	padding: var(--section-padding-y) 0;
	background-color: #fff;
	overflow: hidden;
}


.clients-mobile-grid {
	display: none;
}


.clients-heading {
	text-align: center;
	margin-bottom: 0;
	color: var(--color-navy);
}


.clients-orbit-wrapper {
	position: relative;
	width: 940px;
	height: 740px;
	margin: 0 auto;
}


.clients-video-container {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	overflow: hidden;
}


.clients-orbit-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.client-orbit-logo {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
}


.client-orbit-logo img {
	max-width: 155px;
	max-height: 70px;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}


.client-orbit-logo:hover img {
	transform: scale(1.1);
}


.client-orbit-logo--large img {
	max-width: 210px;
	max-height: 95px;
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-section {
	width: 100%;
	min-height: 100vh;
	background-color: var(--color-black);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--section-padding-y) 0;
}


.contact-inner-wrapper {
	max-width: 640px;
}


.contact-inner-wrapper .section-heading-block {
	text-align: center;
}


.contact-sub-text {
	font-size: 1.125rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 0.75rem;
}


.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 2.5rem;
}


.form-field-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}


.form-field-label {
	font-size: 0.9375rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
}


.required-mark {
	color: var(--color-gold);
	margin-right: 2px;
}


.form-text-input {
	width: 100%;
	padding: 0.875rem 1rem;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 6px;
	color: var(--color-white);
	font-size: 1rem;
	font-family: var(--font-primary);
	direction: rtl;
	transition: border-color 0.28s ease;
}


.form-text-input:focus {
	outline: none;
	border-color: var(--color-gold);
}


.form-text-input::placeholder {
	color: rgba(255, 255, 255, 0.3);
}


.form-text-input.input-error {
	border-color: #e05252;
}


.form-field-group--checkbox {
	flex-direction: row;
	align-items: flex-start;
}


.form-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
}


.form-checkbox-input {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--color-gold);
	cursor: pointer;
}


.form-checkbox-text {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}


.form-policy-link {
	color: var(--color-gold);
	text-decoration: underline;
	text-underline-offset: 2px;
}


.form-select-input {
	width: 100%;
	padding: 0.875rem 1rem 0.875rem 2.5rem;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 6px;
	color: var(--color-white);
	font-size: 1rem;
	font-family: var(--font-primary);
	direction: rtl;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 6 5-6' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: left 1rem center;
	transition: border-color 0.28s ease;
}


.form-select-input:focus {
	outline: none;
	border-color: var(--color-gold);
}


.form-select-input option {
	background-color: #0a0e1a;
	color: var(--color-white);
}


.form-select-input option[value=""] {
	color: rgba(255, 255, 255, 0.35);
}


.form-submit-button {
	width: 100%;
	padding: 1rem;
	font-size: 1.0625rem;
	margin-top: 0.5rem;
}


.form-success-message {
	padding: 1rem;
	background-color: rgba(40, 167, 69, 0.1);
	border: 1px solid rgba(40, 167, 69, 0.35);
	border-radius: 6px;
	color: #7dcd95;
	font-size: 1rem;
	text-align: center;
}


.form-error-message {
	padding: 1rem;
	background-color: rgba(224, 82, 82, 0.1);
	border: 1px solid rgba(224, 82, 82, 0.35);
	border-radius: 6px;
	color: #e07d7d;
	font-size: 1rem;
	text-align: center;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
	background-color: #fff;
	padding: 3.5rem 0 2rem;
	border-top: 1px solid #e5e5e5;
}


.footer-inner-wrapper {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--section-padding-x);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
}


.footer-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}


.footer-logo-image {
	width: 64px;
	height: 64px;
	object-fit: contain;
}


.footer-name-text {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-navy);
}


.footer-tagline-text {
	font-size: 1rem;
	font-weight: 300;
	color: var(--color-gold);
	letter-spacing: 0.1em;
}


.footer-columns {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	direction: rtl;
}


.footer-col {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}


.footer-col-header {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--color-navy);
	margin-bottom: 0.25rem;
	border-bottom: 2px solid var(--color-gold);
	padding-bottom: 0.5rem;
}



.footer-col-link {
	font-size: 1rem;
	color: #000;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}


.footer-col-link:hover {
	color: var(--color-gold);
}


.footer-contact-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	direction: rtl;
}


.footer-col-header--spacing {
	margin-top: 1.25rem;
}


.footer-social-row {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}


.footer-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #333;
	transition: color 0.25s ease, transform 0.25s ease;
}


.footer-social-icon:hover {
	color: var(--color-gold);
	transform: translateY(-3px);
}



.footer-legal-text {
	font-size: 0.9375rem;
	color: #555;
	border-top: 1px solid #e5e5e5;
	width: 100%;
	text-align: center;
	padding-top: 1.5rem;
}


.footer-policy-link {
	color: inherit;
	text-decoration: underline;
}


@media (max-width: 768px) {
	.footer-columns {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.footer-contact-link {
		justify-content: center;
	}

	.footer-social-row {
		justify-content: center;
	}

	.footer-col-header {
		text-align: center;
	}
}


/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */

#whatsapp-float-button {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	z-index: 900;
	width: 56px;
	height: 56px;
	background-color: #0E8E73;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(14, 142, 115, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	opacity: 0;
}


#whatsapp-float-button.whatsapp-visible {
	opacity: 1;
}


#whatsapp-float-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 24px rgba(14, 142, 115, 0.45);
}


/* ============================================================
   PHONE FLOAT
   ============================================================ */

#phone-float-button {
	position: fixed;
	bottom: 6.5rem;
	left: 2rem;
	z-index: 900;
	width: 56px;
	height: 56px;
	background-color: #1a1a2e;
	border: 2px solid var(--color-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	opacity: 0;
	pointer-events: none;
}


#phone-float-button.phone-visible {
	opacity: 1;
	pointer-events: auto;
}


#phone-float-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}


/* ============================================================
   COOKIE CONSENT
   ============================================================ */

#cookie-consent-banner {
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 9000;
	background-color: #111111;
	border-top: 1px solid rgba(201, 168, 76, 0.25);
	padding: 1.25rem var(--section-padding-x);
	transform: translateY(100%);
	transition: transform 0.4s ease;
}


#cookie-consent-banner.cookie-banner-visible {
	transform: translateY(0);
}


.cookie-consent-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}


.cookie-consent-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 0.25rem;
}


.cookie-consent-body {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.5;
}


.cookie-consent-actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-shrink: 0;
}


.cookie-accept-btn {
	padding: 0.625rem 1.5rem;
	background-color: var(--color-gold);
	color: var(--color-black);
	font-size: 0.9375rem;
	font-weight: 700;
	border-radius: var(--cta-radius);
	border: var(--cta-border);
	font-family: var(--font-primary);
	cursor: pointer;
	transition: background-color 0.28s ease, color 0.28s ease;
}


.cookie-accept-btn:hover {
	background-color: transparent;
	color: var(--color-gold);
}


.cookie-policy-link {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: underline;
	text-underline-offset: 2px;
	white-space: nowrap;
	transition: color 0.2s ease;
}


.cookie-policy-link:hover {
	color: var(--color-gold);
}


/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
	width: 100%;
	background-color: var(--color-navy);
	padding: var(--section-padding-y) 0;
}


.faq-heading-block {
	margin-bottom: 3rem;
	text-align: center;
}


.faq-section .section-cta-wrapper {
	margin-top: var(--section-padding-y);
}


.faq-section-subtitle {
	font-size: 1.125rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.42);
	margin-top: 0.625rem;
}


.faq-accordion-list {
	max-width: 820px;
	margin: 0 auto;
}


.faq-accordion-item {
	border-bottom: 1px solid rgba(201, 168, 76, 0.16);
}


.faq-accordion-item:first-child {
	border-top: 1px solid rgba(201, 168, 76, 0.16);
}


.faq-accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 1.125rem;
	padding: 1.625rem 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: right;
	color: var(--color-white);
	font-family: var(--font-primary);
}


.faq-item-qmark {
	font-size: 1.375rem;
	font-weight: 900;
	flex-shrink: 0;
	width: 1.5rem;
	text-align: center;
	background: linear-gradient(
		100deg,
		#8a6a1a 0%,
		var(--color-gold) 30%,
		#F5D97A 48%,
		#fff 52%,
		#F5D97A 56%,
		var(--color-gold) 70%,
		#8a6a1a 100%
	);
	background-size: 250% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: qmark-shine 3.6s linear infinite;
}


@keyframes qmark-shine {
	from { background-position: 200% center; }
	to   { background-position: -200% center; }
}


.faq-item-question {
	flex: 1;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.5;
	text-align: right;
	transition: color 0.28s ease;
}


.faq-item-chevron {
	flex-shrink: 0;
	color: var(--color-gold);
	opacity: 0.5;
	transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
}


.faq-accordion-trigger:hover .faq-item-question {
	color: var(--color-gold);
}


.faq-accordion-trigger:hover .faq-item-chevron {
	opacity: 0.85;
}


.faq-accordion-item.is-open .faq-item-question {
	color: var(--color-gold);
}


.faq-accordion-item.is-open .faq-item-chevron {
	transform: rotate(180deg);
	opacity: 1;
}


.faq-accordion-panel {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}


.faq-panel-inner {
	padding-bottom: 1.875rem;
	padding-right: 3.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}


.faq-panel-inner p {
	font-size: 1.0625rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.82;
}


.faq-panel-inner p strong {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
}


.faq-benefits-list {
	list-style: none;
	padding: 0;
	margin: 0.25rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}


.faq-benefits-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.6;
}


.faq-benefits-list li::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--color-gold);
	flex-shrink: 0;
	opacity: 0.7;
}


/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */

@media (max-width: 1024px) {

	.services-carousel-center-logo {
		width: 170px;
		height: 170px;
	}


	.services-carousel-center-logo img {
		width: 108px;
		height: 108px;
	}


	.about-inner-wrapper {
		flex-direction: column;
		gap: 0;
	}


	.about-visual-column {
		flex: unset;
		width: 75%;
	}


	.about-text-column {
		align-items: center;
		text-align: center;
		padding-top: 2.5rem;
	}


	.hero-video-background {
		object-position: 60% center;
	}

	.clients-orbit-wrapper {
		transform: scale(0.78);
		transform-origin: top center;
		margin-bottom: -163px;
	}

}


/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */

@media (max-width: 768px) {

	:root {
		--navbar-height: 60px;
		--section-padding-y: 5rem;
	}


	#top-bar {
		display: none;
	}


	#main-header {
		top: 0;
	}


	#scroll-progress-bar {
		top: var(--navbar-height);
	}


	.hero-section {
		margin-top: 0;
		height: 100vh;
	}


	.nav-shape-svg {
		display: none;
	}


	.nav-logo-wrapper {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		display: flex;
		align-items: center;
		justify-content: center;
	}


	.nav-logo-circle {
		display: flex;
		align-items: center;
		justify-content: center;
	}


	#nav-logo {
		width: 40px;
		height: 40px;
	}


	#main-header {
		background: rgba(0, 0, 0, 0.82);
	}


	.main-navigation-container {
		justify-content: space-between;
	}


	.nav-right-group,
	.nav-left-group {
		display: none;
	}


	.hamburger-toggle-button {
		display: flex;
	}


	.hero-supra-heading {
		font-size: 0.9rem;
		letter-spacing: 0.12em;
	}

	.hero-video-background {
		object-position: 65% center;
	}

	.hero-main-heading {
		font-size: clamp(2.25rem, 9vw, 3rem) !important;
		white-space: nowrap;
	}


	.hero-sub-heading {
		font-size: 0.9rem;
		white-space: normal;
	}


	.section-main-heading {
		font-size: 2rem;
	}


	.services-carousel-center-logo {
		width: 140px;
		height: 140px;
	}


	.services-carousel-center-logo img {
		width: 88px;
		height: 88px;
	}


	.service-circle-item {
		width: 104px;
	}


	.service-circle-icon-ring {
		width: 84px;
		height: 84px;
	}


	.service-circle-label {
		width: 84px;
		font-size: 0.8125rem;
		color: var(--color-gold);
	}


	.about-visual-column {
		width: 92%;
	}


	.clients-orbit-wrapper {
		display: none !important;
	}


	.clients-mobile-grid {
		display: flex !important;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 1.75rem 1.5rem;
		padding: 1.5rem 6%;
		margin-top: 0.5rem;
	}


	.clients-mobile-grid img {
		width: 90px;
		height: 44px;
		object-fit: contain;
		display: block;
		flex-shrink: 0;
	}


	.cookie-consent-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}


	#whatsapp-float-button {
		bottom: 1.5rem;
		left: 1.5rem;
	}


	#phone-float-button {
		bottom: 5.5rem;
		left: 1.5rem;
	}



	.faq-item-question {
		font-size: 1rem;
	}


	.faq-panel-inner {
		padding-right: 0;
	}

}