/* AMR STUDIO - Design System & Styles */

:root {
	--font-fa: "Vazirmatn", system-ui, -apple-system, sans-serif;
	--font-en: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

	/* Default Dark Theme (Cinematic Obsidian & Amber Accent) */
	--bg-primary: #07090e;
	--bg-secondary: #0d111a;
	--bg-tertiary: #131a26;
	--bg-card: rgba(17, 24, 38, 0.65);
	--bg-card-hover: rgba(26, 36, 56, 0.85);
	--bg-glass: rgba(13, 17, 26, 0.75);
	
	--border-subtle: rgba(255, 255, 255, 0.08);
	--border-focus: rgba(245, 158, 11, 0.5);
	--border-card: rgba(255, 255, 255, 0.1);

	--text-primary: #f8fafc;
	--text-secondary: #94a3b8;
	--text-muted: #64748b;

	--accent: #f59e0b;
	--accent-glow: rgba(245, 158, 11, 0.25);
	--accent-hover: #d97706;
	--accent-light: #fef3c7;
	--accent-text: #000000;

	--accent-cyan: #38bdf8;
	--accent-cyan-glow: rgba(56, 189, 248, 0.2);

	--success: #10b981;
	--success-bg: rgba(16, 185, 129, 0.15);
	--danger: #ef4444;
	--danger-bg: rgba(239, 68, 68, 0.15);
	--warning: #f59e0b;

	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-full: 9999px;

	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
	--shadow-glow: 0 0 35px var(--accent-glow);

	--header-height: 72px;
	--transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Variables */
.light-theme {
	--bg-primary: #f8fafc;
	--bg-secondary: #ffffff;
	--bg-tertiary: #f1f5f9;
	--bg-card: rgba(255, 255, 255, 0.85);
	--bg-card-hover: #ffffff;
	--bg-glass: rgba(255, 255, 255, 0.85);

	--border-subtle: rgba(0, 0, 0, 0.08);
	--border-focus: rgba(217, 119, 6, 0.6);
	--border-card: rgba(0, 0, 0, 0.09);

	--text-primary: #0f172a;
	--text-secondary: #475569;
	--text-muted: #94a3b8;

	--accent: #d97706;
	--accent-glow: rgba(217, 119, 6, 0.2);
	--accent-hover: #b45309;
	--accent-light: #fffbeb;
	--accent-text: #ffffff;

	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
	--shadow-glow: 0 0 30px rgba(217, 119, 6, 0.15);
}

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

html {
	scroll-behavior: smooth;
	font-family: var(--font-fa);
	font-size: 16px;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	-webkit-font-smoothing: antialiased;
}

body {
	min-height: 100vh;
	line-height: 1.6;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	overflow-x: hidden;
	transition: background-color 0.3s ease, color 0.3s ease;
}

/* Background Ambient Lighting */
.ambient-glow-1 {
	position: fixed;
	top: -10vw;
	right: -10vw;
	width: 50vw;
	height: 50vw;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0) 70%);
	pointer-events: none;
	z-index: 0;
}

.ambient-glow-2 {
	position: fixed;
	bottom: -15vw;
	left: -10vw;
	width: 45vw;
	height: 45vw;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, rgba(56, 189, 248, 0) 70%);
	pointer-events: none;
	z-index: 0;
}

/* Grid & Layout Containers */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	position: relative;
	z-index: 1;
}

/* Navbar */
.navbar {
	position: sticky;
	top: 0;
	z-index: 50;
	height: var(--header-height);
	background: var(--bg-glass);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-subtle);
	transition: var(--transition);
}

.navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--text-primary);
}

.logo-badge {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: linear-gradient(135deg, #f59e0b, #d97706);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-en);
	font-weight: 900;
	font-size: 1.1rem;
	color: #000;
	box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
	letter-spacing: -0.5px;
}

.brand-name {
	font-family: var(--font-en);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.brand-sub {
	font-size: 0.65rem;
	color: var(--text-muted);
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: var(--transition);
	position: relative;
	padding: 0.25rem 0;
}

.nav-link:hover,
.nav-link.active {
	color: var(--text-primary);
}

.nav-link.active::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent);
	border-radius: 2px;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

/* Theme Toggle Button */
.theme-toggle-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border-subtle);
	background: var(--bg-secondary);
	color: var(--text-primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.theme-toggle-btn:hover {
	border-color: var(--border-focus);
	transform: rotate(15deg);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	border: 1px solid var(--border-subtle);
	background: var(--bg-secondary);
	color: var(--text-primary);
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.75rem 1.4rem;
	border-radius: var(--radius-md);
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: var(--transition);
	border: 1px solid transparent;
	font-family: inherit;
}

.btn-primary {
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: #000000;
	font-weight: 700;
	box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
	background: linear-gradient(135deg, #fbbf24, #d97706);
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(245, 158, 11, 0.45);
}

.btn-secondary {
	background: var(--bg-tertiary);
	color: var(--text-primary);
	border-color: var(--border-card);
}

.btn-secondary:hover {
	background: var(--bg-card-hover);
	border-color: var(--border-focus);
	transform: translateY(-2px);
}

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

.btn-outline:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.btn-sm {
	padding: 0.45rem 0.9rem;
	font-size: 0.85rem;
	border-radius: var(--radius-sm);
}

.btn-lg {
	padding: 0.9rem 2rem;
	font-size: 1.05rem;
	border-radius: var(--radius-md);
}

/* Hero Section */
.hero-section {
	padding: 5rem 0 4rem;
	position: relative;
	text-align: center;
}

.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 1rem;
	border-radius: var(--radius-full);
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.3);
	color: var(--accent);
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
}

.hero-pill-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 10px var(--accent);
	animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
	font-family: var(--font-en);
	font-size: clamp(2.75rem, 7vw, 5.5rem);
	font-weight: 900;
	letter-spacing: -1.5px;
	line-height: 1.05;
	margin-bottom: 0.75rem;
	background: linear-gradient(180deg, #ffffff 40%, #94a3b8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.light-theme .hero-title {
	background: linear-gradient(180deg, #0f172a 40%, #475569 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-subtitle {
	font-family: var(--font-en);
	font-size: clamp(1.1rem, 2.5vw, 1.6rem);
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 0.5px;
	margin-bottom: 1.5rem;
}

.hero-description {
	max-width: 680px;
	margin: 0 auto 2.5rem;
	font-size: 1.15rem;
	color: var(--text-secondary);
	line-height: 1.8;
}

.hero-cta-group {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 3.5rem;
}

/* Stats Ribbon */
.stats-ribbon {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	padding: 1.75rem 2rem;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	backdrop-filter: blur(16px);
	border: 1px solid var(--border-card);
	max-width: 960px;
	margin: 0 auto;
	box-shadow: var(--shadow-md);
}

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

.stat-number {
	font-family: var(--font-en);
	font-size: 2rem;
	font-weight: 800;
	color: var(--accent);
	line-height: 1.2;
}

.stat-label {
	font-size: 0.85rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* Section Header */
.section {
	padding: 5rem 0;
	position: relative;
}

.section-header {
	text-align: center;
	max-width: 650px;
	margin: 0 auto 3.5rem;
}

.section-tag {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--accent);
	margin-bottom: 0.5rem;
}

.section-title {
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.5px;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.section-desc {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* About Grid */
.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 3rem;
	align-items: center;
}

.about-card {
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: 1px solid var(--border-card);
	backdrop-filter: blur(16px);
}

.about-text {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.9;
	margin-bottom: 1.5rem;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin-top: 2rem;
}

.about-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.feature-icon-circle {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(245, 158, 11, 0.12);
	border: 1px solid rgba(245, 158, 11, 0.25);
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.feature-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.2rem;
}

.feature-desc {
	font-size: 0.82rem;
	color: var(--text-muted);
}

.software-stack-card {
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	background: var(--bg-secondary);
	border: 1px solid var(--border-card);
}

.software-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 1.5rem;
}

.software-pill {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 1rem;
	border-radius: var(--radius-md);
	background: var(--bg-tertiary);
	border: 1px solid var(--border-subtle);
	font-family: var(--font-en);
	font-size: 0.9rem;
	font-weight: 600;
	transition: var(--transition);
}

.software-pill:hover {
	border-color: var(--border-focus);
	transform: translateY(-2px);
}

/* Portfolio Section */
.filter-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.tab-btn {
	padding: 0.6rem 1.4rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-subtle);
	background: var(--bg-card);
	color: var(--text-secondary);
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.tab-btn:hover {
	color: var(--text-primary);
	border-color: var(--border-card);
}

.tab-btn.active {
	background: var(--accent);
	color: #000;
	font-weight: 700;
	border-color: var(--accent);
	box-shadow: 0 0 15px var(--accent-glow);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2rem;
}

.portfolio-card {
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: 1px solid var(--border-card);
	overflow: hidden;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	cursor: pointer;
	position: relative;
}

.portfolio-card:hover {
	transform: translateY(-6px);
	border-color: var(--border-focus);
	box-shadow: var(--shadow-md), 0 0 20px var(--accent-glow);
}

.portfolio-thumbnail-wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 Aspect Ratio */
	overflow: hidden;
	background: #111;
}

.portfolio-thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-thumbnail {
	transform: scale(1.06);
}

.portfolio-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.3rem 0.8rem;
	border-radius: var(--radius-full);
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(8px);
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.play-icon-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(245, 158, 11, 0.9);
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition);
	box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

.portfolio-card:hover .play-icon-overlay {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.portfolio-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.portfolio-category-tag {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 0.4rem;
}

.portfolio-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.6rem;
	line-height: 1.4;
	color: var(--text-primary);
}

.portfolio-summary {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.25rem;
	flex-grow: 1;
}

.portfolio-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--border-subtle);
	padding-top: 0.9rem;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.portfolio-view-btn {
	color: var(--accent);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 2rem;
}

.service-card {
	padding: 2.25rem;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: 1px solid var(--border-card);
	backdrop-filter: blur(16px);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	position: relative;
}

.service-card:hover {
	transform: translateY(-5px);
	border-color: var(--border-focus);
	background: var(--bg-card-hover);
	box-shadow: var(--shadow-md);
}

.service-icon-box {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: rgba(245, 158, 11, 0.12);
	border: 1px solid rgba(245, 158, 11, 0.25);
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.service-title {
	font-size: 1.35rem;
	font-weight: 800;
	margin-bottom: 0.4rem;
	color: var(--text-primary);
}

.service-title-en {
	font-family: var(--font-en);
	font-size: 0.85rem;
	color: var(--text-muted);
	font-weight: 600;
	margin-bottom: 1rem;
}

.service-description {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.service-features-list {
	list-style: none;
	margin-bottom: 2rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.service-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.88rem;
	color: var(--text-secondary);
}

.check-icon {
	color: var(--accent);
	flex-shrink: 0;
	margin-top: 3px;
}

.service-card-footer {
	border-top: 1px solid var(--border-subtle);
	padding-top: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.service-turnaround {
	font-size: 0.82rem;
	color: var(--text-muted);
}

/* Order Section & Form */
.order-section {
	padding: 5rem 0;
	background: linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.03), transparent);
}

.order-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 3rem;
	align-items: flex-start;
	max-width: 1100px;
	margin: 0 auto;
}

.order-info-card {
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: 1px solid var(--border-card);
	backdrop-filter: blur(16px);
}

.order-info-title {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.order-steps {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin: 2rem 0;
}

.order-step-item {
	display: flex;
	gap: 1rem;
}

.step-number {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--bg-tertiary);
	border: 1px solid var(--border-card);
	color: var(--accent);
	font-weight: 800;
	font-family: var(--font-en);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.step-content h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.2rem;
}

.step-content p {
	font-size: 0.85rem;
	color: var(--text-muted);
}

.order-form-card {
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: 1px solid var(--border-card);
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow-md);
}

.form-group {
	margin-bottom: 1.4rem;
}

.form-label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.form-label .required {
	color: var(--accent);
	margin-right: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border-radius: var(--radius-md);
	background: var(--bg-secondary);
	border: 1px solid var(--border-subtle);
	color: var(--text-primary);
	font-family: inherit;
	font-size: 0.95rem;
	transition: var(--transition);
	outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	border-color: var(--border-focus);
	box-shadow: 0 0 0 3px var(--accent-glow);
}

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

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

.form-hint {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-top: 0.35rem;
}

/* Contact Channels */
.contact-section {
	padding: 5rem 0;
}

.channels-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.25rem;
	max-width: 1100px;
	margin: 0 auto;
}

.channel-card {
	padding: 1.75rem 1.25rem;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: 1px solid var(--border-card);
	text-decoration: none;
	color: var(--text-primary);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: var(--transition);
	cursor: pointer;
}

.channel-card:hover {
	transform: translateY(-5px);
	border-color: var(--border-focus);
	box-shadow: var(--shadow-sm), 0 0 15px var(--accent-glow);
}

.channel-icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	font-size: 1.4rem;
	transition: var(--transition);
}

.channel-name {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.channel-handle {
	font-family: var(--font-en);
	font-size: 0.82rem;
	color: var(--text-muted);
}

/* Footer */
.footer {
	background: var(--bg-secondary);
	border-top: 1px solid var(--border-subtle);
	padding: 4rem 0 2rem;
	position: relative;
	z-index: 1;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand-desc {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-top: 1rem;
	max-width: 320px;
}

.footer-col-title {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
	color: var(--text-primary);
}

.footer-nav {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.footer-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	transition: var(--transition);
}

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

.footer-bottom {
	border-top: 1px solid var(--border-subtle);
	padding-top: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.85rem;
	color: var(--text-muted);
	flex-wrap: wrap;
	gap: 1rem;
}

/* Project Detail Modal */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(12px);
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	animation: modal-fade-in 0.25s ease;
}

@keyframes modal-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

.modal-card {
	background: var(--bg-secondary);
	border: 1px solid var(--border-card);
	border-radius: var(--radius-lg);
	width: 100%;
	max-width: 850px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
	position: relative;
	animation: modal-slide-up 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-slide-up {
	from { transform: translateY(30px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.modal-close-btn {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: var(--transition);
}

.modal-close-btn:hover {
	background: var(--accent);
	color: #000;
	transform: scale(1.1);
}

.modal-media-wrap {
	width: 100%;
	background: #000;
	position: relative;
	max-height: 440px;
	overflow: hidden;
}

.modal-media-wrap img,
.modal-media-wrap video {
	width: 100%;
	max-height: 440px;
	object-fit: contain;
	display: block;
}

.modal-body {
	padding: 2rem;
}

.modal-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin: 1.5rem 0;
	padding: 1.25rem;
	border-radius: var(--radius-md);
	background: var(--bg-tertiary);
	border: 1px solid var(--border-subtle);
}

.modal-meta-item {
	display: flex;
	flex-direction: column;
}

.modal-meta-label {
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-bottom: 0.2rem;
}

.modal-meta-val {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-primary);
}

/* Admin Panel Styles */
.admin-badge {
	font-size: 0.75rem;
	padding: 0.2rem 0.6rem;
	border-radius: var(--radius-full);
	font-weight: 700;
}

.badge-pending {
	background: rgba(245, 158, 11, 0.15);
	color: #f59e0b;
	border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-contacted {
	background: rgba(56, 189, 248, 0.15);
	color: #38bdf8;
	border: 1px solid rgba(56, 189, 248, 0.3);
}

.badge-in_progress {
	background: rgba(168, 85, 247, 0.15);
	color: #c084fc;
	border: 1px solid rgba(168, 85, 247, 0.3);
}

.badge-completed {
	background: rgba(16, 185, 129, 0.15);
	color: #34d399;
	border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-cancelled {
	background: rgba(239, 68, 68, 0.15);
	color: #f87171;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

.admin-table-wrap {
	width: 100%;
	overflow-x: auto;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-card);
}

.admin-table {
	width: 100%;
	border-collapse: collapse;
	text-align: right;
	font-size: 0.9rem;
}

.admin-table th {
	background: var(--bg-tertiary);
	padding: 0.9rem 1rem;
	color: var(--text-muted);
	font-weight: 600;
	border-bottom: 1px solid var(--border-subtle);
}

.admin-table td {
	padding: 1rem;
	border-bottom: 1px solid var(--border-subtle);
	color: var(--text-primary);
}

.admin-table tr:hover {
	background: var(--bg-card-hover);
}

.admin-tabs {
	display: flex;
	gap: 0.5rem;
	border-bottom: 1px solid var(--border-subtle);
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}

.admin-tab-btn {
	padding: 0.6rem 1.25rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-subtle);
	background: var(--bg-tertiary);
	color: var(--text-secondary);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.admin-tab-btn.active {
	background: var(--accent);
	color: #000;
	border-color: var(--accent);
	font-weight: 700;
}

/* Alert Boxes */
.alert {
	padding: 1rem 1.25rem;
	border-radius: var(--radius-md);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.95rem;
}

.alert-success {
	background: var(--success-bg);
	border: 1px solid rgba(16, 185, 129, 0.4);
	color: #34d399;
}

.alert-error {
	background: var(--danger-bg);
	border: 1px solid rgba(239, 68, 68, 0.4);
	color: #f87171;
}

/* Loading Spinner */
.spinner-inline {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: currentColor;
	animation: spin 0.7s linear infinite;
}

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

/* Responsive Breakpoints */
@media (max-width: 992px) {
	.about-grid,
	.order-wrapper,
	.footer-top {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

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

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.mobile-nav-open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: var(--header-height);
		left: 0;
		right: 0;
		background: var(--bg-secondary);
		border-bottom: 1px solid var(--border-subtle);
		padding: 1.5rem;
		gap: 1rem;
		box-shadow: var(--shadow-md);
	}

	.hero-section {
		padding: 3.5rem 0 2.5rem;
	}

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

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