/*
Theme Name: Uphory
Theme URI: https://uphory.com
Author: Uphory Digital Agency
Author URI: https://uphory.com
Description: A blazing-fast, zero-bloat custom WordPress theme for Uphory Digital Agency. Built with semantic HTML5, modern CSS3, and Vanilla JavaScript.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: uphory
*/

/* ==========================================================================
   1. CSS Custom Properties (Brand Guidelines)
   ========================================================================== */

:root {
	/* Brand Colors — Purple / Pink Palette */
	--bg-dark: #7B2D8E;
	--footer-bg: #7B2D8E;
	--primary-purple: #7B2D8E;
	--accent-gradient: linear-gradient(135deg, #FF6B35 0%, #EE4D89 100%);
	--heading-gradient: linear-gradient(135deg, #7B2D8E 0%, #EE4D89 100%);
	--accent-red: #EE4D89;
	--accent-pink: #E84393;
	--glass-bg: rgba(255, 255, 255, 0.7);
	--text-dark: #1A1A2E;
	--text-light: #ffffff;
	--text-muted: #5A5F7D;

	/* Supplementary */
	--card-bg: #ffffff;
	--card-border: rgba(0, 0, 0, 0.06);
	--section-alt-bg: #F4F6F9;
	--gradient-purple: linear-gradient(135deg, #7B2D8E 0%, #E84393 100%);

	/* Typography — Arabic: Cairo + Tajawal */
	--font-heading: 'Cairo', 'Syne', sans-serif;
	--font-body: 'Tajawal', 'Poppins', sans-serif;

	/* Spacing */
	--section-padding: 40px 0;
	--container-width: 1200px;
	--gap: 30px;

	/* Transitions */
	--transition-fast: 0.3s ease;
	--transition-medium: 0.5s ease;
	--transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. Modern Reset
   ========================================================================== */

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-dark);
	background-color: #ffffff;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	direction: rtl;
	text-align: right;
}

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

a {
	text-decoration: none;
	color: inherit;
	transition: color var(--transition-fast);
}

a:visited {
	color: inherit;
}

ul,
ol {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-dark);
	background: var(--heading-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h4 {
	font-size: clamp(1.1rem, 2vw, 1.25rem);
}

h5 {
	font-size: 1rem;
}

p {
	color: var(--text-muted);
	margin-bottom: 1rem;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}

/* ==========================================================================
   3. Layout Utilities
   ========================================================================== */

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
}

.section-padding {
	padding: var(--section-padding);
}

.section-header {
	text-align: center;
	margin-bottom: 24px;
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--accent-red);
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.section-label svg {
	width: 24px;
	height: 11px;
	flex-shrink: 0;
}

.section-header h2 {
	margin-bottom: 0;
}

.gradient-text {
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Utility: Alternate Section Background */
.bg-alternate {
	background-color: var(--section-alt-bg);
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	border-radius: 50px;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 600;
	transition: all var(--transition-fast);
	white-space: nowrap;
}

.btn svg {
	width: 20px;
	height: 14px;
	flex-shrink: 0;
}

.btn-primary {
	background: var(--accent-gradient);
	color: var(--text-light);
	box-shadow: 0 4px 20px rgba(238, 77, 137, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(238, 77, 137, 0.45);
}

.btn-secondary {
	background: var(--bg-dark);
	color: var(--text-light);
}

.btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(123, 45, 142, 0.25);
}

.btn-outline {
	border: 2px solid var(--accent-red);
	color: var(--text-dark);
	background: transparent;
}

.btn-outline:hover {
	background: var(--accent-gradient);
	border-color: transparent;
	transform: translateY(-3px);
}

.btn-link {
	color: var(--text-dark);
	padding: 0;
	font-weight: 600;
	gap: 8px;
}

.btn-link:hover {
	color: var(--accent-red);
}

.btn-link::after {
	content: '→';
	transition: transform var(--transition-fast);
}

.btn-link:hover::after {
	transform: translateX(5px);
}

/* ==========================================================================
   5. Header / Navigation
   ========================================================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 20px 0;
	transition: all var(--transition-fast);
}

.site-header.scrolled {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	padding: 12px 0;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
}

.site-logo a {
	display: inline-flex;
	align-items: center;
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--text-dark);
	letter-spacing: -0.5px;
}

.site-logo img {
	height: 40px;
	width: auto;
}

.site-logo {
	justify-self: start;
	display: flex;
	align-items: center;
}

.main-nav {
	display: contents;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 32px;
	justify-self: center;
}

.header-actions {
	justify-self: end;
	display: flex;
	align-items: center;
}

.nav-menu li {
	position: relative;
}

.nav-menu li a {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--text-dark);
	padding: 8px 0;
	position: relative;
}

.nav-menu li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent-gradient);
	transition: width var(--transition-fast);
}

.nav-menu li a:hover::after,
.nav-menu li.active a::after {
	width: 100%;
}

/* Dropdown */
.nav-menu li .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(15px);
	border-radius: 12px;
	padding: 12px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all var(--transition-fast);
	border: 1px solid var(--card-border);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.nav-menu li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-menu li .sub-menu li a {
	display: block;
	padding: 8px 20px;
	font-size: 0.875rem;
}

.nav-menu li .sub-menu li a:hover {
	color: var(--accent-red);
}

.nav-menu li .sub-menu li a::after {
	display: none;
}

/* Header CTA */
.header-cta .btn {
	padding: 10px 24px;
	font-size: 0.875rem;
	color: #ffffff !important;
}

.header-cta .btn:visited {
	color: #ffffff !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 0 !important;
	cursor: pointer;
	z-index: 1001;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
}

.menu-toggle span {
	display: block;
	width: 28px;
	height: 2px;
	background: var(--text-dark);
	transition: all var(--transition-fast);
	border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   6. Hero Section
   ========================================================================== */

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 120px;
	padding-bottom: 80px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #F0F2FF 0%, #ffffff 100%);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-subtitle {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--accent-red);
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 20px;
}

.hero-title {
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	margin-bottom: 24px;
	line-height: 1.15;
}

.hero-title .typing-wrapper {
	display: inline;
}

.hero-title .typing-text {
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.typing-cursor {
	display: inline-block;
	width: 3px;
	height: 1em;
	background: var(--accent-red);
	margin-left: 2px;
	animation: blink 0.7s infinite;
	vertical-align: text-bottom;
}

@keyframes blink {

	0%,
	50% {
		opacity: 1;
	}

	51%,
	100% {
		opacity: 0;
	}
}

.hero-description {
	font-size: 1.0625rem;
	color: var(--text-muted);
	margin-bottom: 36px;
	max-width: 500px;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-image img {
	width: 100%;
	max-width: 596px;
	position: relative;
	z-index: 2;
}

/* Floating Shapes */
.hero-shape {
	position: absolute;
	z-index: 1;
	animation: float 6s ease-in-out infinite;
}

.hero-shape--1 {
	top: 0;
	right: 0;
	width: 88px;
	animation-delay: 0s;
}

.hero-shape--2 {
	top: 20%;
	left: -20px;
	width: 199px;
	animation-delay: -2s;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-25px);
	}
}

/* Abstract CSS Background Shapes */
.hero-section::before,
.hero-section::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.08;
	z-index: 0;
}

.hero-section::before {
	width: 500px;
	height: 500px;
	background: var(--primary-blue);
	top: -100px;
	right: -100px;
}

.hero-section::after {
	width: 400px;
	height: 400px;
	background: var(--accent-red);
	bottom: -50px;
	left: -100px;
}

/* Header Top Shape */
.header-shape {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -1;
	pointer-events: none;
}

.header-shape img {
	width: 100%;
}

/* ==========================================================================
   7. Features Section (Why Choose Uphory)
   ========================================================================== */

.features-section {
	position: relative;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.feature-card {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 20px;
	padding: 32px 20px;
	text-align: center;
	transition: all var(--transition-medium);
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.feature-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--accent-gradient);
	opacity: 0;
	transition: opacity var(--transition-medium);
	z-index: 0;
	border-radius: 20px;
}

.feature-card:hover::before,
.feature-card.active::before {
	opacity: 1;
}

.feature-card>* {
	position: relative;
	z-index: 1;
}

.feature-card:hover,
.feature-card.active {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(238, 77, 137, 0.2);
}

.feature-card:hover h3,
.feature-card.active h3,
.feature-card:hover p,
.feature-card.active p,
.feature-card:hover .btn-link,
.feature-card.active .btn-link {
	color: var(--text-light);
	-webkit-text-fill-color: #ffffff;
}

.feature-card .icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-card .icon img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.feature-card h3 {
	margin-bottom: 12px;
	font-size: 1.25rem;
}

.feature-card p {
	margin-bottom: 16px;
	font-size: 0.9rem;
}

.feature-card .btn-link {
	font-size: 0.875rem;
}

.feature-card .shape-element {
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 120px;
	opacity: 0.1;
	z-index: 0;
}

/* ==========================================================================
   8. Compare Section
   ========================================================================== */

.compare-section {
	position: relative;
	padding-top: 0 !important;
}

.compare-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}



.compare-content h2 {
	margin-bottom: 12px;
}

.compare-content p {
	margin-bottom: 8px;
}

.compare-content .btn {
	margin-top: 16px;
}

.compare-image img {
	width: 100%;
	border-radius: 20px;
}

/* ==========================================================================
   9. Workflow Section
   ========================================================================== */

.workflow-section {
	position: relative;
}

.workflow-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.workflow-image img {
	width: 100%;
	border-radius: 20px;
}



.workflow-content h2 {
	margin-bottom: 16px;
}

.workflow-content>p {
	margin-bottom: 24px;
}

.workflow-list {
	margin-bottom: 32px;
}

.workflow-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 0.9375rem;
	color: var(--text-muted);
}

.workflow-list li svg {
	width: 16px;
	height: 14px;
	flex-shrink: 0;
	margin-top: 4px;
}

/* ==========================================================================
   10. Services Section
   ========================================================================== */

.services-section {
	position: relative;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 24px;
}

.service-card {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 20px;
	padding: 32px 24px;
	text-align: center;
	transition: all var(--transition-medium);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(123, 45, 142, 0.12);
	border-bottom: 3px solid var(--accent-red);
}

.service-card .icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-card .icon img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.service-card h4 {
	margin-bottom: 12px;
	font-size: 1.125rem;
}

.service-card p {
	font-size: 0.9rem;
	margin-bottom: 16px;
}

/* Download CTA Bar */
.download-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--bg-dark);
	border: none;
	border-radius: 16px;
	padding: 24px 40px;
	margin-top: var(--gap);
}

.download-cta p {
	margin: 0;
	font-size: 1.125rem;
	color: var(--text-light);
	font-weight: 500;
	-webkit-text-fill-color: #ffffff;
}

/* ==========================================================================
   11. Team Section
   ========================================================================== */

.team-section {
	position: relative;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gap);
}

.team-card {
	border-radius: 20px;
	overflow: hidden;
	transition: all var(--transition-medium);
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-card .team-img {
	width: 100%;
	height: 280px;
	position: relative;
	overflow: hidden;
}

.team-card .team-img .portfolio-img {
	width: 100%;
	height: auto;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transition: transform 4s ease;
}

.team-card:hover .team-img .portfolio-img {
	transform: translateY(calc(-100% + 280px));
}

.team-card .team-img .social-icons {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 16px;
	background: linear-gradient(to top, rgba(14, 24, 113, 0.9), transparent);
	transform: translateY(100%);
	transition: transform var(--transition-fast);
}

.team-card:hover .team-img .social-icons {
	transform: translateY(0);
}

.team-card .social-icons a {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--glass-bg);
	border: 1px solid var(--card-border);
	font-size: 0.875rem;
	color: var(--text-light);
	transition: all var(--transition-fast);
}

.team-card .social-icons a:hover {
	background: var(--accent-gradient);
	border-color: transparent;
}

.team-card .content {
	padding: 20px;
	text-align: center;
}

.team-card .content h4 {
	margin-bottom: 4px;
	font-size: 1.125rem;
}

.team-card .content p {
	font-size: 0.875rem;
	margin-bottom: 0;
}

/* ==========================================================================
   12. Pricing Section
   ========================================================================== */

.pricing-section {
	position: relative;
}

.pricing-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 48px;
}

.pricing-toggle span {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-muted);
	transition: color var(--transition-fast);
}

.pricing-toggle span.active {
	color: var(--text-dark);
}

.toggle-switch {
	width: 56px;
	height: 30px;
	background: #E8EAF0;
	border: 2px solid var(--card-border);
	border-radius: 30px;
	position: relative;
	cursor: pointer;
	transition: background var(--transition-fast);
}

.toggle-switch::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--accent-gradient);
	transition: transform var(--transition-fast);
}

.toggle-switch.yearly::after {
	transform: translateX(26px);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gap);
}

.pricing-card {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 20px;
	padding: 48px 36px;
	text-align: center;
	transition: all var(--transition-medium);
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pricing-card:hover,
.pricing-card.featured {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(123, 45, 142, 0.12);
	border-bottom: 3px solid var(--accent-red);
}

.pricing-card.featured {
	border-color: var(--accent-red);
}

.pricing-card .pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent-gradient);
	color: var(--text-light);
	padding: 4px 20px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.pricing-card .plan-name {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.pricing-card .plan-price {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--text-dark);
	-webkit-text-fill-color: unset;
}

.pricing-card .plan-price .currency {
	font-size: 1.5rem;
	vertical-align: super;
}

.pricing-card .plan-price .period {
	font-size: 1rem;
	font-weight: 400;
	color: var(--text-muted);
}

.pricing-card .plan-description {
	font-size: 0.875rem;
	margin-bottom: 32px;
}

.pricing-card .plan-features {
	text-align: left;
	margin-bottom: 32px;
}

.pricing-card .plan-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--card-border);
	font-size: 0.9375rem;
	color: var(--text-muted);
}

.pricing-card .plan-features li:last-child {
	border-bottom: none;
}

.pricing-card .plan-features li .check {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(238, 77, 137, 0.15);
	color: var(--accent-red);
	font-size: 0.7rem;
	flex-shrink: 0;
}

.pricing-card .btn {
	width: 100%;
	justify-content: center;
}

/* ==========================================================================
   13. FAQ Section
   ========================================================================== */

.faq-section {
	position: relative;
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 16px;
	overflow: hidden;
	transition: all var(--transition-fast);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
	border-color: rgba(238, 77, 137, 0.3);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-dark);
	-webkit-text-fill-color: var(--text-dark);
	transition: color var(--transition-fast);
	gap: 16px;
	width: 100%;
	text-align: right;
	background: none;
	border: none;
}

.faq-question:hover {
	color: var(--accent-red);
}

.faq-question .faq-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.25rem;
	transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--transition-medium);
}

.faq-answer-inner {
	padding: 0 24px 20px;
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.8;
	text-align: right;
}

.faq-image img {
	width: 100%;
	max-width: 500px;
}

/* ==========================================================================
   14. Partners / Trusted By Section
   ========================================================================== */

.partners-section {
	position: relative;
}

.partners-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.partner-logos {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 24px;
}

.partner-logos.row-3 {
	grid-template-columns: repeat(3, 1fr);
}

.partner-logo {
	background: #ffffff;
	border: 1px solid var(--card-border);
	border-radius: 12px;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition-fast);
	height: 70px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.partner-logo:hover {
	border-color: var(--primary-blue);
	transform: scale(1.05);
}

.partner-logo img {
	max-height: 40px;
	opacity: 0.7;
	transition: opacity var(--transition-fast);
}

.partner-logo:hover img {
	opacity: 1;
}



.partners-content h2 {
	margin-bottom: 24px;
}

.tech-capsule {
	background: #f5f5f5;
	border-radius: 50px;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all var(--transition-fast);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.tech-capsule:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	background: #ffffff;
}

.tech-capsule img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.tech-capsule span {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text-dark);
}

/* ==========================================================================
   15. Testimonials Section
   ========================================================================== */

.testimonials-section {
	position: relative;
}

.testimonial-slider {
	position: relative;
	overflow: hidden;
}

.testimonial-track {
	display: flex;
	transition: transform var(--transition-slow);
}

.testimonial-card {
	min-width: 100%;
	padding: 0 20px;
}

.testimonial-card-inner {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 20px;
	padding: 48px 40px;
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-card h4 {
	font-size: 1.25rem;
	margin-bottom: 16px;
}

.testimonial-card p {
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 24px;
}

.testimonial-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
}

.testimonial-author img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial-author h5 {
	font-size: 1rem;
	margin-bottom: 2px;
}

.testimonial-author small {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.testimonial-stars svg {
	width: 105px;
}

.testimonial-quote {
	position: absolute;
	bottom: 20px;
	right: 30px;
	opacity: 0.05;
}

/* Slider Navigation */
.slider-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 32px;
}

.slider-nav button {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid var(--card-border);
	color: var(--text-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
	transition: all var(--transition-fast);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.slider-nav button:hover {
	background: var(--accent-gradient);
	border-color: transparent;
}

/* ==========================================================================
   16. Footer — Dark Blue with White Text (No Gradients)
   ========================================================================== */

footer,
.site-footer,
.footer-section {
	background: #7B2D8E !important;
	padding-top: 80px;
	position: relative;
}

/* Kill scroll-reveal on ALL footer children */
.site-footer .reveal,
.site-footer .reveal.revealed,
footer .reveal,
footer .reveal.revealed {
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
	transition: none !important;
}

/* Force ALL headings inside footer to pure white — no gradients */
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	background: none !important;
	-webkit-background-clip: unset !important;
	background-clip: unset !important;
}

/* Force ALL text, links, paragraphs inside footer to white */
.site-footer,
.site-footer p,
.site-footer a,
.site-footer li,
.site-footer small,
.site-footer span,
.site-footer label,
.site-footer div,
footer,
footer p,
footer a,
footer li,
footer small,
footer span {
	color: rgba(255, 255, 255, 0.75) !important;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.75) !important;
}

.site-footer a:hover,
footer a:hover {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
	gap: 40px;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-brand .site-logo {
	margin-bottom: 20px;
}

.footer-brand .site-logo a {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

.footer-brand p {
	font-size: 0.9rem;
	margin-bottom: 24px;
}

.footer-social {
	display: flex;
	gap: 12px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	color: rgba(255, 255, 255, 0.75) !important;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.75) !important;
	transition: all var(--transition-fast);
}

.footer-social a:hover {
	background: var(--accent-gradient) !important;
	border-color: transparent !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

.footer-links h4 {
	font-size: 1.125rem;
	margin-bottom: 24px;
	position: relative;
}

.footer-links ul li {
	margin-bottom: 12px;
}

.footer-links ul li a {
	font-size: 0.9rem;
	transition: all var(--transition-fast);
}

.footer-links ul li a:hover {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	padding-left: 6px;
}

.footer-newsletter h4 {
	font-size: 1.125rem;
	margin-bottom: 16px;
}

.footer-newsletter p {
	font-size: 0.875rem;
	margin-bottom: 20px;
}

.newsletter-form {
	display: flex;
	gap: 0;
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 50px;
	padding: 4px;
	overflow: hidden;
}

.newsletter-form input {
	flex: 1;
	background: transparent !important;
	border: none;
	padding: 12px 20px;
	font-family: var(--font-body);
	font-size: 0.875rem;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	outline: none;
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.5) !important;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.5) !important;
}

.newsletter-form button {
	background: var(--accent-gradient) !important;
	border: none;
	border-radius: 50px;
	padding: 12px 24px;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
	transition: all var(--transition-fast);
	white-space: nowrap;
}

.newsletter-form button:hover {
	box-shadow: 0 4px 20px rgba(251, 81, 85, 0.4);
}

.footer-bottom {
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-bottom p {
	font-size: 0.8125rem;
	margin: 0;
}

.footer-bottom-links {
	display: flex;
	gap: 24px;
}

.footer-bottom-links a {
	font-size: 0.8125rem;
}

.footer-bottom-links a:hover {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

/* ==========================================================================
   17. Scroll Reveal Animations
   ========================================================================== */

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 {
	transition-delay: 0.1s;
}

.reveal-delay-2 {
	transition-delay: 0.2s;
}

.reveal-delay-3 {
	transition-delay: 0.3s;
}

.reveal-delay-4 {
	transition-delay: 0.4s;
}

/* ==========================================================================
   18. Scroll-to-Top Button
   ========================================================================== */

.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--accent-gradient);
	color: var(--text-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all var(--transition-fast);
	box-shadow: 0 4px 20px rgba(251, 81, 85, 0.3);
}

.scroll-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-to-top:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(238, 77, 137, 0.5);
}

/* ==========================================================================
   19. Language Switcher
   ========================================================================== */

.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}


/* ==========================================================================
   20. Custom Pricing (MAD — No Toggle)
   ========================================================================== */

.custom-price {
	font-size: 1.5rem !important;
	background: var(--heading-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ==========================================================================
   21. Blog — Navigation Bar
   ========================================================================== */

.blog-nav-section {
	background: var(--section-alt-bg);
	border-bottom: 1px solid var(--card-border);
}

.blog-nav {
	padding: 12px 0;
	overflow-x: auto;
}

.blog-nav-menu {
	list-style: none;
	display: flex;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.blog-nav-menu li a {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-muted);
	text-decoration: none;
	transition: all var(--transition-fast);
	white-space: nowrap;
	border: 1px solid transparent;
}

.blog-nav-menu li a:hover,
.blog-nav-menu li.current-menu-item a {
	color: var(--text-light);
	background: var(--accent-gradient);
	border-color: transparent;
}

/* ==========================================================================
   22. Magazine Grid Layout
   ========================================================================== */

.magazine-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 16px;
}

/* Main card spans entire left column (2 rows) */
.mag-card--main {
	grid-column: 1;
	grid-row: 1 / 3;
	min-height: 480px;
}

/* Small cards fill the right column */
.mag-card--small {
	min-height: 230px;
}

/* 5th card: span bottom full width if present */
.mag-card--small:nth-child(4),
.mag-card--small:nth-child(5) {
	min-height: 230px;
}

.mag-card {
	position: relative;
	display: flex;
	align-items: flex-end;
	border-radius: 16px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-color: var(--bg-dark);
	text-decoration: none;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.mag-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(123, 45, 142, 0.15);
}

.mag-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
	border-radius: 16px;
	transition: background var(--transition-fast);
}

.mag-card:hover .mag-overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 55%, transparent 100%);
}

.mag-content {
	position: relative;
	z-index: 2;
	padding: 28px 24px;
	width: 100%;
}

.mag-cat {
	display: inline-block;
	padding: 3px 12px;
	border-radius: 20px;
	background: var(--accent-gradient);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.mag-title {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	background: none !important;
	line-height: 1.35;
	margin-bottom: 8px;
}

.mag-card--main .mag-title {
	font-size: 1.75rem;
	font-weight: 800;
}

.mag-card--small .mag-title {
	font-size: 1rem;
	font-weight: 700;
}

.mag-date {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   22b. Sidebar — Social Links
   ========================================================================== */

.sidebar-social-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 10px;
	border: 1px solid var(--card-border);
	background: var(--card-bg);
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 500;
	transition: all var(--transition-fast);
}

.social-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.social-facebook:hover {
	background: #1877F2;
	color: #fff;
	border-color: #1877F2;
}

.social-x:hover {
	background: #000;
	color: #fff;
	border-color: #000;
}

.social-instagram:hover {
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
	color: #fff;
	border-color: transparent;
}

.social-linkedin:hover {
	background: #0A66C2;
	color: #fff;
	border-color: #0A66C2;
}

/* ==========================================================================
   22c. Sidebar — Trending Posts
   ========================================================================== */

.trending-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--card-border);
	text-decoration: none;
	color: var(--text-dark);
	transition: all var(--transition-fast);
}

.trending-item:last-child {
	border-bottom: none;
}

.trending-item:hover {
	padding-right: 6px;
}

.trending-rank {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--section-alt-bg);
	font-size: 0.8rem;
	font-weight: 800;
	color: var(--accent-red);
}

.trending-content {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 0;
}

.trending-thumb {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	border-radius: 8px;
	overflow: hidden;
}

.trending-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.trending-info {
	min-width: 0;
}

.trending-info h5 {
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 2px;
	color: var(--text-dark);
	-webkit-text-fill-color: var(--text-dark);
	background: none !important;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.trending-date {
	font-size: 0.7rem;
	color: var(--text-muted);
}

.sidebar-categories ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-categories ul li {
	margin-bottom: 0;
}

.sidebar-categories ul li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--card-border);
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.875rem;
	transition: color var(--transition-fast);
}

.sidebar-categories ul li:last-child a {
	border-bottom: none;
}

.sidebar-categories ul li a:hover {
	color: var(--accent-red);
}

.no-trending {
	font-size: 0.85rem;
	color: var(--text-muted);
	text-align: center;
	padding: 20px 0;
}

/* ==========================================================================
   22d. Single Post — With Sidebar Layout
   ========================================================================== */

.single-with-sidebar {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 40px;
	align-items: start;
}

.single-main-col {
	min-width: 0;
}

/* ==========================================================================
   22e. Inline Share Buttons
   ========================================================================== */

.single-share-section {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid var(--card-border);
}

.single-share-section h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--text-dark);
	-webkit-text-fill-color: var(--text-dark);
	background: none !important;
}

.share-buttons-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.share-btn-inline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 10px;
	border: 1px solid var(--card-border);
	background: var(--card-bg);
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 500;
	transition: all var(--transition-fast);
}

.share-btn-inline:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.share-btn-inline.share-facebook:hover {
	background: #1877F2;
	color: #fff;
	border-color: #1877F2;
}

.share-btn-inline.share-x:hover {
	background: #000;
	color: #fff;
	border-color: #000;
}

.share-btn-inline.share-whatsapp:hover {
	background: #25D366;
	color: #fff;
	border-color: #25D366;
}

.share-btn-inline.share-linkedin:hover {
	background: #0A66C2;
	color: #fff;
	border-color: #0A66C2;
}

/* ==========================================================================
   22f. Author Box
   ========================================================================== */

.author-box {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-top: 40px;
	padding: 32px;
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 16px;
}

.author-avatar img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 3px solid var(--accent-red);
}

.author-info {
	flex: 1;
}

.author-label {
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--accent-red);
	margin-bottom: 4px;
	display: block;
}

.author-name {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--text-dark);
	-webkit-text-fill-color: var(--text-dark);
	background: none !important;
}

.author-bio {
	font-size: 0.875rem;
	color: var(--text-muted);
	line-height: 1.7;
}

/* ==========================================================================
   23. Blog — Post Cards Grid
   ========================================================================== */

/* Blog Hero */
.blog-hero-section {
	padding: 160px 20px 60px;
	text-align: center;
}

.blog-hero-section h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	margin-bottom: 16px;
}

.blog-hero-subtitle {
	font-size: 1.0625rem;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
}

.blog-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.blog-post-card {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 16px;
	overflow: hidden;
	transition: all var(--transition-fast);
}

.blog-post-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(123, 45, 142, 0.1);
}

.blog-post-thumb {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

.blog-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-thumb img {
	transform: scale(1.05);
}

.blog-post-body {
	padding: 20px;
}

.blog-post-cat {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 3px 10px;
	border-radius: 20px;
	background: rgba(238, 77, 137, 0.1);
	color: var(--accent-red);
	text-decoration: none;
	margin-bottom: 10px;
}

.blog-post-title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 8px;
}

.blog-post-title a {
	color: var(--text-dark);
	text-decoration: none;
	-webkit-text-fill-color: var(--text-dark);
	background: none !important;
}

.blog-post-title a:hover {
	color: var(--accent-red);
	-webkit-text-fill-color: var(--accent-red);
}

.blog-post-excerpt {
	font-size: 0.85rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 12px;
}

.blog-post-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.75rem;
	color: var(--text-muted);
}

.meta-read {
	color: var(--accent-red);
	font-weight: 500;
}

.no-posts {
	grid-column: 1 / -1;
	text-align: center;
	padding: 80px 20px;
}

/* ==========================================================================
   23b. Blog — Pagination
   ========================================================================== */

.blog-pagination {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	width: 100%;
}

.blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	border-radius: 8px;
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	color: var(--text-dark);
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all var(--transition-fast);
}

.blog-pagination a.page-numbers:hover {
	background: rgba(238, 77, 137, 0.1);
	color: var(--accent-red);
	border-color: rgba(238, 77, 137, 0.2);
}

.blog-pagination .current {
	background: var(--accent-gradient);
	color: #fff;
	border-color: transparent;
}

/* ==========================================================================
   24. Blog — Sidebar
   ========================================================================== */

.blog-sidebar {
	position: sticky;
	top: 24px;
}

.sidebar-widget {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 16px;
	padding: 24px;
	margin-bottom: 24px;
}

.sidebar-widget .widget-title {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--accent-red);
}

.sidebar-widget ul {
	list-style: none;
	padding: 0;
}

.sidebar-widget ul li {
	margin-bottom: 10px;
}

.sidebar-widget ul li a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color var(--transition-fast);
}

.sidebar-widget ul li a:hover {
	color: var(--accent-red);
}

/* ==========================================================================
   25. Single Post — Hero
   ========================================================================== */

.single-hero {
	position: relative;
	min-height: 450px;
	background-size: cover;
	background-position: center;
	background-color: var(--bg-dark);
	display: flex;
	align-items: flex-end;
}

.single-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.single-hero-content {
	position: relative;
	z-index: 2;
	padding-bottom: 48px;
	color: #ffffff;
	max-width: 800px;
	text-align: center;
	margin: 0 auto;
	width: 100%;
}

.single-hero-cat {
	display: inline-block;
	padding: 5px 16px;
	border-radius: 20px;
	background: var(--accent-gradient);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	margin-bottom: 16px;
}

.single-hero-content h1 {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 20px;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	background: none !important;
}

.single-hero-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
}

.meta-author-block {
	display: flex;
	align-items: center;
	gap: 12px;
}

.meta-author-block img {
	border-radius: 50%;
	width: 44px;
	height: 44px;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.meta-author-block strong {
	display: block;
	font-size: 0.9rem;
	color: #fff;
}

.meta-author-block span {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   26. Single Post — Content & Social Share
   ========================================================================== */

.single-layout {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 40px;
	max-width: 860px;
	margin: 0 auto;
}

.social-share-bar {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding-top: 8px;
}

.share-label {
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	writing-mode: vertical-rl;
	margin-bottom: 8px;
}

.share-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	color: var(--text-muted);
	text-decoration: none;
	transition: all var(--transition-fast);
}

.share-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-facebook:hover {
	background: #1877F2;
	color: #fff;
	border-color: #1877F2;
}

.share-x:hover {
	background: #000;
	color: #fff;
	border-color: #000;
}

.share-linkedin:hover {
	background: #0A66C2;
	color: #fff;
	border-color: #0A66C2;
}

.share-whatsapp:hover {
	background: #25D366;
	color: #fff;
	border-color: #25D366;
}

.single-post-content {
	min-width: 0;
}

.post-content-body {
	font-size: 1.05rem;
	line-height: 1.9;
	color: var(--text-dark);
}

.post-content-body h2,
.post-content-body h3,
.post-content-body h4 {
	margin-top: 2em;
	margin-bottom: 0.75em;
}

.post-content-body p {
	margin-bottom: 1.5em;
}

.post-content-body img {
	border-radius: 12px;
	margin: 2em 0;
}

.post-content-body blockquote {
	border-right: 4px solid var(--accent-red);
	padding: 20px 24px;
	margin: 2em 0;
	background: var(--section-alt-bg);
	border-radius: 0 12px 12px 0;
	font-style: italic;
	color: var(--text-muted);
}

.post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--card-border);
}

.tag-link {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 20px;
	background: var(--section-alt-bg);
	color: var(--text-muted);
	font-size: 0.8rem;
	text-decoration: none;
	transition: all var(--transition-fast);
}

.tag-link:hover {
	background: var(--accent-gradient);
	color: #fff;
}

/* ==========================================================================
   27. Related Posts Grid
   ========================================================================== */

.related-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* ==========================================================================
   28. Blog Pagination
   ========================================================================== */

.blog-pagination {
	margin-top: 48px;
	display: flex;
	justify-content: center;
}

.blog-pagination .nav-links {
	display: flex;
	gap: 8px;
	align-items: center;
}

.blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	color: var(--text-muted);
	transition: all var(--transition-fast);
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
	background: var(--accent-gradient);
	color: #fff;
	border-color: transparent;
}

.blog-pagination .prev,
.blog-pagination .next {
	width: auto;
	padding: 0 16px;
	gap: 6px;
}

/* ==========================================================================
   29. Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
	:root {
		--section-padding: 80px 0;
	}

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

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

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

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

	.pricing-card:last-child {
		grid-column: span 2;
		max-width: 400px;
		justify-self: center;
	}

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

	/* Blog responsive */
	.blog-posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.related-posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.single-with-sidebar {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	:root {
		--section-padding: 60px 0;
		--gap: 20px;
	}

	/* Header */
	.header-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.menu-toggle {
		display: flex;
	}

	.main-nav {
		display: flex;
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 360px;
		height: 100vh;
		background: rgba(255, 255, 255, 0.97);
		backdrop-filter: blur(20px);
		box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		padding: 80px 30px 30px;
		gap: 0;
		transition: right var(--transition-fast);
		overflow-y: auto;
	}

	.main-nav.open {
		right: 0;
	}

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.nav-menu li a {
		display: block;
		padding: 14px 0;
		border-bottom: 1px solid var(--card-border);
	}

	.nav-menu li .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
		backdrop-filter: none;
		border: none;
		border-radius: 0;
		padding: 0 20px 0 0;
	}

	.header-cta {
		margin-top: 24px;
	}

	.header-cta .btn {
		width: 100%;
		justify-content: center;
	}

	/* Overlay */
	.nav-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transition: all var(--transition-fast);
	}

	.nav-overlay.active {
		opacity: 1;
		visibility: visible;
	}

	/* Hero */
	.hero-grid {
		display: flex;
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.hero-content {
		display: contents;
	}

	.hero-subtitle {
		order: 1;
		margin-bottom: 10px;
	}

	.hero-title {
		order: 2;
		margin-bottom: 20px;
	}

	.hero-image {
		order: 3;
		margin-bottom: 20px;
	}

	.hero-description {
		order: 4;
		max-width: 100%;
	}

	.hero-buttons {
		order: 5;
		justify-content: center;
	}

	/* Sections */
	.compare-grid,
	.workflow-grid,
	.faq-grid,
	.partners-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.faq-image {
		display: none;
	}

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

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

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

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

	.pricing-card:last-child {
		grid-column: span 1;
		max-width: 100%;
	}

	.download-cta {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	/* Blog responsive */
	.blog-posts-grid {
		grid-template-columns: 1fr;
	}

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

	.mag-card--main {
		grid-column: 1;
		grid-row: auto;
		min-height: 300px;
	}

	.mag-card--small {
		min-height: 200px;
	}

	.single-with-sidebar {
		grid-template-columns: 1fr;
	}

	.single-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.social-share-bar {
		position: static;
		flex-direction: row;
		justify-content: center;
		padding: 0;
		order: -1;
	}

	.share-label {
		writing-mode: horizontal-tb;
		margin-bottom: 0;
	}

	.single-hero-content h1 {
		font-size: 1.75rem;
	}

	.related-posts-grid {
		grid-template-columns: 1fr;
	}

	.header-actions {
		flex-direction: column;
		gap: 12px;
		align-items: stretch;
	}

	.author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.share-buttons-row {
		justify-content: center;
	}

	.sidebar-social-links {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	:root {
		--section-padding: 48px 0;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-buttons .btn {
		justify-content: center;
	}

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

	.partner-logos {
		grid-template-columns: repeat(2, 1fr);
	}

	.partner-logos.row-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.testimonial-card-inner {
		padding: 32px 24px;
	}

	.testimonial-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
}

/* ==========================================================================
   20. WordPress Core Styles
   ========================================================================== */

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--bg-dark);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: var(--text-light);
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* ==========================================================================
   Order Page — Form & Messages
   ========================================================================== */

.order-section {
	min-height: 80vh;
	display: flex;
	align-items: center;
	padding-top: 140px;
	background: linear-gradient(180deg, #F0F2FF 0%, #ffffff 100%);
}

.order-form-wrapper {
	max-width: 640px;
	margin: 0 auto;
	background: var(--card-bg);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--card-border);
}

.order-form .form-group {
	margin-bottom: 24px;
}

.order-form label {
	display: block;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--text-dark);
	margin-bottom: 8px;
	background: none;
	-webkit-text-fill-color: var(--text-dark);
}

.order-form label .required {
	color: var(--accent-red);
	-webkit-text-fill-color: var(--accent-red);
}

.order-form input[type="text"],
.order-form input[type="tel"],
.order-form select,
.order-form textarea {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid var(--card-border);
	border-radius: 14px;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	color: var(--text-dark);
	background: #fafbfc;
	transition: all var(--transition-fast);
	outline: none;
	direction: rtl;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
	border-color: var(--accent-red);
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(238, 77, 137, 0.1);
}

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

.order-form select {
	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 5 5-5' stroke='%235A5F7D' stroke-width='2' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: left 16px center;
	padding-left: 40px;
}

.form-submit {
	margin-top: 32px;
	text-align: center;
}

.form-submit .btn {
	width: 100%;
	justify-content: center;
	padding: 16px 32px;
	font-size: 1rem;
}

/* Success Message */
.order-success-message {
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
	padding: 60px 30px;
}

.order-success-message .success-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	background: var(--accent-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #fff;
	box-shadow: 0 10px 40px rgba(238, 77, 137, 0.3);
}

.order-success-message h2 {
	margin-bottom: 12px;
}

.order-success-message p {
	margin-bottom: 28px;
	font-size: 1.0625rem;
}

/* Error Message */
.order-error-message {
	max-width: 640px;
	margin: 0 auto 24px;
	background: #fff0f0;
	border: 1px solid #ffcdd2;
	border-radius: 14px;
	padding: 16px 24px;
	text-align: center;
}

.order-error-message p {
	color: #c62828;
	font-weight: 600;
	margin-bottom: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {

	.order-section {
		padding-top: 120px;
	}

	.order-form-wrapper {
		padding: 24px 20px;
		border-radius: 18px;
	}
}

/* ==========================================================================
   Phase 1 — Partners Section Reversed (Text Right, Logos Left in RTL)
   ========================================================================== */

.partners-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.partners-content {
	order: -1;
}

/* Slightly bigger section headings */
.section-header h2 {
	margin-bottom: 0;
	font-size: 2.25rem;
}

/* ==========================================================================
   Phase 5 — Floating WhatsApp Button
   ========================================================================== */

.whatsapp-float {
	position: fixed;
	bottom: 28px;
	left: 28px;
	width: 58px;
	height: 58px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
	z-index: 99999;
	transition: all 0.3s ease;
	text-decoration: none;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
	width: 28px;
	height: 28px;
}

/* ==========================================================================
   Phase 6 — Single Post Centered (No Sidebar)
   ========================================================================== */

.single-centered-content {
	max-width: 800px;
	margin: 0 auto;
}

.single-centered-content .single-main-col {
	width: 100%;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-section {
	min-height: 80vh;
	padding-top: 140px;
	background: linear-gradient(180deg, #F0F2FF 0%, #ffffff 100%);
}

.contact-form-wrapper {
	max-width: 640px;
	margin: 0 auto;
	background: var(--card-bg);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--card-border);
}

.contact-form .form-group {
	margin-bottom: 24px;
}

.contact-form label {
	display: block;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--text-dark);
	margin-bottom: 8px;
	background: none;
	-webkit-text-fill-color: var(--text-dark);
}

.contact-form label .required {
	color: var(--accent-red);
	-webkit-text-fill-color: var(--accent-red);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid var(--card-border);
	border-radius: 14px;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	color: var(--text-dark);
	background: #fafbfc;
	transition: all var(--transition-fast);
	outline: none;
	direction: rtl;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--accent-red);
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(238, 77, 137, 0.1);
}

.contact-form textarea {
	resize: vertical;
	min-height: 140px;
}

.contact-form .form-submit {
	margin-top: 32px;
	text-align: center;
}

.contact-form .form-submit .btn {
	width: 100%;
	justify-content: center;
	padding: 16px 32px;
	font-size: 1rem;
}

/* ==========================================================================
   About Us Page Styles (Premium Full-Page)
   ========================================================================== */

.about-hero-section {
	padding-top: 160px;
	background: linear-gradient(180deg, #F0F2FF 0%, #ffffff 100%);
}

.about-hero-content {
	max-width: 800px;
	margin: 0 auto 60px;
}

.about-hero-title {
	font-size: 3.5rem;
	margin-bottom: 20px;
	line-height: 1.2;
}

.about-hero-subtitle {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.8;
}

.about-hero-image img {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	height: auto;
	border-radius: 24px;
	box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
	display: block;
}

.about-split-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-split-grid.reverse-layout .about-split-content {
	order: 2;
}

.about-split-grid.reverse-layout .about-split-image {
	order: 1;
}

.about-split-content h2 {
	font-size: 2.5rem;
	margin-bottom: 24px;
}

.about-split-content p {
	font-size: 1.0625rem;
	color: var(--text-muted);
	margin-bottom: 20px;
	line-height: 1.8;
}

.about-list {
	list-style: none;
	padding: 0;
	margin: 30px 0 0;
}

.about-list li {
	position: relative;
	padding-right: 32px;
	margin-bottom: 16px;
	font-weight: 500;
	color: var(--text-dark);
}

.about-list li::before {
	content: "✓";
	position: absolute;
	right: 0;
	top: 2px;
	color: var(--accent-red);
	font-weight: bold;
	font-size: 1.125rem;
}

.about-split-image img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
	display: block;
}

.about-values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.about-value-card {
	background: var(--card-bg);
	border-radius: 20px;
	padding: 32px 24px;
	text-align: center;
	border: 1px solid var(--card-border);
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.about-value-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
	border-color: rgba(238, 77, 137, 0.2);
}

.about-value-card .value-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	display: inline-block;
}

.about-value-card h3 {
	font-size: 1.25rem;
	margin-bottom: 12px;
	color: var(--text-dark);
}

.about-value-card p {
	font-size: 0.9375rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 0;
}

.about-cta-section p {
	font-size: 1.125rem;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto 30px;
}

.text-center {
	text-align: center;
}

.mt-4 {
	margin-top: 1.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {

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

	.partners-content {
		order: -1;
	}

	.section-header h2 {
		font-size: 1.75rem;
	}

	.whatsapp-float {
		bottom: 20px;
		left: 20px;
		width: 50px;
		height: 50px;
	}

	.whatsapp-float svg {
		width: 24px;
		height: 24px;
	}

	.contact-section,
	.about-section {
		padding-top: 120px;
	}

	.contact-form-wrapper,
	.about-content-wrapper {
		padding: 24px 20px;
		border-radius: 18px;
	}

	.about-values {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   12. 404 Error Page
   ========================================================================== */

.error-404-main {
	background: linear-gradient(180deg, #F0F2FF 0%, #ffffff 100%);
	min-height: 80vh;
	display: flex;
	align-items: center;
}

.error-404-section {
	width: 100%;
	text-align: center;
}

.error-404-content {
	max-width: 700px;
	margin: 0 auto;
}

.error-code {
	font-size: clamp(6rem, 15vw, 12rem);
	line-height: 1;
	margin-bottom: 1rem;
	font-weight: 900;
}

.error-subtitle {
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	margin-bottom: 20px;
	color: var(--text-dark);
}

.error-description {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin-bottom: 40px;
}

.error-search {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--card-border);
}

.search-label {
	font-size: 0.9375rem;
	margin-bottom: 20px;
	color: var(--text-muted);
}

.search-form-wrapper {
	max-width: 450px;
	margin: 0 auto;
}

.search-form-wrapper form {
	display: flex;
	gap: 10px;
}

.search-form-wrapper input[type="search"] {
	flex: 1;
	padding: 12px 20px;
	border-radius: 50px;
	border: 1px solid var(--card-border);
	background: #fff;
	font-family: var(--font-body);
}

.search-form-wrapper input[type="submit"] {
	background: var(--accent-gradient);
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition-fast);
}

.search-form-wrapper input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(238, 77, 137, 0.3);
}

@media (max-width: 768px) {
	.error-404-main {
		min-height: 70vh;
	}

	.error-code {
		font-size: 8rem;
	}
}

/* ==========================================================================
   13. Standard Page Layout
   ========================================================================== */

.standard-page-section {
	padding-top: 150px;
	/* Accounts for fixed header */
	padding-bottom: 80px;
	background-color: #ffffff;
}

.standard-page-section .entry-title {
	text-align: center;
	margin-bottom: 40px;
	background: var(--heading-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ==========================================================================
   Document Typography (Legal Pages & Single Posts)
   ========================================================================== */

.legal-content-wrapper h2,
.post-content-body h2 {
	font-size: 1.4rem !important;
	/* Reduced size for Arabic readability */
	margin-top: 2rem !important;
	margin-bottom: 1rem !important;
	line-height: 1.4;
}

.legal-content-wrapper h3,
.post-content-body h3 {
	font-size: 1.15rem !important;
	margin-top: 1.5rem !important;
	margin-bottom: 0.8rem !important;
}

.legal-content-wrapper p,
.post-content-body p {
	font-size: 1rem !important;
	line-height: 1.9 !important;
	margin-bottom: 1.2rem;
	color: var(--text-dark);
}

.legal-content-wrapper ul,
.post-content-body ul {
	margin-right: 1.5rem !important;
	margin-bottom: 1.5rem;
	list-style-type: disc;
}

.legal-content-wrapper li,
.post-content-body li {
	font-size: 1rem !important;
	margin-bottom: 0.5rem;
	line-height: 1.8;
}

/* ==========================================================================
   Mobile Responsive Fixes (RTL & Layout)
   ========================================================================== */
@media (max-width: 768px) {
	.compare-content,
	.workflow-content,
	.partners-content,
	.about-split-content {
		text-align: center;
	}

	.workflow-list li {
		justify-content: center;
	}

	.workflow-grid,
	.about-split-grid {
		display: flex;
		flex-direction: column;
	}

	.workflow-content,
	.about-split-content {
		order: 1;
	}

	.workflow-image,
	.about-split-image {
		order: 2;
		margin-top: 20px;
	}

	.footer-brand {
		text-align: center;
	}

	.footer-brand .site-logo {
		display: flex;
		justify-content: center;
		margin-bottom: 20px;
	}

}

/* ==========================================================================
   21. Contact & Order Pages Reorganization Styles
   ========================================================================== */

.contact-grid-layout {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 40px;
	margin-top: 30px;
}

.contact-info-panel {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.info-card {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 16px;
	padding: 24px;
	display: flex;
	align-items: center;
	gap: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(123, 45, 142, 0.08);
}

.info-icon {
	font-size: 2rem;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, rgba(123, 45, 142, 0.1) 0%, rgba(238, 77, 137, 0.1) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	flex-shrink: 0;
}

.info-details h4 {
	font-size: 1.15rem;
	margin-bottom: 6px;
	background: var(--heading-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.info-details p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--text-muted);
}

.info-details a:hover {
	color: var(--accent-red);
}

.contact-form-panel,
.order-form-panel {
	background: var(--glass-bg);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid var(--card-border);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.order-form-panel {
	max-width: 700px;
	margin: 30px auto 0;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 0.9rem;
	color: var(--text-dark);
}

.form-group .required {
	color: var(--accent-red);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 14px 20px;
	border: 1px solid var(--card-border);
	background: rgba(255, 255, 255, 0.8);
	border-radius: 12px;
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: var(--text-dark);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-purple);
	box-shadow: 0 0 0 4px rgba(123, 45, 142, 0.1);
}

.form-group select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237B2D8E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
	background-repeat: no-repeat;
	background-position: left 20px center;
	background-size: 16px;
	padding-left: 45px;
}

@media (max-width: 991px) {
	.contact-grid-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.contact-form-panel,
	.order-form-panel {
		padding: 30px;
	}
}

/* ==========================================================================
   22. Blog Page Styles
   ========================================================================== */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gap);
	margin-top: 30px;
}

.blog-card {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 20px;
	overflow: hidden;
	transition: all var(--transition-medium);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(123, 45, 142, 0.1);
	border-color: var(--primary-purple);
}

.blog-img-wrapper {
	display: block;
	width: 100%;
	height: 220px;
	overflow: hidden;
	position: relative;
}

.blog-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-medium);
}

.blog-card:hover .blog-img-wrapper img {
	transform: scale(1.05);
}

.blog-card-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.blog-tag {
	display: inline-block;
	align-self: flex-start;
	background: linear-gradient(135deg, rgba(123, 45, 142, 0.1) 0%, rgba(238, 77, 137, 0.1) 100%);
	color: var(--primary-purple);
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.blog-card-content h3 {
	font-size: 1.2rem;
	line-height: 1.4;
	margin-bottom: 12px;
	background: var(--heading-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.blog-card-content h3 a {
	color: inherit;
	text-decoration: none;
	background: inherit;
	-webkit-background-clip: inherit;
	-webkit-text-fill-color: inherit;
	display: inline-block;
	transition: opacity var(--transition-fast);
}

.blog-card-content h3 a:hover {
	opacity: 0.8;
}

.blog-card-content p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--text-muted);
	margin-bottom: 20px;
	flex-grow: 1;
}

.blog-card-content .btn {
	padding: 10px 20px;
	font-size: 0.875rem;
	align-self: flex-start;
	width: auto;
}

@media (max-width: 991px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   23. Global List Markers Reset (Bullets Removal)
   ========================================================================== */
.nav-menu,
.nav-menu ul,
.nav-menu li {
	list-style: none !important;
	list-style-type: none !important;
	padding: 0 !important;
	margin: 0;
}