/* ==========================================================
   Wojoody Widgets — Shared Styles & CSS Custom Properties
   Primary: #00f2ea | Dark: #0a192f | Light: #f8fafc
   ========================================================== */

:root {
	--wojoody-primary: #00f2ea;
	--wojoody-primary-dark: #00c2ba;
	--wojoody-dark: #0a192f;
	--wojoody-slate-900: #0f172a;
	--wojoody-slate-500: #64748b;
	--wojoody-slate-400: #94a3b8;
	--wojoody-slate-100: #f1f5f9;
	--wojoody-light: #f8fafc;
	--wojoody-white: #ffffff;
	--wojoody-font-display: 'Almarai', sans-serif;
	--wojoody-font-geometric: 'Space Grotesk', sans-serif;
	--wojoody-radius: 0;
	--wojoody-radius-lg: 0.25rem;
	--wojoody-radius-xl: 0.5rem;
	--wojoody-radius-full: 9999px;
}

/* Gradient text utility */
.wojoody-gradient-text {
	background: linear-gradient(135deg, var(--wojoody-primary) 0%, var(--wojoody-primary-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Section label utility */
.wojoody-section-label {
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-size: 0.75rem;
	color: var(--wojoody-primary);
}

/* Shared container */
.wojoody-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

/* Smooth scroll */
html {
	scroll-behavior: smooth;
}

/* RTL section label border */
[dir="rtl"] .wojoody-section-label {
	border-right: 4px solid var(--wojoody-primary);
	padding-right: 1rem;
}

/* Link hover transition */
.wojoody-link-hover {
	transition: color 0.3s ease;
}

.wojoody-link-hover:hover {
	color: var(--wojoody-primary);
}

/* Card lift effect */
.wojoody-card-lift {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wojoody-card-lift:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Image hover zoom */
.wojoody-img-zoom {
	overflow: hidden;
}

.wojoody-img-zoom img {
	transition: transform 0.7s ease;
}

.wojoody-img-zoom:hover img {
	transform: scale(1.05);
}

/* Button base */
.wojoody-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-family: var(--wojoody-font-display);
}

.wojoody-btn--filled {
	background: var(--wojoody-slate-900);
	color: var(--wojoody-white);
}

.wojoody-btn--filled:hover {
	background: var(--wojoody-primary);
	color: var(--wojoody-slate-900);
}

.wojoody-btn--outline {
	background: transparent;
	border: 2px solid var(--wojoody-slate-900);
	color: var(--wojoody-slate-900);
}

.wojoody-btn--outline:hover {
	background: var(--wojoody-slate-900);
	color: var(--wojoody-white);
}

/* Form base styles */
.wojoody-input {
	width: 100%;
	padding: 0.875rem 1.25rem;
	border: 1px solid var(--wojoody-slate-100);
	background: var(--wojoody-white);
	font-family: var(--wojoody-font-display);
	font-size: 0.9375rem;
	color: var(--wojoody-slate-900);
	transition: border-color 0.3s ease;
	outline: none;
}

.wojoody-input:focus {
	border-color: var(--wojoody-primary);
}

.wojoody-textarea {
	resize: vertical;
	min-height: 120px;
}

/* Screen reader text (accessibility) */
.wojoody-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;
}

/* Elementor editor fixes */
.elementor-editor-active .wojoody-chat-float {
	pointer-events: none;
	opacity: 0.5;
}

/* Print styles */
@media print {
	.wojoody-chat-float,
	.wojoody-vertical-nav,
	.wojoody-horizontal-header {
		display: none !important;
	}
}
