/* Base */
:root {
	--bg: #0a0a0b;
	--bg-2: #0f1012;
	--text: #e6e6ea;
	--muted: #9aa0a6;
	--primary: #5ef2ff;
	--secondary: #8b5cf6;
	--accent: #22e58f;
	--card: #121317;
	--border: #1f2230;
	--ring: rgba(94, 242, 255, 0.5);
	--shadow: rgba(0, 0, 0, 0.5);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	color: var(--text);
	background: radial-gradient(1200px 800px at 20% 10%, #10121a 0%, var(--bg) 60%),
		radial-gradient(1000px 600px at 100% 100%, #0e0f14 0%, var(--bg) 50%),
		var(--bg);
	overflow-x: hidden;
	scroll-behavior: smooth;
}

/* Canvas background sits behind everything */
#bg-canvas {
	position: fixed;
	inset: 0;
	z-index: -2;
}

.noise-overlay {
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/fi lter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	z-index: -1;
}

/* Loader */
#loader {
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	background: radial-gradient(1000px 600px at 50% 30%, #0f121a 0%, var(--bg) 60%), var(--bg);
	z-index: 9999;
	transition: opacity 600ms ease, visibility 600ms ease;
}

#loader.hidden {
	opacity: 0;
	visibility: hidden;
}

.loader-core {
	display: grid;
	place-items: center;
	gap: 24px;
}

.loader-logo {
	width: 250px;
	height: 250px;
	object-fit: contain;
	filter: drop-shadow(0 0 32px rgba(94, 242, 255, 0.4));
	animation: float 3.5s ease-in-out infinite;
}

.loader-ring {
	position: relative;
	width: 200px;
	height: 200px;
}

.loader-ring span {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid transparent;
}

.loader-ring span:nth-child(1) {
	border-left-color: var(--primary);
	animation: spin 1.3s linear infinite;
}
.loader-ring span:nth-child(2) {
	border-top-color: var(--secondary);
	animation: spin 1.9s linear infinite reverse;
}
.loader-ring span:nth-child(3) {
	border-right-color: var(--accent);
	animation: spin 2.3s linear infinite;
}

.loader-text {
	color: var(--muted);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
}

/* Header & Menu */
.site-header {
	position: fixed;
	top: 16px;
	left: 16px;
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 12px;
}

.menu-toggle {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(10, 12, 18, 0.75);
	backdrop-filter: blur(12px);
	display: grid;
	place-items: center;
	gap: 5px;
	box-shadow: 
		0 4px 20px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(94, 242, 255, 0.1) inset,
		0 0 30px rgba(94, 242, 255, 0.05);
	cursor: pointer;
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}
.menu-toggle::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(94, 242, 255, 0.1), rgba(139, 92, 246, 0.1));
	opacity: 0;
	transition: opacity 300ms ease;
}
.menu-toggle:hover {
	transform: translateY(-2px) scale(1.05);
	border-color: rgba(94, 242, 255, 0.3);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(94, 242, 255, 0.2) inset,
		0 0 50px rgba(94, 242, 255, 0.15);
}
.menu-toggle:hover::before {
	opacity: 1;
}
.menu-toggle:active {
	transform: translateY(0) scale(0.98);
}
.menu-toggle .bar {
	display: block;
	width: 22px;
	height: 2.5px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	border-radius: 3px;
	box-shadow: 
		0 0 8px rgba(94, 242, 255, 0.5),
		0 0 12px rgba(139, 92, 246, 0.3);
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}
.menu-toggle .bar:nth-child(1) {
	transform-origin: center;
}
.menu-toggle .bar:nth-child(2) {
	transform-origin: center;
}
.menu-toggle .bar:nth-child(3) {
	transform-origin: center;
}
/* Hamburger to X animasyonu */
.menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
	position: absolute;
	top: 68px;
	left: 0;
	background: rgba(10, 12, 18, 0.85);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	opacity: 0;
	transform: translateY(-8px) scale(0.96);
	pointer-events: none;
	transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(94, 242, 255, 0.1) inset;
	overflow: hidden;
}
.site-nav::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(94, 242, 255, 0.05), rgba(139, 92, 246, 0.05));
	opacity: 0;
	transition: opacity 300ms ease;
}
.site-nav.open {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}
.site-nav.open::before {
	opacity: 1;
}
.site-nav ul {
	list-style: none;
	margin: 0;
	padding: 10px;
	display: grid;
	gap: 6px;
	min-width: 220px;
}
.site-nav a {
	display: block;
	padding: 12px 16px;
	color: var(--text);
	text-decoration: none;
	border-radius: 12px;
	border: 1px solid transparent;
	transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	font-weight: 500;
}
.site-nav a::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(94, 242, 255, 0.1), rgba(139, 92, 246, 0.1));
	opacity: 0;
	transition: opacity 250ms ease;
}
.site-nav a:hover {
	background: rgba(24, 26, 36, 0.6);
	border-color: rgba(94, 242, 255, 0.2);
	color: #e9fbff;
	transform: translateX(4px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.site-nav a:hover::before {
	opacity: 1;
}
.site-nav a:active {
	transform: translateX(2px) scale(0.98);
}

/* Brand */
.brand {
	position: fixed;
	top: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	opacity: 0.92;
	user-select: none;
	pointer-events: none;
}
.brand-logo {
	width: 24px;
	height: 24px;
	opacity: 0.9;
	filter: drop-shadow(0 0 8px rgba(94, 242, 255, 0.3));
}
.brand-name {
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: lowercase;
	background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 0 18px rgba(94, 242, 255, 0.25);
}

/* Layout */
.section {
	padding: 120px 24px;
}
.container {
	max-width: 1100px;
	margin: 0 auto;
}

.hero-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 12px 0 24px;
}
.hero-logo img {
	width: clamp(180px, 25vw, 320px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 0 40px rgba(94, 242, 255, 0.3)) drop-shadow(0 0 60px rgba(139, 92, 246, 0.2));
	animation: float 4s ease-in-out infinite;
}
.hero .lead {
	color: var(--muted);
	font-size: clamp(16px, 1.8vw, 20px);
	margin-bottom: 28px;
}
.hero-media {
	margin: 0 0 18px;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.08);
	background: 
		radial-gradient(ellipse at center, rgba(94, 242, 255, 0.08) 0%, transparent 70%),
		radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 60%),
		linear-gradient(135deg, rgba(10, 12, 18, 0.95) 0%, rgba(15, 17, 24, 0.9) 100%);
	backdrop-filter: blur(6px);
	box-shadow: 
		0 20px 60px rgba(0,0,0,0.6),
		0 0 0 1px rgba(94, 242, 255, 0.05) inset,
		0 0 40px rgba(94, 242, 255, 0.03);
	position: relative;
	aspect-ratio: 16 / 9;
}
.hero-media::before {
	content: '';
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.5) 100%),
		linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.35) 100%),
		linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.15) 100%);
	pointer-events: none;
	z-index: 3;
	border-radius: 18px;
	mix-blend-mode: multiply;
}
.hero-media.interactive-image {
	cursor: default;
	position: relative;
}
.angle-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(10, 12, 18, 0.75);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text);
	display: grid;
	place-items: center;
	cursor: pointer;
	z-index: 10;
	opacity: 0;
	transition: opacity 300ms ease, transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
	pointer-events: none;
}
.hero-media.interactive-image:hover .angle-nav {
	opacity: 1;
	pointer-events: auto;
}
.angle-nav:hover {
	background: rgba(18, 20, 28, 0.9);
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 0 4px rgba(94, 242, 255, 0.15);
}
.angle-nav:active {
	transform: translateY(-50%) scale(0.95);
}
.angle-nav svg {
	width: 24px;
	height: 24px;
	stroke: var(--primary);
	filter: drop-shadow(0 0 8px rgba(94, 242, 255, 0.5));
	transition: stroke 200ms ease, filter 200ms ease;
}
.angle-nav:hover svg {
	stroke: #7ae5ff;
	filter: drop-shadow(0 0 12px rgba(94, 242, 255, 0.8));
}
.angle-prev {
	left: 20px;
}
.angle-next {
	right: 20px;
}
.hero-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	z-index: 1;
	transition: opacity 400ms ease;
	pointer-events: none;
	filter: brightness(0.95) contrast(1.08) saturate(1.1);
}
.hero-media img.active {
	opacity: 1;
	z-index: 2;
}
.hero-media:hover img {
	transform: none;
}

.product-card {
	background: rgba(12, 14, 20, 0.25);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 18px;
	padding: 24px;
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.6);
	position: relative;
	overflow: hidden;
}
.product-card::after {
	content: '';
	position: absolute;
	inset: auto -2px -2px -2px;
	height: 6px;
	background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
	filter: blur(0.3px);
	box-shadow:
		0 0 20px rgba(94, 242, 255, 0.4),
		0 0 26px rgba(139, 92, 246, 0.3),
		0 0 28px rgba(34, 229, 143, 0.25);
	animation: hue 8s linear infinite;
	border-radius: 0 0 18px 18px;
}
.product-card h2 {
	margin: 0 0 8px;
}
.product-card p {
	color: var(--muted);
	margin: 0 0 16px;
}
.product-card .gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 14px;
}
.product-card .gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.04);
	transition: transform 400ms ease, box-shadow 300ms ease;
}
.product-card .gallery img:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(0,0,0,0.5);
}
.rgb-strip {
	position: absolute;
	inset: -2px -2px auto -2px;
	height: 6px;
	background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
	filter: blur(0.3px);
	box-shadow:
		0 0 20px rgba(94, 242, 255, 0.4),
		0 0 26px rgba(139, 92, 246, 0.3),
		0 0 28px rgba(34, 229, 143, 0.25);
	animation: hue 8s linear infinite;
	border-radius: 18px 18px 0 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: linear-gradient(180deg, #12131a, #0e0f14);
	color: var(--text);
	text-decoration: none;
	cursor: pointer;
	transition: transform 140ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.button:hover {
	transform: translateY(-1px);
	border-color: #2a2f44;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(94, 242, 255, 0.08) inset;
}
.button.primary {
	border-color: rgba(94, 242, 255, 0.35);
	box-shadow: 0 0 0 1px rgba(94, 242, 255, 0.2) inset, 0 0 30px rgba(94, 242, 255, 0.08);
}
.button.glow {
	border-color: rgba(139, 92, 246, 0.35);
	box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.2) inset, 0 0 30px rgba(139, 92, 246, 0.08);
}

/* Reviews */
.social-media {
  text-align: left;
  color: white;
  max-width: 900px;
  margin: 100px auto;
  padding: 20px;
}

.social-media h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.social-media p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #cfcfcf;
}

.social-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.hovercard {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.hovercard:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.hovercard i {
  font-size: 2rem;
  color: white;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7),
               0 0 15px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.hovercard:hover i {
  text-shadow: 0 0 15px white, 0 0 30px white, 0 0 45px white;
}

.hovercard h3 {
  font-size: 1.1rem;
  margin: 0;
}

.hovercard span {
  color: #bbb;
  font-size: 0.9rem;
}

/* Mobil uyum */
@media (max-width: 600px) {
  .social-container {
    grid-template-columns: 1fr;
  }
}



/* Contact */
.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	background: rgba(12, 14, 20, 0.22);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 16px;
	padding: 18px;
}
.contact-form .field {
	display: grid;
	gap: 6px;
}
.contact-form .field:nth-child(3) {
	grid-column: 1 / -1;
}
.contact-form label {
	color: var(--muted);
	font-size: 14px;
}
.contact-form input,
.contact-form textarea {
	width: 100%;
	background: #0b0c10;
	border: 1px solid #1a1d29;
	border-radius: 10px;
	padding: 10px 12px;
	color: var(--text);
	outline: none;
	box-shadow: 0 0 0 2px transparent;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #2a2f44;
	box-shadow: 0 0 0 4px rgba(94, 242, 255, 0.08);
}
.contact-form .button {
	grid-column: 1 / -1;
	justify-self: start;
}
.form-note {
	grid-column: 1 / -1;
	margin: 0;
	color: var(--muted);
	font-size: 12px;
}
.form-status {
	grid-column: 1 / -1;
	margin: -4px 0 0;
	font-size: 13px;
	color: var(--text);
	opacity: 0.9;
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--border);
	padding: 28px 24px;
	background: linear-gradient(180deg, #0b0c10, #0a0a0b);
}
.site-footer p {
	margin: 0;
	color: var(--muted);
	text-align: center;
}

/* Reveal on scroll */
.reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Keyframes */
@keyframes spin {
	to { transform: rotate(360deg); }
}
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}
@keyframes hue {
	0% { filter: hue-rotate(0deg) saturate(120%); }
	100% { filter: hue-rotate(360deg) saturate(120%); }
}

/* Responsive */
@media (max-width: 920px) {
	.social-grid {
		max-width: 100%;
	}
}
@media (max-width: 640px) {
	.section {
		padding: 96px 16px;
	}
	.social-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.social-card {
		padding: 20px;
	}
	.social-card svg {
		width: 40px;
		height: 40px;
	}
	.contact-form {
		grid-template-columns: 1fr;
	}
	.brand { display: none; }
	.angle-nav {
		opacity: 1;
		pointer-events: auto;
		width: 48px;
		height: 48px;
	}
	.angle-nav svg {
		width: 20px;
		height: 20px;
	}
	.angle-prev {
		left: 12px;
	}
	.angle-next {
		right: 12px;
	}
}


