@charset "utf-8";
/* CSS Document 

TemplateMo 603 Nexaverse

https://templatemo.com/tm-603-nexaverse

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #00f0ff;
	--secondary: #ff00d4;
	--accent: #9d4edd;
	--dark-1: #0a0a12;
	--dark-2: #12121f;
	--dark-3: #1a1a2e;
	--glass-bg: rgba(255, 255, 255, 0.03);
	--glass-border: rgba(255, 255, 255, 0.08);
	--glow-cyan: rgba(0, 240, 255, 0.4);
	--glow-magenta: rgba(255, 0, 212, 0.4);
}

body {
	font-family: 'Outfit', sans-serif;
	background: var(--dark-1);
	color: #ffffff;
	overflow-x: hidden;
	min-height: 100vh;
}

/* Ambient Background */
.ambient-bg {
	position: fixed;
	inset: 0;
	z-index: 0;
	background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), url('images/ss-tattoo-1.png') center center / cover no-repeat;
	background-size: cover; /* 👈 EKRANA SIĞDIRIR */
	background-position: center; /* 👈 ORTALAR */
	background-repeat: no-repeat;
	z-index: 0;
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	animation: float 20s ease-in-out infinite;
}

.orb-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
	top: -200px;
	left: -200px;
	animation-delay: 0s;
}

.orb-2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--glow-magenta) 0%, transparent 70%);
	bottom: -150px;
	right: -150px;
	animation-delay: -7s;
}

.orb-3 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(157, 78, 221, 0.3) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: -14s;
}

@keyframes float {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	25% {
		transform: translate(50px, -30px) scale(1.05);
	}

	50% {
		transform: translate(-30px, 50px) scale(0.95);
	}

	75% {
		transform: translate(-50px, -20px) scale(1.02);
	}
}

/* The Background Grid Pattern Overlay */
.grid-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 80px 80px;
	pointer-events: none;
	inset: 0;
	z-index: 1;
}

/* Loading Screen */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-1);
	z-index: 10000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
	opacity: 0;
	visibility: hidden;
}

.loader-ring {
	width: 80px;
	height: 80px;
	position: relative;
}

.loader-ring::before,
.loader-ring::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	border: 2px solid transparent;
}

.loader-ring::before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-top-color: var(--primary);
	border-right-color: var(--primary);
	animation: spin 1.2s linear infinite;
}

.loader-ring::after {
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	border-bottom-color: var(--secondary);
	border-left-color: var(--secondary);
	animation: spin 0.8s linear infinite reverse;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.loading-text {
	margin-top: 30px;
	font-family: 'Syne', sans-serif;
	font-size: 12px;
	letter-spacing: 4px;
	color: var(--primary);
	text-transform: uppercase;
}

/* Main Container */
.container {
	position: relative;
	z-index: 10;
	padding: 40px 20px;
	max-width: 1200px;
	margin: 0 auto;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}



@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}

	from {
		transform: translateY(30px);
	}
}

/* HEADER */
.header {
	position: relative;
	text-align: center;
	padding-top: 60px;
	/* stacking context kır */
	transform: translateZ(0);
	isolation: isolate;
	z-index: 50;
}

/* LOGO KAPSAYICI */
.logo {
	width: 180px;
	height: 180px;
	margin: 0 auto 30px;
	position: relative;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.85);
	border: 2px solid rgba(255,255,255,0.6);
	box-shadow: 0 0 20px rgba(255,0,0,0.6), 0 0 60px rgba(0,0,0,0.9);
}

	/* LOGO RESMİ – BOYUT KİLİTLİ */
	.logo img {
		width: 140px !important;
		height: 140px !important;
		max-width: 140px;
		max-height: 140px;
		border-radius: 50%;
		object-fit: cover;
		display: block;
		position: relative;
		z-index: 2;
	}


@media (max-width: 768px) {
	.logo {
		width: 140px;
		height: 140px;
	}

		.logo img {
			width: 110px !important;
			height: 110px !important;
		}
}


	






.brand-name {
	font-family: 'Syne', sans-serif;
	font-size: 52px;
	font-weight: 600;
	letter-spacing: 6px;
	margin-bottom: 12px;
	background: linear-gradient(135deg, var(--primary) 0%, #ffffff 50%, var(--secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
}

.tagline {
	font-size: 13px;
	letter-spacing: 5px;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	font-weight: 300;
}

/* Menu Grid */
.menu-grid {
	display: grid;
	grid-template-columns: repeat(3, 204px);
	gap: 25px;
	margin: 0 auto 40px;
	justify-content: center;
}

.menu-item {
	height: 170px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(30px) scale(0.9);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Glossy effect overlay */
.menu-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg,
			rgba(255, 255, 255, 0.12) 0%,
			rgba(255, 255, 255, 0.05) 40%,
			transparent 100%);
	border-radius: 24px 24px 0 0;
	pointer-events: none;
}

/* Glow ring on hover - removed, using cleaner border style */
.menu-item::after {
	display: none;
}

.menu-item:hover {
	transform: translateY(-10px) scale(1.02);
	background: rgba(0, 240, 255, 0.08);
	border-color: var(--primary);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.4),
		0 0 30px rgba(0, 200, 220, 0.2);
}

.menu-item.visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.menu-item.initial-load {
	animation: menuAppear 0.5s ease-out forwards;
}

.menu-item.initial-load:nth-child(1) {
	animation-delay: 1.1s;
}

.menu-item.initial-load:nth-child(2) {
	animation-delay: 1.2s;
}

.menu-item.initial-load:nth-child(3) {
	animation-delay: 1.3s;
}

.menu-item.initial-load:nth-child(4) {
	animation-delay: 1.4s;
}

.menu-item.initial-load:nth-child(5) {
	animation-delay: 1.5s;
}

.menu-item.initial-load:nth-child(6) {
	animation-delay: 1.6s;
}

@keyframes menuAppear {
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Menu Badge - Replaces Icons */
.menu-badge {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Syne', sans-serif;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	position: relative;
	background: linear-gradient(135deg,
			rgba(0, 240, 255, 0.15) 0%,
			rgba(255, 0, 212, 0.15) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--primary);
	text-shadow: 0 0 20px var(--glow-cyan);
	transition: all 0.4s ease;
	overflow: hidden;
}

/* Inner glossy shine */
.menu-badge::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 10%;
	right: 10%;
	height: 45%;
	background: linear-gradient(180deg,
			rgba(255, 255, 255, 0.3) 0%,
			transparent 100%);
	border-radius: 50%;
	pointer-events: none;
}

/* Animated ring */
.menu-badge::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	border: 2px solid transparent;
	border-top-color: var(--primary);
	border-right-color: rgba(0, 200, 220, 0.5);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.menu-item:hover .menu-badge {
	background: linear-gradient(135deg,
			rgba(0, 240, 255, 0.2) 0%,
			rgba(0, 200, 220, 0.15) 100%);
	transform: scale(1.1);
	box-shadow: 0 0 25px rgba(0, 200, 220, 0.25);
}

.menu-item:hover .menu-badge::after {
	opacity: 1;
	animation: badgeSpin 2s linear infinite;
}

@keyframes badgeSpin {
	to {
		transform: rotate(360deg);
	}
}

.menu-title {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
}

.menu-item:hover .menu-title {
	color: #ffffff;
	letter-spacing: 4px;
}

/* Content Sections */
.content-section {
	display: none;
	opacity: 0;
	padding: 80px 20px;
	position: relative;
}

.content-section.active {
	display: block;
	animation: sectionIn 0.6s ease-out forwards;
}

@keyframes sectionIn {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.section-header-small {
	display: flex;
	align-items: center;
	gap: 15px;
}

/* SMALL LOGO KAPSAYICI */
.small-logo {
	width: 80px;
	height: 80px;
	position: relative;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.85);
	border: 2px solid rgba(255,255,255,0.6);
	box-shadow: 0 0 10px rgba(255,0,0,0.5), 0 0 25px rgba(0,0,0,0.9);
}

	/* SMALL LOGO IMG */
	.small-logo img {
		width: 60px !important;
		height: 60px !important;
		max-width: 60px;
		max-height: 60px;
		border-radius: 50%;
		object-fit: cover;
		display: block;
		position: relative;
		z-index: 2;
	}

/* BRAND YAZI */
.small-brand h3 {
	margin: 0;
	font-size: 16px;
	letter-spacing: 2px;
}

.small-brand p {
	margin: 0;
	font-size: 11px;
	opacity: 0.7;
}


/* Back Button */
.back-btn {
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 12px 24px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 100;
}

.back-btn:hover {
	background: rgba(0, 240, 255, 0.1);
	border-color: var(--primary);
	color: var(--primary);
	box-shadow: 0 0 20px var(--glow-cyan);
}

/* Section Content */
.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-title {
	font-family: 'Syne', sans-serif;
	font-size: 42px;
	font-weight: 600;
	margin-bottom: 15px;
	background: linear-gradient(135deg, var(--primary) 0%, #ffffff 50%, var(--secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 2px;
}

/* Glass Cards */
.glass-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.glass-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.glass-card:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== NEW INTRODUCTION SECTION STYLES ===== */

/* Hero Banner */
.intro-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 60px;
	padding: 40px 0;
}

.intro-hero-content {
	max-width: 550px;
}

.intro-badge {
	display: inline-block;
	padding: 8px 18px;
	background: rgba(0, 240, 255, 0.1);
	border: 1px solid rgba(0, 240, 255, 0.3);
	border-radius: 50px;
	font-size: 12px;
	letter-spacing: 2px;
	color: var(--primary);
	margin-bottom: 25px;
}

.intro-headline {
	font-family: 'Syne', sans-serif;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 25px;
	color: #ffffff;
}

.intro-headline span {
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.intro-subtext {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 35px;
}

.intro-cta-group {
	display: flex;
	gap: 15px;
}

.intro-cta-primary {
	padding: 14px 32px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--primary);
	border-radius: 50px;
	color: var(--primary);
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.intro-cta-primary:hover {
	background: rgba(0, 240, 255, 0.15);
	box-shadow: 0 0 25px rgba(0, 200, 220, 0.3);
	transform: translateY(-2px);
}

.intro-cta-secondary {
	padding: 14px 32px;
	background: transparent;
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.7);
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.intro-cta-secondary:hover {
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
}

/* Hero Visual */
.intro-hero-visual {
	position: relative;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.intro-orb {
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.3), rgba(157, 78, 221, 0.2) 50%, transparent 70%);
	filter: blur(40px);
	animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.7;
	}

	50% {
		transform: scale(1.1);
		opacity: 1;
	}
}

.intro-floating-card {
	position: absolute;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 14px;
	padding: 16px 22px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
	animation: floatCard 6s ease-in-out infinite;
}

.intro-floating-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
	border-radius: 14px 14px 0 0;
	pointer-events: none;
}

.card-icon {
	font-size: 20px;
}

.card-text {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.5px;
}

.card-1 {
	top: 30px;
	left: 10%;
	animation-delay: 0s;
}

.card-2 {
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	animation-delay: -2s;
}

.card-3 {
	bottom: 30px;
	left: 20%;
	animation-delay: -4s;
}

@keyframes floatCard {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

.card-2 {
	animation-name: floatCardAlt;
}

@keyframes floatCardAlt {

	0%,
	100% {
		transform: translateY(-50%);
	}

	50% {
		transform: translateY(calc(-50% - 15px));
	}
}

/* Metrics Strip */
.intro-metrics {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	padding: 40px 50px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	margin-bottom: 60px;
	position: relative;
	overflow: hidden;
}

.intro-metrics::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.metric-item {
	text-align: center;
}

.metric-value {
	font-family: 'Syne', sans-serif;
	font-size: 42px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline;
}

.metric-suffix {
	font-family: 'Syne', sans-serif;
	font-size: 28px;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.metric-label {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 8px;
	letter-spacing: 1px;
}

.metric-divider {
	width: 1px;
	height: 50px;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Core Values */
.intro-values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 60px;
}

.value-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 35px 30px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.value-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.value-card:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 240, 255, 0.2);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.value-number {
	font-family: 'Syne', sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: rgba(0, 240, 255, 0.15);
	margin-bottom: 15px;
	line-height: 1;
}

.value-card h3 {
	font-family: 'Syne', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 12px;
}

.value-card p {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
}

/* Tech Stack */
.intro-tech {
	display: none;
}

.tech-label {
	font-size: 12px;
	letter-spacing: 3px;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.tech-marquee {
	overflow: hidden;
	position: relative;
	padding: 20px 0;
}

.tech-marquee::before,
.tech-marquee::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	z-index: 2;
	pointer-events: none;
}

.tech-marquee::before {
	left: 0;
	background: linear-gradient(90deg, var(--dark-1), transparent);
}

.tech-marquee::after {
	right: 0;
	background: linear-gradient(-90deg, var(--dark-1), transparent);
}

.tech-track {
	display: flex;
	gap: 40px;
	animation: marquee 20s linear infinite;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.tech-item {
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.3);
	white-space: nowrap;
	transition: color 0.3s ease;
}

.tech-item:hover {
	color: var(--primary);
}

/* Database-powered gallery marquee */
.gallery-marquee-section {
	width: 100%;
	margin: 18px auto 8px;
	padding: 14px 0 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-marquee-heading {
	text-align: center;
	margin-bottom: 8px;
}

.gallery-marquee-kicker {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2.5px;
	color: rgba(255, 255, 255, 0.52);
}

.gallery-marquee-heading h3 {
	margin: 7px 0 5px;
	font-family: 'Syne', sans-serif;
	font-size: clamp(24px, 4vw, 38px);
}

.gallery-marquee-heading p {
	margin: 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 14px;
}

.gallery-marquee {
	position: relative;
	overflow: hidden;
	padding: 15px 0;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.gallery-filmstrip {
	background-color: #09090b;
	background-image:
		repeating-linear-gradient(90deg, transparent 0 10px, rgba(255,255,255,.28) 10px 15px, transparent 15px 22px),
		repeating-linear-gradient(90deg, transparent 0 10px, rgba(255,255,255,.28) 10px 15px, transparent 15px 22px);
	background-size: auto 5px, auto 5px;
	background-position: left 3px, left calc(100% - 3px);
	background-repeat: repeat-x;
	border-top: 1px solid rgba(255,255,255,.12);
	border-bottom: 1px solid rgba(255,255,255,.12);
}

.gallery-marquee-track {
	display: flex;
	width: max-content;
	gap: 8px;
	animation: gallery-marquee-scroll 34s linear infinite;
}

.gallery-marquee:hover .gallery-marquee-track,
.gallery-marquee:focus-within .gallery-marquee-track {
	animation-play-state: paused;
}

.gallery-marquee-card {
	position: relative;
	display: block;
	width: 80px !important;
	height: 80px !important;
	flex: 0 0 auto;
	overflow: hidden;
	border: 1px solid rgba(0, 240, 255, 0.2);
	border-radius: 4px;
	background: #111;
	box-shadow: none;
	text-decoration: none;
	transform: translateZ(0);
}

.gallery-marquee-card img {
	display: block;
	width: 80px !important;
	height: 80px !important;
	max-width: 80px !important;
	object-fit: cover !important;
	transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-marquee-card span {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 18px 8px 6px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
	color: #fff;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.gallery-marquee-card:hover img,
.gallery-marquee-card:focus img {
	transform: scale(1.07);
	filter: saturate(1.15) contrast(1.05);
}

@keyframes gallery-marquee-scroll {
	to { transform: translateX(calc(-50% - 4px)); }
}

@media (max-width: 600px) {
	.gallery-marquee-section { margin-top: 10px; padding-top: 9px; }
	.gallery-marquee { padding: 13px 0; }
	.gallery-marquee-track { gap: 6px; animation-duration: 28s; }
	.gallery-marquee-card { width: 62px !important; height: 62px !important; border-radius: 3px; }
	.gallery-marquee-card img { width: 62px !important; height: 62px !important; max-width: 62px !important; }
}

@media (prefers-reduced-motion: reduce) {
	.gallery-marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
	.gallery-marquee-track { animation: none; }
}

/* Services Row Layout */
.services-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.service-row {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}

.service-row::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.service-row::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary), var(--accent));
	border-radius: 20px 0 0 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-row:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(0, 240, 255, 0.2);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-row:hover::after {
	opacity: 1;
}

.service-row-icon {
	width: 240px;
	height: 180px;
	min-width: 140px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(157, 78, 221, 0.1));
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.service-row-icon::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 10%;
	right: 10%;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
	border-radius: 12px 12px 50% 50%;
}

.service-row-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.service-row-content {
	flex: 1;
}

.service-row-content h4 {
	font-family: 'Syne', sans-serif;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
	color: var(--primary);
}

.service-row-content p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
}

.service-row-arrow {
	display: none;
}

/* Tabs */
.tabs-container {
	margin-bottom: 30px;
}

.tab-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.tab-btn {
	padding: 12px 28px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.tab-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
	border-radius: 50px 50px 0 0;
}

.tab-btn:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
}

.tab-btn.active {
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(255, 0, 212, 0.2));
	border-color: var(--primary);
	color: var(--primary);
	box-shadow: 0 0 20px var(--glow-cyan);
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
	animation: tabFade 0.4s ease-out;
}

@keyframes tabFade {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.gallery-item {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1;
	cursor: pointer;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	transition: all 0.4s ease;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	border-color: var(--primary);
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 40%, rgba(10, 10, 18, 0.9) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay h4 {
	font-family: 'Syne', sans-serif;
	font-size: 16px;
	color: var(--primary);
	margin-bottom: 5px;
}

.gallery-overlay p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}

/* Filter Buttons */
.filter-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 10px 20px;
	background: transparent;
	border: 1px solid var(--glass-border);
	border-radius: 30px;
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
	background: rgba(0, 240, 255, 0.1);
	border-color: var(--primary);
	color: var(--primary);
}

/* Testimonials */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

.testimonial-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: hidden;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 20px;
	right: 30px;
	font-family: 'Syne', sans-serif;
	font-size: 80px;
	color: rgba(0, 240, 255, 0.1);
	line-height: 1;
}

.testimonial-text {
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.author-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--primary);
	box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h5 {
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--primary);
}

.author-info p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

/* About Section */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.about-text h3 {
	font-family: 'Syne', sans-serif;
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 20px;
	color: var(--primary);
}

.about-text p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 15px;
}

.about-text a {
    color: var(--primary);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.about-text a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.about-text a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.about-text a:hover::after {
    width: 100%;
}

.about-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

.about-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(157, 78, 221, 0.1));
}

/* Contact Form */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	position: relative;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 16px 20px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	color: #ffffff;
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 20px var(--glow-cyan);
}

.form-group textarea {
	min-height: 150px;
	resize: vertical;
}

.submit-btn {
	padding: 16px 40px;
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	color: var(--primary);
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.submit-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
	border-radius: 50px 50px 0 0;
}

.submit-btn:hover {
	background: rgba(0, 240, 255, 0.1);
	border-color: var(--primary);
	transform: translateY(-3px);
	box-shadow:
		0 15px 30px rgba(0, 0, 0, 0.3),
		0 0 30px rgba(0, 200, 220, 0.25);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.contact-item {
	background: var(--glass-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	padding: 25px;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: all 0.3s ease;
}

.contact-item:hover {
	border-color: var(--primary);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(157, 78, 221, 0.2));
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: var(--primary);
	position: relative;
	overflow: hidden;
}

.contact-icon::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 10%;
	right: 10%;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
	border-radius: 50%;
}

.contact-details h4 {
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 5px;
}

.contact-details p {
	color: #ffffff;
	font-size: 15px;
}

/* Exit animations */
.menu-item.exit-up {
	animation: exitDown 0.5s ease-out forwards !important;
	pointer-events: none;
}

@keyframes exitDown {
	to {
		transform: translateY(50px);
		opacity: 0;
	}
}

.menu-item.return {
	animation: menuReturn 0.4s ease-out forwards !important;
}

@keyframes menuReturn {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.9);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Footer */
.footer {
	margin-top: auto;
	padding: 30px 0;
	text-align: center;
	opacity: 0;
	animation: fadeUp 0.5s ease-out 1.7s forwards;
}

.footer p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 1px;
}

.footer a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer a:hover {
	color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 992px) {
	.menu-grid {
		grid-template-columns: repeat(3, 170px);
	}

	.menu-item {
		height: 145px;
	}

	.intro-hero {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.intro-hero-content {
		text-align: center;
		max-width: 100%;
	}

	.intro-cta-group {
		justify-content: center;
	}

	.intro-hero-visual {
		height: 300px;
	}

	.intro-metrics {
		flex-wrap: wrap;
		gap: 30px;
	}

	.metric-divider {
		display: none;
	}

	.intro-values {
		grid-template-columns: 1fr;
	}

	.services-list {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-content,
	.contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.brand-name {
		font-size: 36px;
		letter-spacing: 4px;
	}

	.menu-grid {
		grid-template-columns: repeat(2, 155px);
		gap: 15px;
	}

	.menu-item {
		height: 135px;
	}

	.menu-badge {
		width: 50px;
		height: 50px;
		font-size: 18px;
	}

	.section-title {
		font-size: 28px;
	}

	.intro-headline {
		font-size: 36px;
	}

	.intro-hero-visual {
		display: none;
	}

	.intro-metrics {
		padding: 30px 25px;
	}

	.metric-value {
		font-size: 32px;
	}

	.service-row {
		flex-direction: column;
		text-align: center;
	}

	.service-row-icon {
		width: 200px;
		height: 150px;
		min-width: 120px;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.section-header-small {
		position: relative;
		top: auto;
		left: auto;
		margin-bottom: 20px;
		justify-content: center;
	}

	.back-btn {
		position: relative;
		top: auto;
		right: auto;
		display: block;
		width: fit-content;
		margin: 0 auto 30px;
	}

	.content-section {
		padding-top: 20px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 20px 15px;
	}

	.brand-name {
		font-size: 28px;
		letter-spacing: 3px;
	}

	.tagline {
		font-size: 10px;
		letter-spacing: 3px;
	}

	.menu-grid {
		grid-template-columns: repeat(2, 130px);
		gap: 12px;
	}

	.menu-item {
		height: 120px;
	}

	.menu-badge {
		width: 45px;
		height: 45px;
		font-size: 16px;
	}

	.menu-title {
		font-size: 10px;
		letter-spacing: 2px;
	}

	.intro-headline {
		font-size: 28px;
	}

	.intro-subtext {
		font-size: 15px;
	}

	.intro-cta-group {
		flex-direction: column;
		align-items: center;
	}

	.intro-cta-primary,
	.intro-cta-secondary {
		width: 100%;
		max-width: 250px;
		text-align: center;
	}

	.intro-metrics {
		flex-direction: column;
		gap: 25px;
	}

	.metric-value {
		font-size: 36px;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.tab-buttons {
		flex-direction: column;
		align-items: center;
	}

	.tab-btn {
		width: 100%;
		max-width: 250px;
	}





	






}

.about-eyebrow { display:block; margin-bottom:12px; color:#ff3b63; font:700 10px 'Syne',sans-serif; letter-spacing:3px; }
.about-text blockquote { position:relative; margin:22px 0; padding:18px 20px; border-left:2px solid #ff315e; border-radius:0 12px 12px 0; background:rgba(255,35,75,.055); color:rgba(255,255,255,.88); font:500 15px/1.7 'Syne',sans-serif; }
.about-values { display:flex; flex-wrap:wrap; gap:9px; }
.about-values span { padding:8px 10px; border:1px solid rgba(255,57,91,.25); border-radius:99px; background:rgba(255,35,75,.045); color:rgba(255,255,255,.66); font-size:10px; letter-spacing:.5px; }
.about-video { position:relative; overflow:hidden; border:1px solid rgba(255,47,84,.48); border-radius:22px; background:#050507; box-shadow:0 24px 60px rgba(0,0,0,.52),0 0 24px rgba(255,30,66,.15); }
.about-video::before { content:''; position:absolute; inset:0; z-index:1; pointer-events:none; background:linear-gradient(180deg,transparent 55%,rgba(0,0,0,.62)); }
.about-video video { display:block; width:100%; aspect-ratio:4/5; object-fit:cover; background:#050507; }
.about-video-label { position:absolute; left:18px; bottom:54px; z-index:2; display:grid; grid-template-columns:10px auto; align-items:center; gap:2px 8px; pointer-events:none; text-shadow:0 2px 10px #000; }
.about-video-label i { grid-row:1/3; width:8px; height:8px; border-radius:50%; background:#ff315e; box-shadow:0 0 12px #ff315e; animation:aboutVideoPulse 1.7s ease-in-out infinite alternate; }
.about-video-label span { color:rgba(255,255,255,.65); font-size:8px; letter-spacing:2px; }
.about-video-label strong { font:600 14px 'Syne',sans-serif; letter-spacing:1px; }
@keyframes aboutVideoPulse { from{opacity:.55;transform:scale(.8)}to{opacity:1;transform:scale(1.2)} }
@media(max-width:992px){.about-video{max-width:640px;margin:10px auto 0}.about-video video{aspect-ratio:16/10}}
@media(max-width:600px){.about-text blockquote{font-size:13px;padding:15px}.about-values{display:grid}.about-video video{aspect-ratio:4/5}}

/* SS-TATTOO NEON MENÜ */
.menu-grid {
	grid-template-columns: repeat(3, minmax(190px, 220px));
	gap: 20px;
	margin-top: 34px;
	perspective: 1000px;
}

.menu-item {
	height: 188px;
	border-radius: 18px;
	background:
		linear-gradient(145deg, rgba(22, 22, 26, .94), rgba(4, 4, 7, .96)),
		repeating-linear-gradient(135deg, transparent 0 12px, rgba(255,255,255,.02) 12px 13px);
	border: 1px solid rgba(255,45,82,.86);
	box-shadow: inset 0 0 24px rgba(255,25,65,.15), 0 16px 45px rgba(0,0,0,.58), 0 0 14px rgba(255,30,67,.72), 0 0 38px rgba(255,30,67,.34);
	isolation: isolate;
}

.menu-item::before {
	content: '';
	position: absolute;
	inset: 0;
	height: auto;
	border-radius: inherit;
	background:
		linear-gradient(90deg, transparent, rgba(255, 35, 70, .62), transparent) top / 70% 1px no-repeat,
		radial-gradient(circle at 50% 0, rgba(255, 25, 65, .16), transparent 48%);
	opacity: .72;
	pointer-events: none;
}

.menu-item::after {
	content: '✦';
	display: block;
	position: absolute;
	right: 13px;
	bottom: 7px;
	font-size: 38px;
	color: rgba(255,255,255,.035);
	transform: rotate(18deg);
	pointer-events: none;
}

.menu-item:nth-child(even)::before {
	background:
		linear-gradient(90deg, transparent, rgba(177, 45, 255, .68), transparent) top / 70% 1px no-repeat,
		radial-gradient(circle at 50% 0, rgba(141, 40, 255, .17), transparent 48%);
}

.menu-item:nth-child(even) {
	border-color: rgba(183,70,255,.88);
	box-shadow: inset 0 0 24px rgba(156,35,255,.16), 0 16px 45px rgba(0,0,0,.58), 0 0 14px rgba(156,44,255,.74), 0 0 38px rgba(156,44,255,.36);
}

.menu-item:hover {
	transform: translateY(-9px) rotateX(2deg) scale(1.025);
	background: linear-gradient(145deg, rgba(34, 10, 17, .97), rgba(7, 5, 9, .98));
	border-color: rgba(255, 58, 88, .72);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 50px rgba(0,0,0,.55), 0 0 18px rgba(255, 20, 65, .34), 0 0 42px rgba(255, 20, 65, .14);
}

.menu-item:nth-child(even):hover {
	border-color: rgba(185, 75, 255, .72);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 50px rgba(0,0,0,.55), 0 0 18px rgba(156, 44, 255, .34), 0 0 42px rgba(156, 44, 255, .14);
}

.menu-number {
	position: absolute;
	top: 13px;
	left: 15px;
	font-family: 'Syne', sans-serif;
	font-size: 10px;
	letter-spacing: 2px;
	color: rgba(255,255,255,.32);
}

.menu-badge {
	width: 66px;
	height: 66px;
	margin-bottom: 13px;
	background: radial-gradient(circle, rgba(255, 30, 67, .18), rgba(5,5,8,.8) 68%);
	border: 1px solid rgba(255, 57, 88, .62);
	color: #fff;
	font-size: 27px;
	text-shadow: 0 0 8px #ff174d, 0 0 22px #ff174d;
	box-shadow: inset 0 0 20px rgba(255, 30, 67, .13), 0 0 15px rgba(255, 30, 67, .2);
}

.menu-item:nth-child(even) .menu-badge {
	background: radial-gradient(circle, rgba(155, 45, 255, .2), rgba(5,5,8,.8) 68%);
	border-color: rgba(181, 79, 255, .62);
	text-shadow: 0 0 8px #a72cff, 0 0 22px #a72cff;
	box-shadow: inset 0 0 20px rgba(155, 45, 255, .15), 0 0 15px rgba(155, 45, 255, .22);
}

.menu-badge::before { background: linear-gradient(180deg, rgba(255,255,255,.22), transparent); }
.menu-badge::after { border-top-color:#ff315f; border-right-color:rgba(255,49,95,.5); }
.menu-item:nth-child(even) .menu-badge::after { border-top-color:#b14cff; border-right-color:rgba(177,76,255,.5); }
.menu-item:hover .menu-badge { transform: scale(1.08) rotate(-3deg); background: rgba(10,8,12,.9); box-shadow: 0 0 18px rgba(255,30,67,.46), inset 0 0 20px rgba(255,30,67,.18); }
.menu-item:nth-child(even):hover .menu-badge { box-shadow: 0 0 18px rgba(166,50,255,.48), inset 0 0 20px rgba(166,50,255,.18); }

.menu-title {
	font-family: 'Syne', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 3.5px;
	color: rgba(255,255,255,.92);
	text-shadow: 0 0 10px rgba(255,255,255,.08);
}

.menu-kicker {
	margin-top: 7px;
	font-size: 10px;
	letter-spacing: 1.2px;
	color: rgba(255,255,255,.38);
	transition: color .3s ease, letter-spacing .3s ease;
}

.menu-item:hover .menu-title { color:#fff; letter-spacing:4px; text-shadow:0 0 13px rgba(255,45,80,.5); }
.menu-item:nth-child(even):hover .menu-title { text-shadow:0 0 13px rgba(177,76,255,.58); }
.menu-item:hover .menu-kicker { color:rgba(255,255,255,.7); letter-spacing:1.5px; }

@media (max-width: 768px) {
	.menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); width:100%; gap:12px; margin-top:25px; }
	.menu-item { height:158px; }
	.menu-badge { width:54px; height:54px; font-size:22px; margin-bottom:10px; }
	.menu-title { font-size:10px; letter-spacing:2px; }
	.menu-kicker { font-size:9px; letter-spacing:.7px; }
	.menu-item:hover .menu-title { letter-spacing:2.4px; }
}

@media (max-width: 380px) {
	.menu-item { height:145px; }
	.menu-kicker { display:none; }
}

/* Dövme bilgi sayfası */
.tattoo-info-page { overflow-x:hidden; }
.tattoo-info-nav .small-logo img { width:120px !important; height:72px !important; object-fit:contain; }
.tattoo-info-shell { width:min(1180px, calc(100% - 40px)); margin:28px auto 80px; color:#f6f1ed; }
.tattoo-history-hero { position:relative; min-height:520px; overflow:hidden; border:1px solid rgba(255,255,255,.13); border-radius:28px; background:#090909; box-shadow:0 30px 80px rgba(0,0,0,.5); }
.tattoo-history-hero:after { content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(5,5,6,.93) 0%, rgba(5,5,6,.62) 45%, rgba(5,5,6,.12) 100%), linear-gradient(0deg, rgba(5,5,6,.8), transparent 55%); }
.tattoo-history-hero img { position:absolute; inset:0; width:100% !important; height:100% !important; object-fit:cover !important; }
.tattoo-history-overlay { position:absolute; z-index:2; left:clamp(25px,6vw,76px); bottom:clamp(34px,7vw,78px); width:min(650px, calc(100% - 50px)); }
.tattoo-info-kicker,.tattoo-info-heading span { display:block; margin-bottom:13px; color:#ff4965; font-size:12px; font-weight:700; letter-spacing:3px; }
.tattoo-history-overlay h2 { margin:0 0 17px; font:700 clamp(34px,5.5vw,68px)/1.02 'Syne',sans-serif; letter-spacing:-2px; color:#fff; }
.tattoo-history-overlay p { max-width:590px; margin:0; font-size:clamp(15px,1.7vw,19px); line-height:1.7; color:rgba(255,255,255,.78); }
.tattoo-info-block { margin-top:28px; padding:clamp(28px,5vw,58px); border:1px solid rgba(255,255,255,.1); border-radius:24px; background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018)); }
.tattoo-info-heading { max-width:760px; margin-bottom:32px; }
.tattoo-info-heading h3,.tattoo-pain-copy h3 { margin:0 0 12px; font:600 clamp(26px,3.5vw,42px)/1.12 'Syne',sans-serif; color:#fff; }
.tattoo-info-heading p,.tattoo-pain-copy p { margin:0; color:rgba(255,255,255,.62); font-size:16px; line-height:1.75; }
.tattoo-timeline { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.tattoo-timeline article { position:relative; min-height:210px; padding:25px 21px; border-top:2px solid #ff4965; border-radius:4px 4px 16px 16px; background:rgba(0,0,0,.28); }
.tattoo-timeline article:before { content:""; position:absolute; top:-6px; left:20px; width:10px; height:10px; border-radius:50%; background:#ff4965; box-shadow:0 0 18px #ff4965; }
.tattoo-timeline b { display:block; margin-bottom:24px; font-size:11px; letter-spacing:1.5px; color:#ff8a9c; }
.tattoo-timeline h4,.tattoo-process-grid h4 { margin:0 0 10px; font:600 18px 'Syne',sans-serif; color:#fff; }
.tattoo-timeline p,.tattoo-process-grid p { margin:0; font-size:14px; line-height:1.65; color:rgba(255,255,255,.58); }
.tattoo-style-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:15px; }
.tattoo-style-grid article { position:relative; height:310px; overflow:hidden; border-radius:18px; background:#111; }
.tattoo-style-grid article:after { content:""; position:absolute; inset:35% 0 0; background:linear-gradient(transparent,rgba(0,0,0,.94)); }
.tattoo-style-grid img { width:100% !important; height:100% !important; object-fit:cover !important; transition:transform .5s ease; }
.tattoo-style-grid article:hover img { transform:scale(1.06); }
.tattoo-style-grid article div { position:absolute; z-index:2; left:20px; right:20px; bottom:18px; }
.tattoo-style-grid h4 { margin:0 0 6px; font:600 19px 'Syne',sans-serif; color:#fff; }
.tattoo-style-grid p { margin:0; font-size:13px; line-height:1.45; color:rgba(255,255,255,.66); }
.tattoo-process-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:15px; }
.tattoo-process-grid article { padding:27px; border-radius:18px; background:rgba(0,0,0,.28); }
.tattoo-process-grid i { display:grid; place-items:center; width:38px; height:38px; margin-bottom:26px; border:1px solid rgba(255,73,101,.65); border-radius:50%; color:#ff7188; font-style:normal; font-weight:700; box-shadow:0 0 18px rgba(255,73,101,.13); }
.tattoo-pain-section { display:grid; grid-template-columns:1.2fr .8fr; gap:45px; align-items:center; }
.tattoo-pain-section > img { width:100% !important; max-height:410px !important; object-fit:contain !important; filter:drop-shadow(0 18px 28px rgba(0,0,0,.42)); }
.tattoo-pain-scale { display:flex; align-items:center; gap:10px; margin-top:28px; color:rgba(255,255,255,.55); font-size:11px; text-transform:uppercase; letter-spacing:1px; }
.tattoo-pain-scale div { flex:1; height:5px; border-radius:9px; background:linear-gradient(90deg,#f7bd52,#ff4965,#8a3ffc); }
.tattoo-faq-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.tattoo-faq-grid details { padding:0 21px; border:1px solid rgba(255,255,255,.09); border-radius:15px; background:rgba(0,0,0,.25); }
.tattoo-faq-grid summary { position:relative; padding:20px 30px 20px 0; cursor:pointer; list-style:none; color:#f8f4f1; font-weight:600; line-height:1.35; }
.tattoo-faq-grid summary::-webkit-details-marker { display:none; }
.tattoo-faq-grid summary:after { content:"+"; position:absolute; right:0; top:17px; color:#ff4965; font-size:24px; font-weight:300; }
.tattoo-faq-grid details[open] summary:after { content:"−"; }
.tattoo-faq-grid details p { margin:0; padding:0 0 20px; color:rgba(255,255,255,.58); font-size:14px; line-height:1.65; }
.tattoo-info-note { display:flex; align-items:center; gap:30px; margin-top:28px; padding:25px 30px; border:1px solid rgba(255,73,101,.25); border-radius:18px; background:linear-gradient(100deg,rgba(255,73,101,.12),rgba(138,63,252,.08)); }
.tattoo-info-note div { display:flex; flex-direction:column; min-width:100px; }
.tattoo-info-note strong { color:#fff; font:600 13px 'Syne',sans-serif; letter-spacing:1.5px; }
.tattoo-info-note span { margin-top:3px; color:rgba(255,255,255,.48); font-size:11px; }
.tattoo-info-note a { margin-left:auto; padding:14px 19px; border-radius:10px; background:#ff4965; color:#fff; font-size:13px; font-weight:700; text-decoration:none; white-space:nowrap; box-shadow:0 8px 25px rgba(255,73,101,.22); }

@media (max-width:900px) {
	.tattoo-timeline,.tattoo-style-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
	.tattoo-pain-section { grid-template-columns:1fr; }
	.tattoo-pain-section > img { max-height:340px !important; }
	.tattoo-info-note { flex-wrap:wrap; }
	.tattoo-info-note a { width:100%; margin:0; text-align:center; }
}
@media (max-width:640px) {
	.tattoo-info-shell { width:calc(100% - 24px); margin-top:18px; }
	.tattoo-history-hero { min-height:480px; border-radius:20px; }
	.tattoo-history-hero:after { background:linear-gradient(0deg,rgba(5,5,6,.96) 0%,rgba(5,5,6,.6) 58%,rgba(5,5,6,.08) 100%); }
	.tattoo-history-overlay { left:22px; bottom:29px; width:calc(100% - 44px); }
	.tattoo-history-overlay h2 { letter-spacing:-1px; }
	.tattoo-info-block { padding:25px 18px; border-radius:19px; }
	.tattoo-timeline,.tattoo-process-grid,.tattoo-faq-grid { grid-template-columns:1fr; }
	.tattoo-style-grid { gap:10px; }
	.tattoo-style-grid article { height:225px; }
	.tattoo-style-grid article div { left:14px; right:14px; bottom:14px; }
	.tattoo-style-grid h4 { font-size:16px; }
	.tattoo-style-grid p { font-size:11px; }
	.tattoo-timeline article { min-height:auto; }
	.tattoo-info-note { gap:18px; padding:22px 18px; }
	.tattoo-info-note div { width:calc(33.333% - 12px); min-width:0; }
}
