/**
 * ===========================================
 *    RESET & GLOBAL STYLES
 *    ===========================================
 *
 * @format
 */

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

:root {
	--primary-color: #2563eb;
	--secondary-color: #7c3aed;
	--dark-color: #1e293b;
	--light-color: #f8fafc;
	--text-color: #334155;
	--gray-color: #64748b;
	--success-color: #10b981;
	--gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
	--transition: all 0.3s ease;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
	padding-top: 80px;
}

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

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

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

ul {
	list-style: none;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.fade-in {
	animation: fadeIn 1s ease-out;
}

.fade-in-delay {
	animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
	animation: fadeIn 1s ease-out 0.6s both;
}

.slide-up {
	animation: fadeInUp 0.8s ease-out;
}

.slide-up-delay {
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	border: none;
	text-align: center;
}

.btn-primary {
	background: var(--gradient);
	color: white;
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
	background: var(--primary-color);
	color: white;
}

.btn-light {
	background: white;
	color: var(--primary-color);
}

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

.btn-full {
	width: 100%;
	justify-content: center;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* ===========================================
   NAVBAR
   =========================================== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	padding: 15px 0;
}

/* Modern Navbar */
.navbar-modern {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
	z-index: 1000;
	padding: 0;
	transition: all 0.3s ease;
}

.navbar-modern.scrolled {
	padding: 0;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.nav-wrapper-modern {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo-modern a {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.logo-modern a:hover {
	transform: scale(1.05);
}

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

.logo-text {
	font-size: 22px;
	font-weight: 800;
	background: linear-gradient(135deg, #2563eb, #7c3aed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}

.nav-center {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-menu-modern {
	display: flex;
	gap: 8px;
	align-items: center;
	background: #f8fafc;
	padding: 8px;
	border-radius: 50px;
	list-style: none;
	margin: 0;
}

.nav-link {
	display: block;
	padding: 10px 20px;
	color: #475569;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link span {
	position: relative;
	z-index: 1;
}

.nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: white;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
	opacity: 1;
	transform: scale(1);
}

.nav-link:hover {
	color: #2563eb;
}

.nav-link.active {
	color: #2563eb;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 15px;
}

.btn-contact-modern {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 28px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	color: white;
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn-contact-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1d4ed8, #1e40af);
	transition: left 0.4s ease;
}

.btn-contact-modern:hover::before {
	left: 0;
}

.btn-contact-modern i,
.btn-contact-modern span {
	position: relative;
	z-index: 1;
}

.btn-contact-modern:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

.hamburger-modern {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 6px;
	padding: 8px;
	border-radius: 8px;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

.hamburger-modern:hover {
	background: #f1f5f9;
}

.hamburger-modern span {
	width: 28px;
	height: 3px;
	background: #2563eb;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.hamburger-modern.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-modern.active span:nth-child(2) {
	opacity: 0;
	transform: translateX(-20px);
}

.hamburger-modern.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}
/* test */

/* Mobile contact button - hidden by default, shown only on mobile */
.mobile-contact-item {
	display: none;
}

/* Old Navbar Styles (Keep for backward compatibility) */

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 24px;
	font-weight: 700;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-menu {
	display: flex;
	gap: 35px;
	align-items: center;
}

.nav-menu a {
	color: var(--text-color);
	font-weight: 500;
	position: relative;
}

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

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

.btn-contact {
	padding: 10px 24px;
	background: var(--gradient);
	color: white !important;
	border-radius: 8px;
}

.btn-contact::after {
	display: none;
}

.btn-contact:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--dark-color);
	transition: var(--transition);
}

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

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
	z-index: -1;
}

.hero-background::before {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(37, 99, 235, 0.1) 0%,
		transparent 70%
	);
	top: -200px;
	right: -200px;
	animation: float 6s ease-in-out infinite;
}

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

.hero-content h1 {
	font-size: 56px;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--dark-color);
}

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

.hero-content p {
	font-size: 20px;
	color: var(--gray-color);
	margin-bottom: 30px;
}

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

.hero-image {
	position: relative;
	animation: float 5s ease-in-out infinite;
}

.image-placeholder {
	background: var(--gradient);
	border-radius: 20px;
	padding: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lg);
}

.image-placeholder i {
	font-size: 120px;
	color: white;
}

.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
}

.mouse {
	width: 30px;
	height: 50px;
	border: 2px solid var(--primary-color);
	border-radius: 20px;
	position: relative;
}

.mouse::before {
	content: '';
	width: 6px;
	height: 10px;
	background: var(--primary-color);
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 3px;
	animation: scroll 2s infinite;
}

@keyframes scroll {
	0%,
	100% {
		top: 10px;
		opacity: 1;
	}
	50% {
		top: 25px;
		opacity: 0.5;
	}
}

/* ===========================================
   SECTIONS
   =========================================== */
section {
	padding: 100px 0;
}

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

.section-header h2 {
	font-size: 42px;
	color: var(--dark-color);
	margin-bottom: 15px;
}

.section-header p {
	font-size: 18px;
	color: var(--gray-color);
}

.text-center {
	text-align: center;
	margin-top: 40px;
}

/* ===========================================
   SERVICES SECTION
   =========================================== */
.services-overview {
	background: var(--light-color);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.service-card {
	background: white;
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
	cursor: pointer;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
}

.service-icon {
	width: 70px;
	height: 70px;
	background: var(--gradient);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.service-icon i {
	font-size: 32px;
	color: white;
}

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

.service-card p {
	color: var(--gray-color);
	margin-bottom: 20px;
}

.service-link {
	color: var(--primary-color);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.service-link:hover {
	gap: 12px;
}

/* ===========================================
   STATS SECTION
   =========================================== */
.stats-section {
	background: var(--gradient);
	color: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	text-align: center;
}

.stat-item {
	padding: 20px;
}

.stat-number {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
}

.stat-label {
	font-size: 18px;
	opacity: 0.9;
}

/* ===========================================
   WHY US SECTION
   =========================================== */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

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

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.1) 0%,
		rgba(124, 58, 237, 0.1) 100%
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.feature-icon i {
	font-size: 36px;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.feature-item h3 {
	font-size: 22px;
	margin-bottom: 12px;
	color: var(--dark-color);
}

.feature-item p {
	color: var(--gray-color);
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta-section {
	background: var(--gradient);
	color: white;
	text-align: center;
}

.cta-content h2 {
	font-size: 42px;
	margin-bottom: 15px;
}

.cta-content p {
	font-size: 20px;
	margin-bottom: 30px;
	opacity: 0.95;
}

/* ===========================================
   PAGE HEADER
   =========================================== */
.page-header {
	padding: 120px 0 60px;
	background: var(--gradient);
	color: white;
	text-align: center;
}

.page-header h1 {
	font-size: 48px;
	margin-bottom: 15px;
}

.page-header p {
	font-size: 20px;
	opacity: 0.95;
}

/* ===========================================
   SERVICE DETAIL
   =========================================== */
.services-detail {
	background: var(--light-color);
}

.service-detail {
	margin-bottom: 80px;
	background: white;
	border-radius: 20px;
	padding: 60px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

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

.service-detail.reverse .service-detail-content {
	direction: rtl;
}

.service-detail.reverse .service-detail-text {
	direction: ltr;
}

.service-badge {
	display: inline-block;
	width: 60px;
	height: 60px;
	background: var(--gradient);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}

.service-detail h2 {
	font-size: 36px;
	color: var(--dark-color);
	margin-bottom: 15px;
}

.lead {
	font-size: 20px;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 20px;
}

.service-detail-text p {
	color: var(--gray-color);
	margin-bottom: 25px;
	line-height: 1.8;
}

.service-features {
	margin: 30px 0;
}

.service-features li {
	padding: 12px 0;
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 12px;
}

.service-features i {
	color: var(--success-color);
	font-size: 18px;
}

.service-detail-image .image-placeholder {
	padding: 60px;
}

/* ===========================================
   ABOUT PAGE
   =========================================== */
.about-content {
	padding: 80px 0;
}

.about-intro {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 80px;
}

.about-text h2 {
	font-size: 38px;
	color: var(--dark-color);
	margin-bottom: 20px;
}

.about-text .lead {
	font-size: 20px;
	margin-bottom: 20px;
}

.about-text p {
	color: var(--gray-color);
	margin-bottom: 15px;
	line-height: 1.8;
}

.mission-vision {
	background: var(--light-color);
}

.mv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 40px;
}

.mv-card {
	background: white;
	padding: 50px;
	border-radius: 20px;
	box-shadow: var(--shadow);
}

.mv-icon {
	width: 70px;
	height: 70px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.mv-icon i {
	font-size: 32px;
	color: white;
}

.mv-card h3 {
	font-size: 28px;
	color: var(--dark-color);
	margin-bottom: 15px;
}

.mv-card p {
	color: var(--gray-color);
	line-height: 1.8;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.value-card {
	background: white;
	padding: 35px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: var(--transition);
}

.value-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.value-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.1) 0%,
		rgba(124, 58, 237, 0.1) 100%
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.value-icon i {
	font-size: 28px;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

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

.value-card p {
	color: var(--gray-color);
	font-size: 15px;
}

/* Team Section */
.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.team-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.team-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
}

.team-image .image-placeholder {
	padding: 50px;
	background: var(--gradient);
}

.team-info {
	padding: 25px;
	text-align: center;
}

.team-info h3 {
	font-size: 20px;
	color: var(--dark-color);
	margin-bottom: 8px;
}

.team-info p {
	color: var(--gray-color);
	font-size: 15px;
}

/* Process Timeline - Modern & Mobile Responsive */
.process-section {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.process-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 30%,
			rgba(37, 99, 235, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 70%,
			rgba(124, 58, 237, 0.05) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.process-section .container {
	position: relative;
	z-index: 1;
}

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

.process-section .section-header h2 {
	font-size: 36px;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 15px;
	line-height: 1.2;
}

.process-section .section-header p {
	font-size: 18px;
	color: #64748b;
	max-width: 700px;
	margin: 0 auto;
}

.process-timeline {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}

.process-step {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
	position: relative;
	animation: fadeInUp 0.6s ease-out;
	animation-fill-mode: both;
}

.process-step:nth-child(1) {
	animation-delay: 0.1s;
}
.process-step:nth-child(2) {
	animation-delay: 0.2s;
}
.process-step:nth-child(3) {
	animation-delay: 0.3s;
}
.process-step:nth-child(4) {
	animation-delay: 0.4s;
}
.process-step:nth-child(5) {
	animation-delay: 0.5s;
}

/* Timeline connector line - REMOVED */

.step-number {
	width: 80px;
	height: 80px;
	min-width: 80px;
	background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
	color: white;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 800;
	flex-shrink: 0;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.process-step:hover .step-number {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

.step-content {
	flex: 1;
	background: white;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.process-step:hover .step-content {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
	border-color: rgba(37, 99, 235, 0.2);
}

.step-content h3 {
	font-size: 22px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 12px;
	line-height: 1.3;
}

.step-content p {
	color: #64748b;
	line-height: 1.8;
	font-size: 15px;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.process-section {
		padding: 60px 0;
	}

	.process-section .section-header {
		margin-bottom: 40px;
	}

	.process-section .section-header h2 {
		font-size: 28px;
	}

	.process-section .section-header p {
		font-size: 16px;
		padding: 0 15px;
	}

	.process-timeline {
		padding: 0 15px;
	}

	.process-step {
		gap: 20px;
		margin-bottom: 40px;
	}

	.process-step::before {
		left: 29px;
		top: 70px;
	}

	.step-number {
		width: 60px;
		height: 60px;
		min-width: 60px;
		font-size: 22px;
		border-radius: 15px;
	}

	.step-content {
		padding: 20px;
	}

	.step-content h3 {
		font-size: 18px;
	}

	.step-content p {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.process-section {
		padding: 50px 0;
	}

	.process-section .section-header h2 {
		font-size: 24px;
	}

	.process-section .section-header p {
		font-size: 15px;
	}

	.process-step {
		gap: 15px;
		margin-bottom: 35px;
	}

	.process-step::before {
		left: 24px;
		width: 2px;
	}

	.step-number {
		width: 50px;
		height: 50px;
		min-width: 50px;
		font-size: 18px;
		border-radius: 12px;
	}

	.step-content {
		padding: 18px;
		border-radius: 15px;
	}

	.step-content h3 {
		font-size: 17px;
		margin-bottom: 10px;
	}

	.step-content p {
		font-size: 14px;
		line-height: 1.6;
	}
}

/* Clients Section */
.clients-section {
	background: var(--light-color);
}

.clients-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
}

.client-logo {
	background: white;
	padding: 40px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.client-logo:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}

.logo-placeholder {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-color);
	font-size: 14px;
	border: 2px dashed #e2e8f0;
	border-radius: 8px;
}

/* Testimonials */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background: white;
	padding: 35px;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.testimonial-stars {
	color: #fbbf24;
	margin-bottom: 20px;
	font-size: 18px;
}

.testimonial-text {
	color: var(--gray-color);
	line-height: 1.8;
	margin-bottom: 25px;
	font-style: italic;
}

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

.author-image .image-placeholder {
	width: 50px;
	height: 50px;
	padding: 10px;
	border-radius: 50%;
}

.author-info h4 {
	font-size: 16px;
	color: var(--dark-color);
	margin-bottom: 3px;
}

.author-info p {
	font-size: 14px;
	color: var(--gray-color);
}

/* Success Stats */
.success-stats {
	background: var(--light-color);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
}

.stat-card {
	background: white;
	padding: 40px;
	border-radius: 15px;
	text-align: center;
	box-shadow: var(--shadow);
}

.stat-card .stat-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.stat-card .stat-icon i {
	font-size: 24px;
	color: white;
}

.stat-card .stat-number {
	font-size: 48px;
	font-weight: 700;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 10px;
}

.stat-card .stat-label {
	font-size: 16px;
	color: var(--gray-color);
}

/* ===========================================
   BLOG PAGE
   =========================================== */
.featured-post {
	padding: 80px 0;
}

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

.featured-image {
	position: relative;
}

.featured-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--gradient);
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

.post-meta {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.post-category {
	background: var(--gradient);
	color: white;
	padding: 5px 15px;
	border-radius: 5px;
	font-size: 13px;
	font-weight: 600;
}

.post-date,
.post-read {
	color: var(--gray-color);
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.featured-text h2 {
	font-size: 36px;
	color: var(--dark-color);
	margin-bottom: 15px;
}

.featured-text p {
	color: var(--gray-color);
	line-height: 1.8;
	margin-bottom: 25px;
}

.blog-posts {
	background: var(--light-color);
}

/* ===========================================
   CONTACT PAGE
   =========================================== */
.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 60px;
}

.contact-info h2 {
	font-size: 32px;
	color: var(--dark-color);
	margin-bottom: 15px;
}

.contact-info > p {
	color: var(--gray-color);
	margin-bottom: 40px;
	line-height: 1.8;
}

.info-item {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}

.info-icon {
	width: 50px;
	height: 50px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.info-icon i {
	font-size: 20px;
	color: white;
}

.info-content h4 {
	font-size: 18px;
	color: var(--dark-color);
	margin-bottom: 5px;
}

.info-content p {
	color: var(--gray-color);
}

.info-content a {
	color: var(--primary-color);
}

.social-links-contact {
	margin-top: 40px;
}

.social-links-contact h4 {
	font-size: 18px;
	color: var(--dark-color);
	margin-bottom: 15px;
}

.social-icons {
	display: flex;
	gap: 15px;
}

.social-icons a {
	width: 45px;
	height: 45px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: var(--transition);
}

.social-icons a:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.contact-form-wrapper h2 {
	font-size: 32px;
	color: var(--dark-color);
	margin-bottom: 30px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

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

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-weight: 600;
	color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 14px 18px;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	font-size: 15px;
	font-family: inherit;
	transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

.form-group textarea {
	resize: vertical;
}

.checkbox-group {
	flex-direction: row;
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.checkbox-label input[type='checkbox'] {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.checkbox-label a {
	color: var(--primary-color);
	text-decoration: underline;
}

.map-section {
	padding: 0;
}

.map-container {
	width: 100%;
	height: 450px;
}

.map-placeholder {
	width: 100%;
	height: 100%;
	background: var(--light-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--gray-color);
}

.map-placeholder i {
	font-size: 48px;
	margin-bottom: 15px;
}

/* FAQ */
.faq-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border-radius: 10px;
	margin-bottom: 20px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
	padding: 25px 30px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--transition);
}

.faq-question:hover {
	background: var(--light-color);
}

.faq-question h3 {
	font-size: 18px;
	color: var(--dark-color);
}

.faq-question i {
	color: var(--primary-color);
	transition: var(--transition);
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 0 30px 25px;
	color: var(--gray-color);
	line-height: 1.8;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
	background: var(--dark-color);
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h3 {
	font-size: 24px;
	margin-bottom: 15px;
}

.footer-column h4 {
	font-size: 18px;
	margin-bottom: 20px;
}

.footer-column p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
	line-height: 1.7;
}

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

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

.social-links a:hover {
	background: var(--primary-color);
	transform: translateY(-3px);
}

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

.footer-column ul li a {
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition);
}

.footer-column ul li a:hover {
	color: white;
	padding-left: 5px;
}

.contact-info li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 12px;
}

.contact-info i {
	color: var(--primary-color);
	margin-top: 3px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 25px;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 968px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		right: -100%;
		width: 300px;
		height: calc(100vh - 70px);
		background: white;
		flex-direction: column;
		padding: 40px 30px;
		box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
		transition: var(--transition);
		align-items: flex-start;
	}

	.nav-menu.active {
		right: 0;
	}

	.hero .container {
		grid-template-columns: 1fr;
	}

	.hero-content h1 {
		font-size: 42px;
	}

	.service-detail-content,
	.featured-content,
	.about-intro,
	.contact-wrapper {
		grid-template-columns: 1fr;
	}

	.service-detail.reverse .service-detail-content {
		direction: ltr;
	}

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

@media (max-width: 640px) {
	.hero-content h1 {
		font-size: 32px;
	}

	.section-header h2 {
		font-size: 32px;
	}

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

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

	.service-detail {
		padding: 30px 20px;
	}

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

	.newsletter-form {
		flex-direction: column;
	}
}

/* ===========================================
   NEW SERVICE CARDS DESIGN
   =========================================== */
.services-grid {
	padding: 80px 0;
	background: var(--light-color);
}

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

.service-card-large {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.service-card-large:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.service-card-image {
	position: relative;
	height: 280px;
	overflow: hidden;
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.05) 0%,
		rgba(124, 58, 237, 0.05) 100%
	);
}

.service-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.service-card-large:hover .service-card-image img {
	transform: scale(1.1);
}

.service-card-overlay {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-number {
	font-size: 24px;
	font-weight: 700;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.service-card-content {
	padding: 35px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.service-card-content h3 {
	font-size: 26px;
	margin-bottom: 15px;
	color: var(--dark-color);
	line-height: 1.3;
}

.service-card-content > p {
	color: var(--gray-color);
	margin-bottom: 25px;
	line-height: 1.7;
	font-size: 16px;
}

.service-quick-features {
	list-style: none;
	margin-bottom: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.service-quick-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--text-color);
	font-size: 15px;
}

.service-quick-features i {
	color: var(--success-color);
	font-size: 18px;
}

.service-card-content .btn {
	width: 100%;
	text-align: center;
	padding: 16px;
	font-size: 16px;
	margin-top: 30px;
}

/* Why Services Section */
.why-services {
	padding: 100px 0;
	background: white;
}

.section-title {
	text-align: center;
	font-size: 42px;
	margin-bottom: 15px;
	color: var(--dark-color);
}

.section-subtitle {
	text-align: center;
	font-size: 18px;
	color: var(--gray-color);
	margin-bottom: 60px;
}

.why-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

.why-service-item {
	text-align: center;
	padding: 40px 30px;
	border-radius: 15px;
	transition: var(--transition);
	background: var(--light-color);
}

.why-service-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-service-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: white;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.why-service-item h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--dark-color);
}

.why-service-item p {
	color: var(--gray-color);
	line-height: 1.7;
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	background: var(--gradient);
	text-align: center;
	color: white;
}

.cta-section h2 {
	font-size: 42px;
	margin-bottom: 20px;
}

.cta-section p {
	font-size: 20px;
	margin-bottom: 35px;
	opacity: 0.95;
}

.cta-section .btn-light {
	padding: 18px 45px;
	font-size: 18px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-light:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* ===========================================
   SERVICE DETAIL PAGES
   =========================================== */
.service-hero {
	padding: 140px 0 80px;
	background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
	color: white;
}

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

.service-hero-badge {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	margin-bottom: 30px;
}

.service-hero h1 {
	font-size: 52px;
	margin-bottom: 25px;
	line-height: 1.2;
}

.service-hero-lead {
	font-size: 20px;
	line-height: 1.7;
	opacity: 0.95;
	margin-bottom: 40px;
}

.service-hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.hero-stat {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hero-stat .stat-number {
	font-size: 36px;
	font-weight: 700;
}

.hero-stat .stat-label {
	font-size: 14px;
	opacity: 0.9;
}

.service-hero-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-content {
	padding: 100px 0;
	background: white;
}

.service-content .container {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 60px;
}

.service-main h2 {
	font-size: 36px;
	color: var(--dark-color);
	margin-bottom: 20px;
}

.service-main h3 {
	font-size: 28px;
	color: var(--dark-color);
	margin-top: 50px;
	margin-bottom: 20px;
}

.service-main p {
	color: var(--text-color);
	line-height: 1.8;
	font-size: 17px;
	margin-bottom: 25px;
}

.service-features-detailed {
	margin: 50px 0;
}

.feature-detail-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 25px;
	margin-bottom: 40px;
	padding: 30px;
	background: var(--light-color);
	border-radius: 15px;
	transition: var(--transition);
}

.feature-detail-item:hover {
	transform: translateX(5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: white;
	flex-shrink: 0;
}

.feature-content h4 {
	font-size: 22px;
	color: var(--dark-color);
	margin-bottom: 12px;
}

.feature-content p {
	color: var(--gray-color);
	line-height: 1.7;
	font-size: 16px;
	margin: 0;
}

.tech-stack {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 20px;
	margin: 40px 0;
}

.tech-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 25px;
	background: var(--light-color);
	border-radius: 12px;
	transition: var(--transition);
}

.tech-item:hover {
	transform: translateY(-5px);
	background: white;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tech-item i {
	font-size: 42px;
	color: var(--primary-color);
}

.tech-item span {
	font-weight: 600;
	color: var(--dark-color);
}

.process-steps {
	display: grid;
	gap: 25px;
	margin: 40px 0;
}

.process-step {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 25px;
	padding: 30px;
	background: var(--light-color);
	border-radius: 15px;
	transition: var(--transition);
	position: relative;
}

.process-step:hover {
	background: white;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
	width: 60px;
	height: 60px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	color: white;
	flex-shrink: 0;
}

.process-step h4 {
	font-size: 22px;
	color: var(--dark-color);
	margin-bottom: 10px;
}

.process-step p {
	color: var(--gray-color);
	line-height: 1.7;
	margin: 0;
	font-size: 16px;
}

/* Sidebar */
.service-sidebar {
	position: sticky;
	top: 100px;
	height: fit-content;
}

.sidebar-card {
	background: var(--light-color);
	padding: 30px;
	border-radius: 15px;
	margin-bottom: 25px;
}

.sidebar-card h3 {
	font-size: 22px;
	margin-bottom: 20px;
	color: var(--dark-color);
}

.service-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.service-list li a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px;
	background: white;
	border-radius: 10px;
	transition: var(--transition);
	color: var(--text-color);
	font-weight: 500;
}

.service-list li a:hover,
.service-list li a.active {
	background: var(--gradient);
	color: white;
	transform: translateX(5px);
}

.service-list li a i {
	font-size: 18px;
}

.cta-card {
	background: var(--gradient);
	color: white;
}

.cta-card h3 {
	color: white;
}

.cta-card p {
	opacity: 0.95;
	margin-bottom: 20px;
}

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

.price {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.price i {
	margin-right: 8px;
}

.price-note {
	font-size: 14px;
	color: var(--gray-color);
	font-style: italic;
}

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

.delivery-time p {
	font-size: 24px;
	color: var(--dark-color);
	margin-bottom: 10px;
}

.delivery-time i {
	margin-right: 10px;
	color: var(--primary-color);
}

.time-note {
	font-size: 14px;
	color: var(--gray-color);
	font-style: italic;
}

/* Related Services */
.related-services {
	padding: 80px 0;
	background: var(--light-color);
}

.service-card-mini {
	background: white;
	padding: 35px;
	border-radius: 15px;
	transition: var(--transition);
	text-align: center;
}

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

.mini-icon {
	width: 70px;
	height: 70px;
	background: var(--gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 28px;
	color: white;
}

.service-card-mini h4 {
	font-size: 20px;
	margin-bottom: 12px;
	color: var(--dark-color);
}

.service-card-mini p {
	color: var(--gray-color);
	margin-bottom: 20px;
	font-size: 15px;
}

.link-arrow {
	color: var(--primary-color);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition);
}

.link-arrow:hover {
	gap: 12px;
}

/* Pricing Table */
.pricing-table {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin: 50px 0;
}

.pricing-item {
	background: var(--light-color);
	padding: 40px 30px;
	border-radius: 15px;
	text-align: center;
	position: relative;
	transition: var(--transition);
	border: 2px solid transparent;
}

.pricing-item:hover {
	transform: translateY(-10px);
	border-color: var(--primary-color);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-item.featured {
	background: white;
	box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
	border-color: var(--primary-color);
}

.popular-badge {
	position: absolute;
	top: -15px;
	right: 30px;
	background: var(--gradient);
	color: white;
	padding: 6px 20px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
}

.pricing-item h4 {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--dark-color);
}

.price-tag {
	font-size: 38px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 30px;
}

.pricing-item ul {
	list-style: none;
	text-align: left;
	margin-bottom: 30px;
}

.pricing-item ul li {
	padding: 12px 0;
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-item ul li:last-child {
	border-bottom: none;
}

.pricing-item ul li i {
	color: var(--success-color);
	font-size: 16px;
}

/* Simple List */
.simple-list {
	list-style: none;
	padding: 0;
	margin: 30px 0;
}

.simple-list li {
	padding: 12px 0;
	color: var(--text-color);
	font-size: 17px;
	line-height: 1.7;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.simple-list li:last-child {
	border-bottom: none;
}

/* Automation Scenarios */
.automation-scenarios {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	margin: 40px 0;
}

.scenario {
	background: var(--light-color);
	padding: 30px;
	border-radius: 15px;
	border-left: 4px solid var(--primary-color);
	transition: var(--transition);
}

.scenario:hover {
	transform: translateX(5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.scenario h4 {
	font-size: 20px;
	color: var(--dark-color);
	margin-bottom: 12px;
}

.scenario p {
	color: var(--gray-color);
	line-height: 1.7;
	margin: 0;
	font-size: 15px;
}

/* Responsive for Service Detail Pages */
@media (max-width: 1200px) {
	.services-grid-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 968px) {
	.service-hero .container {
		grid-template-columns: 1fr;
	}

	.service-hero h1 {
		font-size: 38px;
	}

	.service-content .container {
		grid-template-columns: 1fr;
	}

	.service-sidebar {
		position: static;
	}

	.tech-stack {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	}

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

	.automation-scenarios {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.services-grid-container {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	/* Modern Navbar Mobile - Kalınlaştırılmış */
	.navbar-modern {
		padding: 8px 0;
	}

	.navbar-modern.scrolled {
		padding: 4px 0;
	}

	.nav-wrapper-modern {
		padding: 18px 0;
	}

	.navbar-modern.scrolled .nav-wrapper-modern {
		padding: 12px 0;
	}

	.hamburger-modern {
		display: flex;
		opacity: 1;
		visibility: visible;
	}

	.nav-center {
		position: fixed;
		top: 80px;
		left: 0;
		right: 0;
		background: white;
		padding: 20px;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.4s ease;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
		border-radius: 0 0 20px 20px;
		max-height: calc(100vh - 80px);
		overflow-y: auto;
	}

	.navbar-modern.scrolled .nav-center {
		top: 65px;
		max-height: calc(100vh - 65px);
	}

	.nav-center.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-menu-modern {
		flex-direction: column;
		width: 100%;
		gap: 10px;
		background: transparent;
		padding: 0;
	}

	.nav-link {
		width: 100%;
		text-align: center;
		padding: 15px 20px;
	}

	/* Hide desktop contact button on mobile */
	.nav-actions {
		display: none;
	}

	/* Show mobile contact button */
	.mobile-contact-item {
		display: block !important;
		margin-top: 10px;
	}

	.mobile-contact-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		width: 100%;
		padding: 14px 28px;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: white !important;
		border-radius: 50px;
		font-weight: 600;
		font-size: 15px;
		text-decoration: none;
		box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
		transition: all 0.3s ease;
		position: relative;
		overflow: hidden;
	}

	.mobile-contact-btn::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.mobile-contact-btn::after {
		content: '';
		position: absolute;
		top: -50%;
		left: -100%;
		width: 100%;
		height: 200%;
		background: linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.3),
			transparent
		);
		transform: skewX(-20deg);
		animation: mobileShine 3s infinite;
	}

	@keyframes mobileShine {
		0% {
			left: -100%;
		}
		50%,
		100% {
			left: 200%;
		}
	}

	.mobile-contact-btn:hover::before {
		opacity: 1;
	}

	.mobile-contact-btn:hover {
		transform: translateY(-3px) scale(1.02);
		box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
	}

	.mobile-contact-btn:active {
		transform: translateY(-1px) scale(0.98);
	}

	.mobile-contact-btn i,
	.mobile-contact-btn span {
		position: relative;
		z-index: 1;
	}

	.mobile-contact-btn i {
		font-size: 16px;
	}

	.mobile-contact-btn span {
		color: white;
	}

	.logo-modern img {
		height: 42px;
	}

	.logo-text {
		font-size: 19px;
	}
}

@media (max-width: 640px) {
	.service-hero h1 {
		font-size: 32px;
	}

	.service-hero-stats {
		grid-template-columns: 1fr;
	}

	.feature-detail-item {
		grid-template-columns: 1fr;
	}

	.process-step {
		grid-template-columns: 1fr;
	}

	.nav-wrapper-modern {
		padding: 15px 0;
	}

	.logo-modern img {
		height: 35px;
	}

	.logo-text {
		font-size: 16px;
	}
}

/* ===========================================
   MODERN FOOTER STYLES
   =========================================== */

/* Newsletter Section */
.footer-newsletter {
	background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #7c3aed 100%);
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

.footer-newsletter::before {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
	top: -250px;
	right: -250px;
	border-radius: 50%;
}

.newsletter-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
	position: relative;
	z-index: 1;
}

.newsletter-text h3 {
	font-size: 32px;
	font-weight: 800;
	color: white;
	margin-bottom: 10px;
}

.newsletter-text p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.newsletter-form {
	min-width: 500px;
}

.input-group {
	position: relative;
	display: flex;
	align-items: center;
	background: white;
	border-radius: 50px;
	padding: 6px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	margin-bottom: 10px;
}

.input-group i {
	position: absolute;
	left: 24px;
	color: #64748b;
	font-size: 16px;
}

.input-group input {
	flex: 1;
	border: none;
	outline: none;
	padding: 16px 24px 16px 50px;
	font-size: 15px;
	border-radius: 50px;
	color: var(--dark-color);
}

.input-group input::placeholder {
	color: #94a3b8;
}

.btn-subscribe {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	color: white;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-subscribe:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.newsletter-note {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	padding-left: 10px;
}

.newsletter-note i {
	color: #93c5fd;
}

/* Footer Main */
.footer-modern {
	background: #0f172a;
}

.footer-main {
	background: #0f172a;
	padding: 80px 0 40px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 60px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.footer-logo img {
	height: 45px;
}

.logo-text-footer {
	font-size: 24px;
	font-weight: 800;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-description {
	color: #94a3b8;
	line-height: 1.8;
	margin-bottom: 30px;
	font-size: 15px;
}

.footer-stats {
	display: flex;
	gap: 30px;
}

.stat-item-footer {
	text-align: center;
}

.stat-item-footer strong {
	display: block;
	font-size: 24px;
	font-weight: 800;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 5px;
}

.stat-item-footer span {
	font-size: 12px;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-title {
	font-size: 18px;
	font-weight: 700;
	color: white;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 15px;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border-radius: 3px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

.footer-links a {
	color: #94a3b8;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.footer-links a i {
	font-size: 10px;
	color: #3b82f6;
	transition: transform 0.3s ease;
}

.footer-links a:hover {
	color: white;
	padding-left: 5px;
}

.footer-links a:hover i {
	transform: translateX(3px);
}

.footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-contact li {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.contact-icon {
	width: 45px;
	height: 45px;
	min-width: 45px;
	background: linear-gradient(135deg, #1e3a8a, #1e40af);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 18px;
}

.contact-text strong {
	display: block;
	color: white;
	font-size: 14px;
	margin-bottom: 5px;
}

.contact-text span {
	color: #94a3b8;
	font-size: 14px;
	line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom-modern {
	background: #020617;
	padding: 25px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.copyright p {
	color: #64748b;
	font-size: 14px;
	margin: 0;
}

.copyright strong {
	color: white;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 15px;
}

.footer-social span {
	color: #64748b;
	font-size: 14px;
	font-weight: 600;
}

.social-links-modern {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
	width: 100%;
}

.social-links-modern a {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	transition: all 0.3s ease;
	text-decoration: none;
	position: relative;
	z-index: 10;
	cursor: pointer;
	margin: 0;
}

.social-link.facebook {
	background: #1877f2;
}

.social-link.twitter {
	background: #1da1f2;
}

.social-link.instagram {
	background: linear-gradient(
		45deg,
		#f09433 0%,
		#e6683c 25%,
		#dc2743 50%,
		#cc2366 75%,
		#bc1888 100%
	);
}

.social-link.linkedin {
	background: #0077b5;
}

.social-link.youtube {
	background: #ff0000;
}

.social-links-modern a:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.footer-payment {
	display: flex;
	align-items: center;
	gap: 15px;
}

.footer-payment span {
	color: #64748b;
	font-size: 14px;
	font-weight: 600;
}

.payment-icons {
	display: flex;
	gap: 10px;
}

.payment-icons i {
	font-size: 32px;
	color: #94a3b8;
	transition: color 0.3s ease;
}

.payment-icons i:hover {
	color: white;
}

/* Responsive Footer */
@media (max-width: 1200px) {
	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr;
		gap: 40px;
	}

	.footer-col:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 968px) {
	.newsletter-content {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}

	.newsletter-form {
		min-width: 100%;
	}

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

	.footer-about {
		grid-column: 1 / -1;
	}

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

@media (max-width: 768px) {
	.newsletter-text h3 {
		font-size: 24px;
	}

	.input-group {
		flex-direction: column;
		align-items: stretch;
		padding: 10px;
		gap: 10px;
		border-radius: 16px;
	}

	.input-group input {
		padding: 14px 20px 14px 45px;
	}

	.btn-subscribe {
		justify-content: center;
		border-radius: 12px;
	}

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

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

	.footer-social,
	.footer-payment {
		flex-direction: column;
		gap: 10px;
	}
}

@media (max-width: 640px) {
	.footer-newsletter {
		padding: 40px 0;
	}

	.newsletter-text h3 {
		font-size: 20px;
	}

	.newsletter-text p {
		font-size: 14px;
	}

	.footer-main {
		padding: 60px 0 30px;
	}

	.footer-stats {
		flex-direction: column;
		gap: 20px;
	}
}

/* ===========================================
   ULTRA MODERN FOOTER DESIGN
   =========================================== */

.footer-ultra-modern {
	background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
	position: relative;
	overflow: hidden;
}

/* Wave Effect */
.footer-wave {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
}

.footer-wave svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 80px;
}

.footer-wave svg path {
	fill: #f8f9fa;
}

/* Main Footer */
.footer-main-ultra {
	padding: 80px 0 40px;
	position: relative;
}

.footer-grid-ultra {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
	gap: 50px;
}

/* Brand Column */
.footer-brand {
	padding-right: 30px;
}

.brand-logo-footer {
	display: flex;
	align-items: center;
	/* justify-content: center; Logoyu ortala */
	gap: 15px;
	margin-bottom: 20px;
}

.brand-logo-footer img {
	height: 80px; /* Logoyu büyüt (50px'den 80px'e) */
	width: auto;
}

.brand-logo-footer h3 {
	font-size: 26px;
	font-weight: 800;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0;
}

.brand-tagline {
	color: #a0aec0;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 25px;
}

.brand-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.feature-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #cbd5e0;
	font-size: 14px;
	font-weight: 500;
}

.feature-badge i {
	color: #48bb78;
	font-size: 16px;
}

/* Footer Headings */
.footer-heading {
	color: white;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.heading-icon {
	width: 35px;
	height: 35px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

/* Footer Menu Links */
.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

.footer-menu a {
	color: #a0aec0;
	text-decoration: none;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 0;
}

.footer-menu a i {
	font-size: 12px;
	color: #667eea;
	transition: transform 0.3s ease;
}

.footer-menu a:hover {
	color: white;
	padding-left: 8px;
}

.footer-menu a:hover i {
	transform: translateX(5px);
}

/* Contact Items */
.contact-items {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
	text-decoration: none;
}

.contact-item:hover {
	background: rgba(102, 126, 234, 0.1);
	border-color: rgba(102, 126, 234, 0.3);
	transform: translateX(5px);
}

.contact-icon-box {
	width: 45px;
	height: 45px;
	min-width: 45px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 18px;
}

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

.contact-label {
	font-size: 12px;
	color: #718096;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.contact-value {
	font-size: 14px;
	color: #e2e8f0;
	font-weight: 500;
}

/* Social Section */
.social-section {
	margin-top: 30px;
}

.social-heading {
	color: white;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
}

.social-links-ultra {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.social-btn {
	width: 45px;
	height: 45px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.social-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.1);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.social-btn:hover::before {
	opacity: 1;
}

.social-btn:hover {
	transform: translateY(-5px) scale(1.05);
}

.social-btn.facebook {
	background: linear-gradient(135deg, #1877f2, #0d5dbf);
	box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-btn.twitter {
	background: linear-gradient(135deg, #1da1f2, #0d8bd9);
	box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.social-btn.instagram {
	background: linear-gradient(
		135deg,
		#f09433 0%,
		#e6683c 25%,
		#dc2743 50%,
		#cc2366 75%,
		#bc1888 100%
	);
	box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.social-btn.linkedin {
	background: linear-gradient(135deg, #0077b5, #005885);
	box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.social-btn.youtube {
	background: linear-gradient(135deg, #ff0000, #cc0000);
	box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom-ultra {
	background: rgba(0, 0, 0, 0.3);
	padding: 25px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content-ultra {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.copyright-text {
	color: #a0aec0;
	font-size: 14px;
	margin: 0;
}

.copyright-text strong {
	color: white;
	font-weight: 700;
}

.footer-badges {
	display: flex;
	gap: 20px;
}

.badge-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #cbd5e0;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 16px;
	background: rgba(102, 126, 234, 0.1);
	border-radius: 20px;
	border: 1px solid rgba(102, 126, 234, 0.2);
}

.badge-item i {
	color: #667eea;
	font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.footer-grid-ultra {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 40px;
	}

	.footer-brand {
		grid-column: 1 / -1;
		padding-right: 0;
	}
}

@media (max-width: 968px) {
	.footer-grid-ultra {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.footer-contact-column {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.footer-main-ultra {
		padding: 60px 0 30px;
	}

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

	.brand-logo-footer h3 {
		font-size: 22px;
	}

	.footer-wave svg {
		height: 50px;
		width: calc(150% + 1.3px);
	}

	.footer-wave {
		overflow: hidden;
		line-height: 0;
	}

	.footer-bottom-content-ultra {
		flex-direction: column;
		text-align: center;
	}

	.footer-badges {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.footer-main-ultra {
		padding: 40px 0 20px;
	}

	.brand-features {
		gap: 10px;
	}

	.feature-badge {
		font-size: 13px;
	}

	.footer-badges {
		flex-direction: column;
		width: 100%;
	}

	.badge-item {
		justify-content: center;
	}

	.social-links-ultra {
		justify-content: center;
	}
}

/* ===========================================
   ULTRA MODERN PAGE HEADER DESIGN
   =========================================== */

.page-header-ultra {
	position: relative;
	background: linear-gradient(
		135deg,
		#0f172a 0%,
		#1e293b 25%,
		#334155 50%,
		#475569 75%,
		#64748b 100%
	);
	padding: 120px 0 80px;
	overflow: hidden;
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.page-header-ultra::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.page-header-content {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.page-header-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(59, 130, 246, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 50px;
	padding: 8px 20px;
	color: #60a5fa;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
	animation: fadeInUp 0.8s ease-out;
}

.page-header-badge i {
	font-size: 16px;
}

.page-header-title {
	font-size: 4rem;
	font-weight: 900;
	color: white;
	margin-bottom: 20px;
	line-height: 1.1;
	background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 0.8s ease-out 0.2s both;
	position: relative;
}

.page-header-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border-radius: 2px;
	animation: slideIn 0.8s ease-out 0.6s both;
}

@keyframes slideIn {
	from {
		width: 0;
	}
	to {
		width: 100px;
	}
}

.page-header-subtitle {
	font-size: 1.25rem;
	color: #cbd5e1;
	margin-bottom: 30px;
	line-height: 1.6;
	font-weight: 400;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.page-header-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.breadcrumb-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #94a3b8;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb-item:hover {
	color: #60a5fa;
}

.breadcrumb-item.active {
	color: #60a5fa;
	font-weight: 600;
}

.breadcrumb-separator {
	color: #64748b;
	font-size: 12px;
}

.page-header-stats {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 40px;
	animation: fadeInUp 0.8s ease-out 0.8s both;
}

.header-stat {
	text-align: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	min-width: 120px;
	transition: all 0.3s ease;
}

.header-stat:hover {
	background: rgba(59, 130, 246, 0.1);
	border-color: rgba(59, 130, 246, 0.3);
	transform: translateY(-5px);
}

.header-stat-number {
	font-size: 2rem;
	font-weight: 800;
	color: #60a5fa;
	display: block;
	margin-bottom: 5px;
}

.header-stat-label {
	font-size: 12px;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

/* Floating Elements */
.page-header-ultra .floating-shape {
	position: absolute;
	opacity: 0.1;
	animation: float 6s ease-in-out infinite;
}

.floating-shape.shape-1 {
	top: 20%;
	left: 10%;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border-radius: 50%;
	animation-delay: 0s;
}

.floating-shape.shape-2 {
	top: 60%;
	right: 15%;
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #8b5cf6, #ec4899);
	border-radius: 30%;
	animation-delay: 2s;
}

.floating-shape.shape-3 {
	bottom: 30%;
	left: 20%;
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #06b6d4, #3b82f6);
	border-radius: 20%;
	animation-delay: 4s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

/* Page Header Variations */
.page-header-about .page-header-badge {
	background: rgba(34, 197, 94, 0.1);
	border-color: rgba(34, 197, 94, 0.3);
	color: #4ade80;
}
.page-header-services .page-header-badge {
	background: rgba(168, 85, 247, 0.1);
	border-color: rgba(168, 85, 247, 0.3);
	color: #a78bfa;
}
.page-header-references .page-header-badge {
	background: rgba(249, 115, 22, 0.1);
	border-color: rgba(249, 115, 22, 0.3);
	color: #fb923c;
}
.page-header-contact .page-header-badge {
	background: rgba(236, 72, 153, 0.1);
	border-color: rgba(236, 72, 153, 0.3);
	color: #f472b6;
}
.page-header-blog .page-header-badge {
	background: rgba(6, 182, 212, 0.1);
	border-color: rgba(6, 182, 212, 0.3);
	color: #22d3ee;
}

/* Wave Bottom */
.page-header-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	transform: rotate(180deg);
}

.page-header-wave svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 60px;
}

.page-header-wave svg path {
	fill: #f8f9fa;
}

.page-header-about .page-header-wave svg path {
	fill: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.page-header-title {
		font-size: 3.5rem;
	}

	.page-header-stats {
		gap: 30px;
	}
}

@media (max-width: 968px) {
	.page-header-ultra {
		padding: 100px 0 60px;
		min-height: 50vh;
	}

	.page-header-title {
		font-size: 3rem;
	}

	.page-header-stats {
		flex-wrap: wrap;
		gap: 20px;
	}

	.header-stat {
		min-width: 100px;
		padding: 15px;
	}
}

@media (max-width: 768px) {
	.page-header-ultra {
		padding: 80px 0 50px;
		min-height: 40vh;
	}

	.page-header-title {
		font-size: 2.5rem;
	}

	.page-header-subtitle {
		font-size: 1.1rem;
	}

	.page-header-stats {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.breadcrumb-item {
		font-size: 13px;
	}
}

@media (max-width: 640px) {
	.page-header-title {
		font-size: 2rem;
	}

	.page-header-subtitle {
		font-size: 1rem;
	}

	.page-header-badge {
		font-size: 12px;
		padding: 6px 16px;
	}
}

/* Animation Keyframes */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============================================
   MODERN CONTACT PAGE STYLES
   ============================================ */

/* Modern Contact Section */
.modern-contact-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	position: relative;
	overflow: hidden;
}

.modern-contact-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(99,102,241,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

/* Contact Hero */
.contact-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 100px;
	position: relative;
	z-index: 1;
}

.contact-hero-content h2 {
	font-size: 48px;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 24px;
	line-height: 1.2;
}

.contact-hero-content p {
	font-size: 20px;
	color: #64748b;
	line-height: 1.6;
}

.contact-hero-visual {
	position: relative;
	height: 400px;
}

.floating-contact-elements {
	position: absolute;
	width: 100%;
	height: 100%;
}

.contact-element {
	position: absolute;
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
	animation: floatContact 6s ease-in-out infinite;
}

.contact-element-1 {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.contact-element-2 {
	top: 60%;
	right: 20%;
	animation-delay: 1.5s;
}

.contact-element-3 {
	top: 10%;
	right: 10%;
	animation-delay: 3s;
}

.contact-element-4 {
	bottom: 20%;
	left: 30%;
	animation-delay: 4.5s;
}

@keyframes floatContact {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(5deg);
	}
}

/* Contact Cards */
.contact-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-bottom: 80px;
}

.contact-card {
	background: white;
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(99, 102, 241, 0.1);
}

.contact-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin-bottom: 24px;
	position: relative;
	z-index: 2;
}

.phone-card .card-icon {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
}

.email-card .card-icon {
	background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
	color: white;
}

.location-card .card-icon {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	color: white;
}

.card-content h3 {
	font-size: 24px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 12px;
}

.card-content p {
	color: #64748b;
	margin-bottom: 24px;
	line-height: 1.6;
}

.contact-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	padding: 16px 20px;
	border-radius: 12px;
	text-decoration: none;
	color: #1e293b;
	font-weight: 600;
	margin-bottom: 16px;
	transition: all 0.3s ease;
}

.contact-link:hover {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
	color: white;
	transform: translateX(8px);
}

.address-info {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	padding: 16px 20px;
	border-radius: 12px;
	margin-bottom: 16px;
	font-weight: 600;
	color: #1e293b;
}

.contact-note {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #64748b;
	font-size: 14px;
	font-weight: 500;
}

.contact-note i {
	color: #10b981;
}

.card-decoration {
	position: absolute;
	top: -20px;
	right: -20px;
	z-index: 1;
}

.decoration-circle {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		rgba(99, 102, 241, 0.1) 0%,
		rgba(139, 92, 246, 0.1) 100%
	);
	position: absolute;
}

.decoration-circle:nth-child(2) {
	width: 60px;
	height: 60px;
	top: 20px;
	right: 20px;
	background: linear-gradient(
		135deg,
		rgba(99, 102, 241, 0.2) 0%,
		rgba(139, 92, 246, 0.2) 100%
	);
}

/* Contact Info Grid */
.contact-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 80px;
}

.working-hours,
.quick-contact {
	background: white;
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.info-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 32px;
}

.info-header i {
	font-size: 24px;
	color: #6366f1;
}

.info-header h3 {
	font-size: 24px;
	font-weight: 700;
	color: #1e293b;
}

.hours-list {
	margin-bottom: 24px;
}

.hour-item {
	display: flex;
	justify-content: space-between;
	padding: 16px 0;
	border-bottom: 1px solid #f1f5f9;
}

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

.hour-item.special .time {
	color: #ef4444;
	font-weight: 600;
}

.day {
	font-weight: 600;
	color: #1e293b;
}

.time {
	color: #64748b;
	font-weight: 500;
}

.urgent-contact {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	padding: 16px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.urgent-contact i {
	color: #f59e0b;
	font-size: 18px;
}

.urgent-contact p {
	color: #92400e;
	font-weight: 500;
	margin: 0;
}

.quick-options {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.quick-option {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border-radius: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.quick-option:hover {
	transform: translateX(8px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.phone-option:hover {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
}

.whatsapp-option:hover {
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	color: white;
}

.email-option:hover {
	background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
	color: white;
}

.option-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	background: white;
	color: #6366f1;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.option-content h4 {
	font-size: 16px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 4px;
}

.option-content p {
	font-size: 14px;
	color: #64748b;
	margin: 0;
}

/* Contact Footer Section */
.contact-footer-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 80px;
}

.social-connect h3,
.service-highlights h3 {
	font-size: 24px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 16px;
}

.social-connect p {
	color: #64748b;
	margin-bottom: 32px;
	line-height: 1.6;
}

.social-links-modern {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
	position: relative;
	z-index: 2;
}

.social-link i {
	font-size: 16px;
	width: 20px;
	text-align: center;
}

.social-link span {
	font-size: 14px;
	font-weight: 600;
}

.social-link.facebook {
	background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
	color: white;
}

.social-link.instagram {
	background: linear-gradient(135deg, #e4405f 0%, #833ab4 100%);
	color: white;
}

.social-link.linkedin {
	background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
	color: white;
}

.social-link.twitter {
	background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
	color: white;
}

.social-link.youtube {
	background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
	color: white;
}

.social-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.service-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.service-tag {
	padding: 8px 16px;
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #475569;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.service-tag:hover {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
	color: white;
	transform: translateY(-2px);
}

/* Contact CTA */
.contact-cta {
	background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
	border-radius: 32px;
	padding: 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.contact-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta-content h2 {
	font-size: 36px;
	font-weight: 800;
	color: white;
	margin-bottom: 20px;
	line-height: 1.3;
}

.cta-content p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 32px;
	line-height: 1.6;
}

.cta-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}

.cta-btn.primary {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.cta-btn.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.cta-btn.secondary {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.contact-hero,
	.contact-info-grid,
	.contact-footer-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-hero-content h2 {
		font-size: 36px;
	}

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

@media (max-width: 768px) {
	.modern-contact-section {
		padding: 60px 0;
	}

	.contact-hero-content h2 {
		font-size: 28px;
	}

	.contact-card,
	.working-hours,
	.quick-contact {
		padding: 24px;
	}

	.contact-cta {
		padding: 40px 24px;
	}

	.cta-content h2 {
		font-size: 24px;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.social-links-modern {
		justify-content: flex-start;
		align-items: center;
		width: 100%;
	}

	.social-links-modern a {
		width: 55px;
		height: 55px;
		font-size: 22px;
	}
}

@media (max-width: 640px) {
	.contact-hero-visual {
		height: 250px;
	}

	.contact-element {
		width: 60px;
		height: 60px;
		font-size: 18px;
	}

	.card-icon {
		width: 60px;
		height: 60px;
		font-size: 24px;
	}

	.quick-option {
		padding: 16px;
	}

	.option-icon {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}
