/* ========================================
   تسويق ديجيتال - Main Stylesheet
   ======================================== */

:root {
	--primary-light: #00ADEF;
	--primary: #0077CC;
	--primary-dark: #1B318F;
	--gradient: linear-gradient(135deg, #00ADEF 0%, #1B318F 100%);
	--gradient-hover: linear-gradient(135deg, #0099D6 0%, #152870 100%);
	--text-dark: #1a1a2e;
	--text-body: #4a4a68;
	--text-light: #8888a4;
	--bg-white: #ffffff;
	--bg-light: #f8faff;
	--bg-section: #f0f4ff;
	--border: #e8ecf4;
	--shadow-sm: 0 2px 8px rgba(27, 49, 143, 0.06);
	--shadow-md: 0 8px 30px rgba(27, 49, 143, 0.1);
	--shadow-lg: 0 20px 60px rgba(27, 49, 143, 0.15);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 24px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--font: 'Cairo', sans-serif;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-body);
	background: var(--bg-white);
	direction: rtl;
	text-align: right;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

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

ul {
	list-style: none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding: 100px 0;
}

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

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: var(--radius-sm);
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--transition);
	white-space: nowrap;
}

.btn-primary {
	background: var(--gradient);
	color: #fff;
	border-color: transparent;
}

.btn-primary:hover {
	background: var(--gradient-hover);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-outline {
	background: transparent;
	color: var(--primary-dark);
	border-color: var(--primary-dark);
}

.btn-outline:hover {
	background: var(--primary-dark);
	color: #fff;
}

.btn-white {
	background: #fff;
	color: var(--primary-dark);
}

.btn-white:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-lg {
	padding: 16px 36px;
	font-size: 16px;
	border-radius: var(--radius-md);
}

.btn-full {
	width: 100%;
}

/* Section Header */
.section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 60px;
}

.section-badge {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(0, 173, 239, 0.1);
	color: var(--primary);
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 16px;
}

.section-header h2 {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	color: var(--text-dark);
	line-height: 1.3;
	margin-bottom: 16px;
}

.section-header p {
	font-size: 17px;
	color: var(--text-light);
}

/* ========================================
   Header
   ======================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid transparent;
	transition: var(--transition);
}

.site-header.scrolled {
	border-bottom-color: var(--border);
	box-shadow: var(--shadow-sm);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	gap: 32px;
}

.logo img {
	height: 45px;
	width: auto;
}

.main-nav .nav-list {
	display: flex;
	align-items: center;
	gap: 32px;
}

.main-nav a {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-body);
	position: relative;
}

.main-nav a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	right: 0;
	width: 0;
	height: 2px;
	background: var(--gradient);
	transition: var(--transition);
}

.main-nav a:hover {
	color: var(--primary-dark);
}

.main-nav a:hover::after {
	width: 100%;
}

.header-cta {
	padding: 10px 24px;
	font-size: 14px;
}

.mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.mobile-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text-dark);
	transition: var(--transition);
	border-radius: 2px;
}

/* ========================================
   Hero
   ======================================== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 60%, #f8faff 100%);
}

.hero-shapes .shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.4;
}

.shape-1 {
	width: 500px;
	height: 500px;
	background: rgba(0, 173, 239, 0.3);
	top: -100px;
	left: -100px;
}

.shape-2 {
	width: 400px;
	height: 400px;
	background: rgba(27, 49, 143, 0.2);
	bottom: -50px;
	right: -50px;
}

.shape-3 {
	width: 300px;
	height: 300px;
	background: rgba(0, 173, 239, 0.15);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hero-content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-badge {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(0, 173, 239, 0.1);
	color: var(--primary);
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
	border: 1px solid rgba(0, 173, 239, 0.2);
}

.hero-text h1 {
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 900;
	color: var(--text-dark);
	line-height: 1.2;
	margin-bottom: 24px;
}

.hero-text > p {
	font-size: 18px;
	color: var(--text-light);
	margin-bottom: 36px;
	max-width: 520px;
	line-height: 1.8;
}

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

.hero-stats {
	display: flex;
	gap: 40px;
}

.hero-stats .stat-item strong {
	display: block;
	font-size: 28px;
	font-weight: 800;
	color: var(--text-dark);
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-stats .stat-item span {
	font-size: 14px;
	color: var(--text-light);
}

/* Hero Visual */
.hero-visual {
	position: relative;
}

.hero-card {
	background: #fff;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	border: 1px solid var(--border);
}

.hero-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background: var(--bg-light);
	border-bottom: 1px solid var(--border);
}

.hero-card-header .dots {
	display: flex;
	gap: 6px;
}

.hero-card-header .dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ddd;
}

.hero-card-header .dots span:first-child { background: #ff5f57; }
.hero-card-header .dots span:nth-child(2) { background: #febc2e; }
.hero-card-header .dots span:last-child { background: #28c840; }

.hero-card-header > span {
	font-size: 13px;
	color: var(--text-light);
	margin-right: auto;
}

.hero-card-body {
	padding: 32px 24px;
}

.chart-bars {
	display: flex;
	align-items: flex-end;
	gap: 12px;
	height: 160px;
	margin-bottom: 24px;
}

.chart-bars .bar {
	flex: 1;
	height: var(--h);
	background: var(--gradient);
	border-radius: 6px 6px 0 0;
	opacity: 0.85;
	animation: barGrow 1.5s ease-out forwards;
	transform-origin: bottom;
}

@keyframes barGrow {
	from { transform: scaleY(0); }
	to { transform: scaleY(1); }
}

.chart-metrics {
	display: flex;
	gap: 24px;
}

.metric {
	flex: 1;
	padding: 16px;
	background: var(--bg-light);
	border-radius: var(--radius-md);
}

.metric-label {
	display: block;
	font-size: 13px;
	color: var(--text-light);
	margin-bottom: 4px;
}

.metric-value {
	font-size: 22px;
	font-weight: 800;
	color: #22c55e;
}

.floating-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	background: #fff;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border);
	animation: float 3s ease-in-out infinite;
}

.floating-card svg {
	color: var(--primary);
	flex-shrink: 0;
}

.floating-card strong {
	display: block;
	font-size: 18px;
	font-weight: 800;
	color: var(--text-dark);
}

.floating-card span {
	font-size: 12px;
	color: var(--text-light);
}

.card-1 {
	top: 20px;
	left: -30px;
	animation-delay: 0s;
}

.card-2 {
	bottom: 40px;
	right: -20px;
	animation-delay: 1.5s;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* ========================================
   Clients Strip
   ======================================== */
.clients-strip {
	padding: 40px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: var(--bg-light);
}

.clients-label {
	text-align: center;
	font-size: 14px;
	color: var(--text-light);
	margin-bottom: 24px;
}

.clients-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.client-logo {
	font-size: 20px;
	font-weight: 700;
	color: #ccc;
	letter-spacing: 1px;
}

.client-logo span {
	color: #ddd;
	font-weight: 400;
}

/* ========================================
   Services
   ======================================== */
.services {
	background: var(--bg-white);
}

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

.service-card {
	padding: 36px 28px;
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	background: var(--gradient);
	transform: scaleX(0);
	transition: var(--transition);
	transform-origin: right;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card.featured {
	background: var(--gradient);
	border-color: transparent;
	color: #fff;
}

.service-card.featured .service-icon {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.service-card.featured h3,
.service-card.featured p {
	color: #fff;
}

.service-card.featured .service-link {
	color: rgba(255, 255, 255, 0.9);
}

.service-card.featured::before {
	display: none;
}

.service-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 173, 239, 0.1);
	border-radius: var(--radius-md);
	color: var(--primary);
	margin-bottom: 24px;
}

.service-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.service-card p {
	font-size: 15px;
	color: var(--text-light);
	margin-bottom: 20px;
	line-height: 1.7;
}

.service-link {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary);
}

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

/* ========================================
   About
   ======================================== */
.about {
	background: var(--bg-light);
}

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

.about-visual {
	position: relative;
}

.about-image {
	border-radius: var(--radius-xl);
	overflow: hidden;
	aspect-ratio: 1;
}

.about-image-inner {
	width: 100%;
	height: 100%;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.about-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
}

.about-icon-wrap {
	color: rgba(255, 255, 255, 0.9);
	position: relative;
	z-index: 1;
}

.about-experience {
	position: absolute;
	bottom: -20px;
	left: -20px;
	background: #fff;
	padding: 24px 32px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	text-align: center;
}

.about-experience strong {
	display: block;
	font-size: 36px;
	font-weight: 900;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-experience span {
	font-size: 14px;
	color: var(--text-light);
}

.about-content h2 {
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 800;
	color: var(--text-dark);
	line-height: 1.3;
	margin-bottom: 20px;
}

.about-content > p {
	margin-bottom: 16px;
	line-height: 1.8;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 32px 0;
}

.about-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 500;
	color: var(--text-dark);
}

.feature-check {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 173, 239, 0.1);
	border-radius: 50%;
	color: var(--primary);
	flex-shrink: 0;
}

/* ========================================
   Process
   ======================================== */
.process {
	background: var(--bg-white);
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.process-step {
	text-align: center;
	padding: 32px 20px;
	position: relative;
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: var(--gradient);
	color: #fff;
	border-radius: 50%;
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 24px;
}

.process-step h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.process-step p {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.7;
}

/* ========================================
   Portfolio
   ======================================== */
.portfolio {
	background: var(--bg-light);
}

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

.portfolio-item {
	border-radius: var(--radius-lg);
	overflow: hidden;
	cursor: pointer;
}

.portfolio-image {
	aspect-ratio: 4/3;
	background: var(--bg);
	position: relative;
	display: flex;
	align-items: flex-end;
	transition: var(--transition);
}

.portfolio-overlay {
	padding: 28px;
	width: 100%;
	background: linear-gradient(transparent, rgba(0,0,0,0.7));
	color: #fff;
	transform: translateY(20px);
	opacity: 0.9;
	transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
	transform: translateY(0);
	opacity: 1;
}

.portfolio-item:hover .portfolio-image {
	transform: scale(1.02);
}

.portfolio-tag {
	display: inline-block;
	padding: 4px 12px;
	background: rgba(255,255,255,0.2);
	border-radius: 50px;
	font-size: 12px;
	margin-bottom: 8px;
	backdrop-filter: blur(4px);
}

.portfolio-overlay h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 4px;
}

.portfolio-overlay p {
	font-size: 14px;
	opacity: 0.85;
}

/* ========================================
   Stats
   ======================================== */
.stats-section {
	padding: 80px 0;
	background: var(--gradient);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.stat-box strong {
	display: block;
	font-size: 48px;
	font-weight: 900;
	color: #fff;
	margin-bottom: 8px;
}

.stat-box span {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
	background: var(--bg-white);
}

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

.testimonial-card {
	padding: 36px 28px;
	background: var(--bg-light);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	transition: var(--transition);
}

.testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
	background: var(--gradient);
	border-color: transparent;
	color: #fff;
}

.testimonial-card.featured .testimonial-stars,
.testimonial-card.featured p {
	color: rgba(255, 255, 255, 0.95);
}

.testimonial-card.featured .testimonial-author strong {
	color: #fff;
}

.testimonial-card.featured .testimonial-author span {
	color: rgba(255, 255, 255, 0.7);
}

.testimonial-card.featured .author-avatar {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.testimonial-stars {
	color: #fbbf24;
	font-size: 18px;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.testimonial-card p {
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 24px;
	color: var(--text-body);
}

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

.author-avatar {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 173, 239, 0.1);
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
	color: var(--primary);
	flex-shrink: 0;
}

.testimonial-author strong {
	display: block;
	font-size: 15px;
	color: var(--text-dark);
}

.testimonial-author span {
	font-size: 13px;
	color: var(--text-light);
}

/* ========================================
   CTA
   ======================================== */
.cta-section {
	padding: 80px 0;
}

.cta-box {
	text-align: center;
	padding: 80px 40px;
	background: var(--gradient);
	border-radius: var(--radius-xl);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.cta-box::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-box h2 {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	margin-bottom: 16px;
	position: relative;
}

.cta-box h2 .gradient-text {
	background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.cta-box p {
	font-size: 18px;
	opacity: 0.9;
	margin-bottom: 32px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.cta-box .btn {
	position: relative;
}

/* ========================================
   Contact
   ======================================== */
.contact {
	background: var(--bg-light);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: start;
}

.contact-info h2 {
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 800;
	color: var(--text-dark);
	line-height: 1.3;
	margin-bottom: 16px;
}

.contact-info > p {
	margin-bottom: 40px;
	line-height: 1.8;
}

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

.contact-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.contact-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 173, 239, 0.1);
	border-radius: var(--radius-md);
	color: var(--primary);
	flex-shrink: 0;
}

.contact-item strong {
	display: block;
	font-size: 15px;
	color: var(--text-dark);
	margin-bottom: 2px;
}

.contact-item span {
	font-size: 14px;
	color: var(--text-light);
}

.contact-form-wrap {
	background: #fff;
	padding: 40px;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border);
}

.form-message {
	padding: 14px 20px;
	border-radius: var(--radius-sm);
	margin-bottom: 24px;
	font-size: 14px;
	font-weight: 500;
}

.form-message.success {
	background: #ecfdf5;
	color: #059669;
	border: 1px solid #a7f3d0;
}

.form-message.error {
	background: #fef2f2;
	color: #dc2626;
	border: 1px solid #fecaca;
}

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

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font-family: var(--font);
	font-size: 15px;
	color: var(--text-dark);
	background: var(--bg-light);
	transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.15);
	background: #fff;
}

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

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
	background: var(--text-dark);
	color: rgba(255, 255, 255, 0.7);
	padding: 80px 0 0;
}

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

.footer-brand img {
	margin-bottom: 20px;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

.footer-brand p {
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 24px;
}

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

.social-links a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-sm);
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--primary);
	color: #fff;
}

.footer-links h4,
.footer-contact h4 {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
}

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

.footer-links a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
	color: var(--primary-light);
}

.footer-contact ul li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 14px;
}

.footer-contact svg {
	flex-shrink: 0;
	color: var(--primary-light);
}

.footer-bottom {
	padding: 24px 0;
	text-align: center;
	font-size: 14px;
}

/* ========================================
   Animations & Scroll Reveal
   ======================================== */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-text > p {
		margin-left: auto;
		margin-right: auto;
	}

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

	.hero-stats {
		justify-content: center;
	}

	.hero-visual {
		max-width: 500px;
		margin: 0 auto;
	}

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

	.about-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.about-visual {
		max-width: 400px;
		margin: 0 auto;
	}

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

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

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

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

@media (max-width: 768px) {
	.mobile-toggle {
		display: flex;
	}

	.main-nav {
		position: fixed;
		top: 80px;
		right: 0;
		left: 0;
		background: #fff;
		padding: 24px;
		border-bottom: 1px solid var(--border);
		transform: translateY(-120%);
		opacity: 0;
		transition: var(--transition);
		box-shadow: var(--shadow-md);
	}

	.main-nav.active {
		transform: translateY(0);
		opacity: 1;
	}

	.main-nav .nav-list {
		flex-direction: column;
		gap: 16px;
	}

	.header-cta {
		display: none;
	}

	.section {
		padding: 60px 0;
	}

	.services-grid,
	.portfolio-grid,
	.testimonials-grid,
	.process-steps {
		grid-template-columns: 1fr;
	}

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

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.stat-box strong {
		font-size: 36px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-form-wrap {
		padding: 28px 20px;
	}

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

	.floating-card {
		display: none;
	}

	.cta-box {
		padding: 48px 24px;
	}

	.hero-stats {
		gap: 24px;
	}
}

@media (max-width: 480px) {
	.hero-buttons {
		flex-direction: column;
		width: 100%;
	}

	.hero-buttons .btn {
		width: 100%;
	}

	.hero-stats {
		flex-direction: column;
		gap: 16px;
	}
}
