@charset "utf-8";
/* CSS Document */

/*

Tooplate 2144 Parallax Depth

https://www.tooplate.com/view/2144-parallax-depth

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #00d9ff;
	--secondary: #ff00ea;
	--dark: #0a0a0f;
	--light: #ffffff;
	--glow: #00ffcc;
	--font-display: 'Orbitron', monospace;
	--font-heading: 'Space Grotesk', sans-serif;
	--font-body: 'Inter', sans-serif;
}

body {
	font-family: var(--font-body);
	background: var(--dark);
	overflow-x: hidden;
	font-weight: 300;
	letter-spacing: 0.02em;
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--primary), var(--secondary));
	border-radius: 10px;
}

/* =====================================================================
   PRELOADER
   ===================================================================== */

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark);
	z-index: 99999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	overflow: hidden;
	transition: opacity 0.7s ease, transform 0.7s ease;
}

#preloader.preloader-hidden {
	opacity: 0;
	transform: scale(1.04);
	pointer-events: none;
}

/* Background subtle grid */
.preloader-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 217, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 217, 255, 0.04) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
	animation: grid-fade 1.2s ease both;
}

@keyframes grid-fade {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* Floating particles */
.preloader-particles span {
	position: absolute;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--primary);
	animation: particle-float 4s ease-in-out infinite;
	opacity: 0;
}

.preloader-particles span:nth-child(1) { left: 15%; top: 20%; animation-delay: 0s;    background: var(--primary); }
.preloader-particles span:nth-child(2) { left: 80%; top: 15%; animation-delay: 0.6s;  background: var(--secondary); }
.preloader-particles span:nth-child(3) { left: 70%; top: 75%; animation-delay: 1.1s;  background: var(--glow); }
.preloader-particles span:nth-child(4) { left: 25%; top: 80%; animation-delay: 1.7s;  background: var(--primary); }
.preloader-particles span:nth-child(5) { left: 50%; top: 10%; animation-delay: 0.3s;  background: var(--secondary); }
.preloader-particles span:nth-child(6) { left: 90%; top: 50%; animation-delay: 0.9s;  background: var(--glow); }

@keyframes particle-float {
	0%   { opacity: 0; transform: translateY(0) scale(1); }
	30%  { opacity: 0.8; }
	70%  { opacity: 0.8; }
	100% { opacity: 0; transform: translateY(-40px) scale(0.4); }
}

/* Center piece */
.preloader-inner {
	position: relative;
	width: 210px;
	height: 210px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 36px;
}

/* Spinning rings */
.preloader-ring {
	position: absolute;
	border-radius: 50%;
	border: 1.5px solid transparent;
}

.preloader-ring-1 {
	width: 210px;
	height: 210px;
	border-top-color: var(--primary);
	border-right-color: var(--primary);
	animation: ring-spin 2.2s linear infinite;
	box-shadow: 0 0 14px rgba(0, 217, 255, 0.35);
}

.preloader-ring-2 {
	width: 165px;
	height: 165px;
	border-bottom-color: var(--secondary);
	border-left-color: var(--secondary);
	animation: ring-spin 1.6s linear infinite reverse;
	box-shadow: 0 0 14px rgba(255, 0, 234, 0.35);
}

.preloader-ring-3 {
	width: 120px;
	height: 120px;
	border-top-color: var(--glow);
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: var(--glow);
	animation: ring-spin 3s linear infinite;
	box-shadow: 0 0 8px rgba(0, 255, 204, 0.3);
}

@keyframes ring-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

/* Logo */
.preloader-logo-wrap {
	position: relative;
	z-index: 2;
	animation: logo-appear 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.preloader-logo {
	width: 72px;
	height: auto;
	display: block;
	filter: drop-shadow(0 0 14px rgba(0, 217, 255, 0.7))
	        drop-shadow(0 0 28px rgba(255, 0, 234, 0.3));
	animation: logo-pulse 2.4s ease-in-out infinite alternate;
}

@keyframes logo-appear {
	from { opacity: 0; transform: scale(0.3) rotate(-15deg); }
	to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes logo-pulse {
	from { filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5)) drop-shadow(0 0 20px rgba(255, 0, 234, 0.2)); }
	to   { filter: drop-shadow(0 0 22px rgba(0, 217, 255, 1))   drop-shadow(0 0 44px rgba(255, 0, 234, 0.6)); }
}

/* Scan line inside logo area */
.preloader-scan {
	position: absolute;
	left: -20px;
	right: -20px;
	height: 1.5px;
	background: linear-gradient(90deg, transparent, var(--primary), transparent);
	animation: scan-move 2s ease-in-out infinite;
	border-radius: 1px;
	top: 0;
}

@keyframes scan-move {
	0%   { top: -10px; opacity: 0; }
	10%  { opacity: 1; }
	90%  { opacity: 1; }
	100% { top: calc(100% + 10px); opacity: 0; }
}

/* Tagline */
.preloader-tagline {
	font-family: var(--font-heading);
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-bottom: 28px;
	animation: fade-up 0.8s ease 0.8s both;
}

@keyframes fade-up {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Progress bar */
.preloader-bar-wrap {
	width: 200px;
	height: 2px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 2px;
	overflow: hidden;
	animation: fade-up 0.8s ease 0.8s both;
}

.preloader-bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--primary), var(--secondary), var(--glow));
	border-radius: 2px;
	animation: bar-fill 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
	box-shadow: 0 0 10px rgba(0, 217, 255, 0.7);
}

@keyframes bar-fill {
	0%   { width: 0%; }
	50%  { width: 65%; }
	80%  { width: 88%; }
	100% { width: 100%; }
}

/* =====================================================================
   NAVBAR
   ===================================================================== */

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(10, 10, 15, 0.6);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 217, 255, 0.15);
	transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
	background: rgba(10, 10, 15, 0.92);
	border-bottom-color: rgba(0, 217, 255, 0.35);
	box-shadow: 0 4px 30px rgba(0, 217, 255, 0.08);
}

.navbar-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
	height: 68px;
}

/* --- Logo --- */
.navbar-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.navbar-logo:hover {
	transform: scale(1.05);
}

.navbar-logo-img {
	height: 56px;
	width: auto;
	display: block;
	object-fit: contain;
}

/* --- Links --- */
.navbar-links {
	display: flex;
	list-style: none;
	gap: 6px;
	margin: 0;
	padding: 0;
}

.navbar-link {
	font-family: var(--font-display);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	padding: 7px 15px;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	position: relative;
	transition: color 0.25s ease, border-color 0.25s ease,
	            background 0.25s ease, box-shadow 0.25s ease;
}

.navbar-link:hover {
	color: var(--primary);
	border-color: rgba(0, 217, 255, 0.4);
	background: rgba(0, 217, 255, 0.06);
	box-shadow: 0 0 14px rgba(0, 217, 255, 0.15),
	            inset 0 0 8px rgba(0, 217, 255, 0.05);
	text-shadow: 0 0 8px rgba(0, 217, 255, 0.5);
}

.navbar-link.active {
	color: var(--primary);
	border-color: transparent;
	background:
		linear-gradient(rgba(10, 10, 15, 0.7), rgba(10, 10, 15, 0.7)) padding-box,
		linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
	box-shadow: 0 0 18px rgba(0, 217, 255, 0.2),
	            inset 0 0 10px rgba(0, 217, 255, 0.06);
	text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* --- Hamburger Toggle --- */
.navbar-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.navbar-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--primary);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	box-shadow: 0 0 6px rgba(0, 217, 255, 0.6);
}

.navbar-toggle.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.navbar-toggle.open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.navbar-toggle.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* --- scroll-margin for anchors --- */
#hero, #about, #features, #gallery, #contact {
	scroll-margin-top: 68px;
}

/* Rectangle Elements for Hero Section */
.rectangles-bottom-left {
	position: absolute;
	bottom: 15vh;
	left: 5%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	z-index: 5;
	transform: rotate(-45deg);
	transform-origin: center;
}

.rectangles-top-right {
	position: absolute;
	top: 15vh;
	right: 5%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	z-index: 5;
	transform: rotate(45deg);
	transform-origin: center;
}

.rect {
	background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 234, 0.1));
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
}

/* Bottom Left Rectangle Group - Different Sizes (25% larger) */
.rect-bl-1 {
	width: 88px;
	height: 56px;
	animation: float-rect 6s ease-in-out infinite;
}

.rect-bl-2 {
	width: 113px;
	height: 69px;
	animation: float-rect 6s ease-in-out infinite;
}

.rect-bl-3 {
	width: 94px;
	height: 75px;
	animation: float-rect 6s ease-in-out infinite;
}

.rect-bl-4 {
	width: 106px;
	height: 50px;
	animation: float-rect 6s ease-in-out infinite;
}

.rect-bl-5 {
	width: 81px;
	height: 63px;
	animation: float-rect 6s ease-in-out infinite;
}

.rect-bl-6 {
	width: 119px;
	height: 81px;
	animation: float-rect 6s ease-in-out infinite;
}

/* Top Right Rectangle Group - Different Sizes */
.rect-tr-1 {
	width: 80px;
	height: 70px;
	animation: float-rect 8s ease-in-out infinite;
}

.rect-tr-2 {
	width: 100px;
	height: 55px;
	animation: float-rect 8s ease-in-out infinite;
}

.rect-tr-3 {
	width: 75px;
	height: 65px;
	animation: float-rect 8s ease-in-out infinite;
}

.rect-tr-4 {
	width: 90px;
	height: 50px;
	animation: float-rect 8s ease-in-out infinite;
}

.rect-bl-2,
.rect-tr-2 {
	animation-delay: 0.5s;
}

.rect-bl-3,
.rect-tr-3 {
	animation-delay: 1s;
}

.rect-bl-4,
.rect-tr-4 {
	animation-delay: 1.5s;
}

.rect-bl-5 {
	animation-delay: 2s;
}

.rect-bl-6 {
	animation-delay: 2.5s;
}

@keyframes float-rect {

	0%,
	100% {
		transform: translateY(0) rotate(0deg);
		opacity: 0.6;
	}

	50% {
		transform: translateY(-20px) rotate(2deg);
		opacity: 1;
	}
}

.rect:hover {
	background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(255, 0, 234, 0.3));
	border-color: var(--primary);
	box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

/* Section Navigation Buttons */
.nav-btn-prev,
.nav-btn-next {
	position: absolute;
	z-index: 100;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Top Right - Previous Button - Hexagon Shape */
.nav-btn-prev {
	top: 80px;
	right: 50px;
	width: 80px;
	height: 80px;
}

.hexagon {
	position: relative;
	width: 80px;
	height: 44px;
	background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 234, 0.1));
	margin: 18px 0;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.hexagon:before,
.hexagon:after {
	content: "";
	position: absolute;
	width: 0;
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	transition: all 0.3s ease;
}

.hexagon:before {
	bottom: 100%;
	border-bottom: 18px solid rgba(0, 217, 255, 0.1);
}

.hexagon:after {
	top: 100%;
	border-top: 18px solid rgba(255, 0, 234, 0.1);
}

.hex-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--light);
	font-size: 24px;
	z-index: 1;
	transition: all 0.3s ease;
}

.nav-btn-prev:hover .hexagon {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	transform: rotate(30deg);
	box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.nav-btn-prev:hover .hexagon:before {
	border-bottom-color: var(--primary);
}

.nav-btn-prev:hover .hexagon:after {
	border-top-color: var(--secondary);
}

.nav-btn-prev:hover .hex-content {
	transform: translate(-50%, -50%) rotate(-30deg) scale(1.2);
}

/* Logo */
.logo-container {
	position: absolute;
	top: 50px;
	left: 60px;
	z-index: 100;
	opacity: 0;
	animation: fadeInLogo 1s ease forwards;
	animation-delay: 0.5s;
}

@keyframes fadeInLogo {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.logo {
	display: flex;
	align-items: center;
	gap: 20px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

.logo-svg {
	width: 70px;
	height: 70px;
	position: relative;
	animation: rotateLogo 20s linear infinite;
}

@keyframes rotateLogo {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.logo-text {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 900;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

/* Bottom Right - Next Button - 3D Pyramid Shape */
.nav-btn-next {
	bottom: 80px;
	right: 50px;
	width: 80px;
	height: 80px;
	perspective: 200px;
}

.pyramid {
	position: relative;
	width: 80px;
	height: 80px;
	transform-style: preserve-3d;
	transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	animation: float-pyramid 4s ease-in-out infinite 1s;
}

@keyframes float-pyramid {

	0%,
	100% {
		transform: translateY(0) rotateX(-20deg) rotateY(45deg);
	}

	50% {
		transform: translateY(-10px) rotateX(-20deg) rotateY(45deg);
	}
}

.pyramid-face {
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	opacity: 0.9;
}

/* Front face */
.pyramid-face:nth-child(1) {
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	border-bottom: 70px solid rgba(0, 217, 255, 0.6);
	transform: rotateY(0deg) rotateX(30deg) translateZ(20px);
}

/* Right face */
.pyramid-face:nth-child(2) {
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	border-bottom: 70px solid rgba(255, 0, 234, 0.6);
	transform: rotateY(90deg) rotateX(30deg) translateZ(20px);
}

/* Back face */
.pyramid-face:nth-child(3) {
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	border-bottom: 70px solid rgba(0, 255, 204, 0.6);
	transform: rotateY(180deg) rotateX(30deg) translateZ(20px);
}

/* Left face */
.pyramid-face:nth-child(4) {
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	border-bottom: 70px solid rgba(0, 217, 255, 0.4);
	transform: rotateY(-90deg) rotateX(30deg) translateZ(20px);
}

/* Base */
.pyramid-base {
	position: absolute;
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(255, 0, 234, 0.2));
	transform: rotateX(90deg) translateZ(-28px);
	left: 12px;
	top: 42px;
	backdrop-filter: blur(10px);
}

.pyramid-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--light);
	font-size: 24px;
	z-index: 2;
	pointer-events: none;
	text-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

.nav-btn-next:hover .pyramid {
	transform: rotateX(-30deg) rotateY(405deg) scale(1.2);
	animation-play-state: paused;
}

.nav-btn-next:hover .pyramid-face:nth-child(1) {
	border-bottom-color: rgba(0, 217, 255, 0.9);
}

.nav-btn-next:hover .pyramid-face:nth-child(2) {
	border-bottom-color: rgba(255, 0, 234, 0.9);
}

.nav-btn-next:hover .pyramid-face:nth-child(3) {
	border-bottom-color: rgba(0, 255, 204, 0.9);
}

.nav-btn-next:hover .pyramid-face:nth-child(4) {
	border-bottom-color: rgba(0, 217, 255, 0.7);
}

.nav-btn-next:hover .pyramid-base {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
}

/* Floating animation for navigation buttons */
.nav-btn-prev {
	animation: float-hex 4s ease-in-out infinite;
}

.nav-btn-next {
	animation: float-diamond 4s ease-in-out infinite 2s;
}

@keyframes float-hex {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes float-diamond {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

/* Hero Section with Multiple Parallax Layers */
.hero-container {
	position: relative;
	height: 100vh;
	overflow: hidden;
	background: linear-gradient(180deg,
		rgba(10,10,15,0.55) 0%,
		rgba(26,26,46,0.45) 50%,
		rgba(10,10,15,0.65) 100%),
		url('images/bg4.jpg') center center / cover no-repeat;
}

.hero-container::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 160px;
	background: linear-gradient(to bottom, transparent, var(--dark));
	pointer-events: none;
	z-index: 10;
}

/* Large Diagonal Grid Overlay */
.grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 2;
}

.grid-diagonal-1 {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background-image:
		repeating-linear-gradient(45deg,
			transparent,
			transparent 180px,
			rgba(0, 217, 255, 0.08) 180px,
			rgba(0, 217, 255, 0.08) 183px),
		repeating-linear-gradient(-45deg,
			transparent,
			transparent 180px,
			rgba(255, 0, 234, 0.08) 180px,
			rgba(255, 0, 234, 0.08) 183px);
	animation: grid-slide-1 40s linear infinite;
}

@keyframes grid-slide-1 {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(183px, 183px);
	}
}

.grid-diagonal-2 {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background-image:
		repeating-linear-gradient(45deg,
			transparent,
			transparent 250px,
			rgba(0, 255, 204, 0.05) 250px,
			rgba(0, 255, 204, 0.05) 254px),
		repeating-linear-gradient(-45deg,
			transparent,
			transparent 250px,
			rgba(0, 255, 204, 0.05) 250px,
			rgba(0, 255, 204, 0.05) 254px);
	animation: grid-slide-2 60s linear infinite reverse;
	opacity: 0.8;
}

@keyframes grid-slide-2 {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(254px, 254px);
	}
}

.stars {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.star {
	position: absolute;
	width: 2px;
	height: 2px;
	background: white;
	border-radius: 50%;
	animation: twinkle 3s infinite;
}

@keyframes twinkle {

	0%,
	100% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}
}

.parallax-layer {
	position: absolute;
	width: 110%;
	height: 100%;
	left: -5%;
}

/* Background Layer - Slowest */
.layer-bg {
	background: linear-gradient(180deg, transparent 0%, rgba(0, 217, 255, 0.1) 50%, transparent 100%);
	transform: translateZ(-3px) scale(4);
}

/* Mid Layer Mountains */
.layer-mountains {
	bottom: -50vh;
	width: 120%;
	height: 80vh;
	left: -10%;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	clip-path: polygon(0 40%, 20% 25%, 40% 35%, 60% 20%, 80% 30%, 100% 15%, 100% 100%, 0 100%);
	transform: translateZ(-2px) scale(3);
}

/* Floating Elements Layer */
.layer-float {
	transform: translateZ(-1px) scale(2);
}

.floating-card {
	position: absolute;
	width: 300px;
	height: 200px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 30px;
	transition: all 0.3s ease;
	opacity: 0;
	animation: fadeInCard 0.8s ease forwards;
}

@keyframes fadeInCard {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.floating-card:hover {
	transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 40px rgba(0, 217, 255, 0.3);
}

.card-1 {
	top: 30vh;
	left: 10%;
	animation: fadeInCard 0.8s ease forwards, float1 8s infinite ease-in-out;
	animation-delay: 0s, 0.8s;
}

.card-2 {
	top: 60vh;
	right: 15%;
	animation: fadeInCard 0.8s ease 0.2s forwards, float2 10s infinite ease-in-out;
	animation-delay: 0.2s, 1s;
}

@keyframes float1 {

	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-30px) rotate(3deg);
	}
}

@keyframes float2 {

	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-40px) rotate(-3deg);
	}
}

/* Foreground Layer - Fastest */
.layer-fg {
	transform: translateZ(0) scale(1);
	pointer-events: none;
}

.glowing-orb {
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
	filter: blur(20px);
	animation: orb-float 15s infinite linear;
}

.orb-1 {
	top: 20vh;
	animation-delay: 0s;
}

.orb-2 {
	top: 50vh;
	animation-delay: 5s;
}

@keyframes orb-float {
	0% {
		left: -100px;
	}

	100% {
		left: calc(100% + 100px);
	}
}

/* Hero Content */
.hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 10;
	color: var(--light);
	opacity: 0;
	animation: fadeInHero 1s ease forwards;
	animation-delay: 0.3s;
}

@keyframes fadeInHero {
	from {
		opacity: 0;
		transform: translate(-50%, calc(-50% + 20px));
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	animation: glow-text 2s ease-in-out infinite alternate;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

@keyframes glow-text {
	from {
		filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
	}

	to {
		filter: drop-shadow(0 0 30px rgba(255, 0, 234, 0.8));
	}
}

.hero-subtitle {
	font-family: var(--font-heading);
	font-size: clamp(1rem, 3vw, 1.5rem);
	font-weight: 300;
	opacity: 0.8;
	margin-bottom: 40px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}

.cta-button {
	display: inline-block;
	padding: 15px 40px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: var(--light);
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: bold;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
	transition: left 0.5s ease;
}

.cta-button:hover::before {
	left: 100%;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5);
}

/* Content Sections */
.content-section {
	position: relative;
	min-height: 100vh;
	padding: 100px 5%;
	background: var(--dark);
	z-index: 20;
	overflow: hidden;
}

.section-gradient {
	background: linear-gradient(180deg, var(--dark) 0%, #1a1a2e 50%, var(--dark) 100%);
}

/* About Section Background */
#about.section-gradient::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 160px;
	background: linear-gradient(to bottom, var(--dark), transparent);
	pointer-events: none;
	z-index: 2;
}

#about.section-gradient {
	background: linear-gradient(180deg,
		rgba(10,10,15,1)    0%,
		rgba(10,10,15,0.78) 18%,
		rgba(10,10,15,0.72) 50%,
		rgba(10,10,15,0.78) 82%,
		rgba(10,10,15,1)    100%),
		url('images/bg1.jpg') center center / cover no-repeat;
}

/* Gallery Section Specific Gradient */
.gallery-section.section-gradient {
	background: linear-gradient(180deg,
		rgba(10,10,15,1)    0%,
		rgba(10,10,15,0.45) 18%,
		rgba(42,42,62,0.60) 50%,
		rgba(10,10,15,0.45) 82%,
		rgba(10,10,15,1)    100%),
		url('images/bg3.jpg') center center / cover no-repeat;
}

/* About Info Boxes */
.about-boxes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	margin-top: 30px;
}

.info-box {
	position: relative;
	padding: 30px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
}

.info-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
}

.info-box::after {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, var(--primary), var(--secondary), var(--glow));
	border-radius: 20px;
	opacity: 0;
	z-index: -2;
	transition: opacity 0.5s ease;
	animation: rotate-gradient 3s linear infinite;
	background-size: 200% 200%;
}

@keyframes rotate-gradient {
	0% {
		background-position: 0% 0%;
	}

	100% {
		background-position: 200% 200%;
	}
}

.info-box:hover {
	transform: translateY(-10px) scale(1.03);
	border-color: var(--primary);
	box-shadow:
		0 20px 40px rgba(0, 217, 255, 0.3),
		inset 0 0 30px rgba(0, 217, 255, 0.05);
}

.info-box:hover::before {
	opacity: 0.05;
}

.info-box:hover::after {
	opacity: 1;
}

.box-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 20px;
	position: relative;
	animation: pulse-icon 3s ease-in-out infinite;
}

.box-icon i,
.feature-icon-3d i,
.info-icon i {
	color: #ffffff;
	font-size: inherit;
	line-height: 1;
}

@keyframes pulse-icon {

	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
	}

	50% {
		transform: scale(1.05);
		box-shadow: 0 8px 25px rgba(0, 217, 255, 0.6);
	}
}

.box-number {
	position: absolute;
	top: -5px;
	right: -5px;
	width: 25px;
	height: 25px;
	background: var(--glow);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--dark);
}

.box-title {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--light);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.box-description {
	font-family: var(--font-heading);
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	letter-spacing: 0.02em;
	font-weight: 400;
}

/* Parallax Background for Features Section */
.features-section-bg {
	position: relative;
	background: linear-gradient(180deg,
		rgba(10,10,15,1)    0%,
		rgba(10,10,15,0.45) 18%,
		rgba(26,26,46,0.60) 50%,
		rgba(10,10,15,0.45) 82%,
		rgba(10,10,15,1)    100%),
		url('images/bg2.jpg') center center / cover no-repeat;
}

.features-grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.features-grid {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		repeating-linear-gradient(0deg,
			transparent,
			transparent 150px,
			rgba(0, 217, 255, 0.06) 150px,
			rgba(0, 217, 255, 0.06) 153px),
		repeating-linear-gradient(90deg,
			transparent,
			transparent 150px,
			rgba(255, 0, 234, 0.06) 150px,
			rgba(255, 0, 234, 0.06) 153px);
	animation: grid-shift 30s linear infinite;
}

@keyframes grid-shift {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(153px, 153px);
	}
}

.features-grid-large {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		repeating-linear-gradient(0deg,
			transparent,
			transparent 300px,
			rgba(0, 255, 204, 0.04) 300px,
			rgba(0, 255, 204, 0.04) 304px),
		repeating-linear-gradient(90deg,
			transparent,
			transparent 300px,
			rgba(0, 255, 204, 0.04) 300px,
			rgba(0, 255, 204, 0.04) 304px);
	animation: grid-shift-slow 45s linear infinite reverse;
	opacity: 0.7;
}

@keyframes grid-shift-slow {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(-304px, -304px);
	}
}

/* Parallax Background for Contact Section */
.contact-section-bg {
	position: relative;
	background: linear-gradient(45deg, #0a0a0f 0%, #1a1a2e 100%);
}

.contact-section-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		linear-gradient(rgba(0, 217, 255, 0.03) 2px, transparent 2px),
		linear-gradient(90deg, rgba(0, 217, 255, 0.03) 2px, transparent 2px);
	background-size: 120px 120px;
	background-position: -1px -1px;
	animation: grid-slide 40s linear infinite;
	pointer-events: none;
}

@keyframes grid-slide {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(120px, 120px);
	}
}

.contact-section-bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg,
			rgba(255, 0, 234, 0.04) 0%,
			rgba(0, 255, 204, 0.03) 100%);
	pointer-events: none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--light);
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* About Section */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	margin: 50px 0;
}

.about-text {
	color: rgba(255, 255, 255, 0.9);
}

.about-text h3 {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--primary), var(--glow));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.about-text p {
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: 1.9;
	margin-bottom: 25px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.1rem;
	letter-spacing: 0.03em;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about-visual {
	position: relative;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.orbit-container {
	position: absolute;
	width: 100%;
	height: 100%;
	max-width: 400px;
	max-height: 400px;
	animation: rotate 20s linear infinite;
}

.orbit {
	position: absolute;
	border: 2px solid rgba(0, 217, 255, 0.2);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.orbit-1 {
	width: 200px;
	height: 200px;
	animation: pulse 3s ease-in-out infinite;
}

.orbit-2 {
	width: 300px;
	height: 300px;
	animation: pulse 3s ease-in-out infinite 1s;
}

.orbit-3 {
	width: 400px;
	height: 400px;
	animation: pulse 3s ease-in-out infinite 2s;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes pulse {

	0%,
	100% {
		opacity: 0.3;
	}

	50% {
		opacity: 1;
	}
}

.orbit-dot {
	position: absolute;
	width: 20px;
	height: 20px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
	border-radius: 50%;
	box-shadow: 0 0 20px var(--primary);
}

.dot-1 {
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.dot-2 {
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
}

.dot-3 {
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

/* 3D Carousel Features Section */
.features-container {
	position: relative;
	height: 520px;
	perspective: 1200px;
	margin: 50px 0;
}

.carousel-3d {
	position: absolute;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.feature-card-3d {
	position: absolute;
	width: 255px;
	height: 380px;
	left: 50%;
	top: 50%;
	margin-left: -127px;
	margin-top: -190px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 22px;
	padding: 32px 32px 36px;
	transition: all 0.5s ease;
	transform-style: preserve-3d;
	cursor: pointer;
	overflow: hidden;
	backface-visibility: hidden;
}

.feature-card-3d::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, var(--primary), var(--secondary), var(--glow), var(--primary));
	border-radius: 22px;
	opacity: 0;
	z-index: -1;
	transition: opacity 0.5s ease;
	animation: gradient-border 3s linear infinite;
	background-size: 300% 300%;
}

@keyframes gradient-border {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@media (hover: hover) and (pointer: fine) {
	.feature-card-3d:hover::before {
		opacity: 1;
	}
}

.feature-card-3d:nth-child(1) {
	transform: rotateY(0deg) translateZ(320px);
}

.feature-card-3d:nth-child(2) {
	transform: rotateY(60deg) translateZ(320px);
}

.feature-card-3d:nth-child(3) {
	transform: rotateY(120deg) translateZ(320px);
}

.feature-card-3d:nth-child(4) {
	transform: rotateY(180deg) translateZ(320px);
}

.feature-card-3d:nth-child(5) {
	transform: rotateY(240deg) translateZ(320px);
}

.feature-card-3d:nth-child(6) {
	transform: rotateY(300deg) translateZ(320px);
}

@media (hover: hover) and (pointer: fine) {
	.feature-card-3d:hover {
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
		box-shadow:
			0 30px 60px rgba(0, 217, 255, 0.4),
			inset 0 0 30px rgba(255, 255, 255, 0.1);
	}
}

.feature-icon-3d {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 16px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	position: relative;
	transform: translateZ(20px);
	box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.feature-title-3d {
	font-family: var(--font-heading);
	color: var(--light);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 12px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transform: translateZ(10px);
}

.feature-description-3d {
	font-family: var(--font-heading);
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	text-align: center;
	font-weight: 400;
	font-size: 0.9rem;
	letter-spacing: 0.02em;
}

.feature-number {
	position: absolute;
	top: 16px;
	right: 16px;
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0.3;
}

/* Carousel Controls */
.carousel-controls {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 20px;
	z-index: 100;
}

.carousel-btn {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--light);
	font-size: 20px;
	user-select: none;
}

.carousel-btn:hover {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	transform: scale(1.1);
	box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.carousel-btn:active {
	transform: scale(0.95);
}

/* Carousel Indicators */
.carousel-indicators {
	position: absolute;
	bottom: -90px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	cursor: pointer;
}

.indicator.active {
	background: var(--primary);
	box-shadow: 0 0 10px var(--primary);
	transform: scale(1.3);
}

/* Interactive Gallery */
.gallery-section {
	padding: 100px 5%;
	position: relative;
	overflow: hidden;
}

@media (min-width: 769px) {
	.gallery-section {
		min-height: 100vh;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.gallery-grid {
		grid-template-columns: repeat(4, 1fr);
		transform-style: preserve-3d;
		perspective: 1000px;
	}
}

.gallery-item {
	position: relative;
	height: 180px;
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.5s ease;
	cursor: pointer;
}

.gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

/* Overlay: always visible by default (mobile) */
.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 100%);
	padding: 15px;
	transform: translateY(0);
	transition: transform 0.3s ease;
}

/* Hover effects on desktop only (>= 1024px) */
@media (min-width: 1024px) {
	.gallery-overlay {
		transform: translateY(100%);
	}

	.gallery-item:hover {
		transform: scale(1.05) rotateY(5deg);
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
		z-index: 10;
	}

	.gallery-item:hover .gallery-image {
		transform: scale(1.1);
	}

	.gallery-item:hover .gallery-overlay {
		transform: translateY(0);
	}
}

.gallery-title {
	font-family: var(--font-heading);
	color: var(--light);
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.gallery-subtitle {
	font-family: var(--font-heading);
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
	font-weight: 400;
	letter-spacing: 0.02em;
}

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin: 50px 0;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	position: relative;
}

.form-input {
	width: 100%;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	color: var(--light);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-input:focus {
	outline: none;
	border-color: var(--primary);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.form-input::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.form-textarea {
	min-height: 150px;
	resize: vertical;
	font-family: inherit;
}

.submit-btn {
	padding: 15px 40px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border: none;
	border-radius: 50px;
	color: var(--light);
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.submit-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before {
	width: 300px;
	height: 300px;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5);
}

.contact-info {
	padding: 40px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
	font-family: var(--font-heading);
	color: var(--primary);
	margin-bottom: 30px;
	font-size: 1.6rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.info-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.85);
	font-family: var(--font-heading);
	font-weight: 400;
	letter-spacing: 0.02em;
}

.info-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	font-size: 18px;
	flex-shrink: 0;
}

.info-text {
	word-break: break-word;
	line-height: 1.4;
}

/* Footer Section */
.footer {
	background: linear-gradient(180deg, var(--dark) 0%, #0a0a0f 100%);
	padding: 60px 5% 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
	animation: glow-line 3s ease-in-out infinite;
}

@keyframes glow-line {

	0%,
	100% {
		opacity: 0.5;
	}

	50% {
		opacity: 1;
	}
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.footer-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 32px;
}

.footer-logo-img {
	height: 56px;
	width: auto;
	object-fit: contain;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
	opacity: 1;
}

.footer-info {
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
}

.footer-info p {
	color: rgba(255, 255, 255, 0.6);
	font-family: var(--font-heading);
	font-size: 0.88rem;
	display: flex;
	align-items: center;
	gap: 7px;
}

.footer-info i {
	color: var(--primary);
	font-size: 0.85rem;
}

.footer-info a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-info a:hover {
	color: var(--primary);
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.footer-link {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 400;
	transition: all 0.3s ease;
	position: relative;
	letter-spacing: 0.02em;
}

.footer-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	transition: width 0.3s ease;
}

.footer-link:hover {
	color: var(--primary);
	transform: translateY(-2px);
}

.footer-link:hover::after {
	width: 100%;
}

.footer-divider {
	width: 100px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	margin: 30px auto;
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.02em;
}

.footer-copyright a {
	color: var(--primary);
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 500;
}

.footer-copyright a:hover {
	color: var(--secondary);
	text-shadow: 0 0 10px rgba(255, 0, 234, 0.5);
}

.footer-legal {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.footer-legal-link {
	color: rgba(255, 255, 255, 0.45);
	font-family: var(--font-heading);
	font-size: 0.82rem;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-legal-link:hover {
	color: var(--primary);
}

.footer-legal-sep {
	color: rgba(255, 255, 255, 0.25);
	font-size: 0.82rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.hero-content {
		top: calc(30vh + 120px);
	}

	.rectangles-bottom-left,
	.rectangles-top-right {
		gap: 10px;
	}

	/* Bottom Left Rectangle Group - Different Sizes for Mobile (25% larger) */
	.rect-bl-1 {
		width: 69px;
		height: 44px;
	}

	.rect-bl-2 {
		width: 88px;
		height: 50px;
	}

	.rect-bl-3 {
		width: 75px;
		height: 56px;
	}

	.rect-bl-4 {
		width: 81px;
		height: 38px;
	}

	.rect-bl-5 {
		width: 63px;
		height: 50px;
	}

	.rect-bl-6 {
		width: 94px;
		height: 63px;
	}

	/* Top Right Rectangle Group - Different Sizes for Mobile */
	.rect-tr-1 {
		width: 60px;
		height: 55px;
	}

	.rect-tr-2 {
		width: 80px;
		height: 40px;
	}

	.rect-tr-3 {
		width: 55px;
		height: 50px;
	}

	.rect-tr-4 {
		width: 70px;
		height: 35px;
	}

	.rectangles-bottom-left {
		bottom: 8vh;
		left: 3%;
		grid-template-columns: repeat(2, 1fr);
		transform: rotate(-45deg);
	}

	.rectangles-top-right {
		top: 12vh;
		right: 3%;
		transform: rotate(45deg);
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 40px;
		margin: 40px 0;
	}

	.about-text {
		order: 1;
	}

	.about-text h3 {
		font-size: 1.6rem;
		margin-bottom: 18px;
	}

	.about-text p {
		font-size: 1rem;
		line-height: 1.8;
		margin-bottom: 20px;
	}

	.about-visual {
		order: 2;
		height: 350px;
	}

	.orbit-container {
		max-width: 350px;
		max-height: 350px;
	}

	.orbit-1 {
		width: 150px;
		height: 150px;
	}

	.orbit-2 {
		width: 225px;
		height: 225px;
	}

	.orbit-3 {
		width: 300px;
		height: 300px;
	}

	/* About Info Boxes */
	.about-boxes {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.info-box {
		padding: 25px;
	}

	.box-icon {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}

	.box-title {
		font-size: 1.2rem;
	}

	.box-description {
		font-size: 0.95rem;
	}

	.logo-container {
		top: 30px;
		left: 30px;
	}

	.logo-svg {
		width: 50px;
		height: 50px;
	}

	.logo-text {
		font-size: 1.5rem;
	}

	.nav-btn-prev,
	.nav-btn-next {
		display: none;
	}

	.hexagon {
		width: 60px;
		height: 33px;
		margin: 13.5px 0;
	}

	.hexagon:before,
	.hexagon:after {
		border-left-width: 30px;
		border-right-width: 30px;
	}

	.hexagon:before {
		border-bottom-width: 13.5px;
	}

	.hexagon:after {
		border-top-width: 13.5px;
	}

	

	.pyramid {
		width: 60px;
		height: 60px;
	}

	.pyramid-face:nth-child(1),
	.pyramid-face:nth-child(2),
	.pyramid-face:nth-child(3),
	.pyramid-face:nth-child(4) {
		border-left-width: 30px;
		border-right-width: 30px;
		border-bottom-width: 52px;
	}

	.pyramid-face:nth-child(1) {
		transform: rotateY(0deg) rotateX(30deg) translateZ(15px);
	}

	.pyramid-face:nth-child(2) {
		transform: rotateY(90deg) rotateX(30deg) translateZ(15px);
	}

	.pyramid-face:nth-child(3) {
		transform: rotateY(180deg) rotateX(30deg) translateZ(15px);
	}

	.pyramid-face:nth-child(4) {
		transform: rotateY(-90deg) rotateX(30deg) translateZ(15px);
	}

	.pyramid-base {
		width: 42px;
		height: 42px;
		left: 9px;
		top: 31px;
		transform: rotateX(90deg) translateZ(-21px);
	}

	.hex-content,
	.pyramid-inner {
		font-size: 18px;
	}

	@keyframes float-pyramid {

		0%,
		100% {
			transform: translateY(0) rotateX(-20deg) rotateY(45deg);
		}

		50% {
			transform: translateY(-8px) rotateX(-20deg) rotateY(45deg);
		}
	}

	/* Carousel Mobile */
	.features-container {
		height: 400px;
		margin: 30px 0 80px;
		perspective: 800px;
	}

	.feature-card-3d {
		width: 195px;
		height: 350px;
		margin-left: -97px;
		margin-top: -175px;
		padding: 20px 20px 26px;
	}

	.feature-card-3d:nth-child(1) {
		transform: rotateY(0deg) translateZ(180px);
	}

	.feature-card-3d:nth-child(2) {
		transform: rotateY(60deg) translateZ(180px);
	}

	.feature-card-3d:nth-child(3) {
		transform: rotateY(120deg) translateZ(180px);
	}

	.feature-card-3d:nth-child(4) {
		transform: rotateY(180deg) translateZ(180px);
	}

	.feature-card-3d:nth-child(5) {
		transform: rotateY(240deg) translateZ(180px);
	}

	.feature-card-3d:nth-child(6) {
		transform: rotateY(300deg) translateZ(180px);
	}

	.feature-icon-3d {
		width: 45px;
		height: 45px;
		font-size: 22px;
	}

	.feature-title-3d {
		font-size: 0.85rem;
		margin-bottom: 8px;
	}

	.feature-description-3d {
		font-size: 0.7rem;
		line-height: 1.4;
	}

	.feature-number {
		font-size: 1.5rem;
		top: 10px;
		right: 10px;
	}

	.carousel-controls {
		bottom: -40px;
	}

	.carousel-btn {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}

	.carousel-indicators {
		bottom: -75px;
	}

	/* Gallery Mobile */
	.gallery-section {
		padding: 60px 4%;
	}

	.gallery-section .section-title {
		font-size: 1.6rem;
		margin-bottom: 28px;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.gallery-item {
		height: 155px;
		border-radius: 10px;
		opacity: 1 !important;
		transform: none !important;
	}

	.gallery-overlay {
		transform: translateY(0) !important;
		padding: 8px 10px;
	}

	.gallery-title {
		font-size: 0.8rem;
		margin-bottom: 2px;
	}

	.gallery-subtitle {
		font-size: 0.68rem;
	}

	/* Contact Mobile */
	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
		margin: 30px 0;
	}

	.contact-form {
		gap: 15px;
	}

	.form-input {
		padding: 12px 16px;
		font-size: 0.95rem;
	}

	.form-textarea {
		min-height: 120px;
	}

	.submit-btn {
		padding: 12px 30px;
		font-size: 1rem;
		width: 100%;
	}

	.contact-info {
		padding: 30px 25px;
	}

	.contact-info h3 {
		font-size: 1.4rem;
		margin-bottom: 25px;
	}

	.info-item {
		margin-bottom: 18px;
	}

	.info-icon {
		width: 35px;
		height: 35px;
		font-size: 16px;
		margin-right: 12px;
	}

	.info-text {
		font-size: 0.9rem;
	}

	/* Footer Mobile */
	.footer {
		padding: 40px 5% 20px;
	}

	.footer-links {
		gap: 20px;
	}

	.footer-link {
		font-size: 0.9rem;
	}

	/* --- Navbar mobile (768px) --- */
	.navbar-toggle {
		display: flex;
	}

	.navbar-links {
		position: fixed;
		top: 68px;
		left: 0;
		right: 0;
		flex-direction: column;
		gap: 0;
		background: rgba(10, 10, 15, 0.97);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border-bottom: 1px solid rgba(0, 217, 255, 0.2);
		padding: 10px 0 18px;
		opacity: 0;
		transform: translateY(-8px);
		pointer-events: none;
		transition: opacity 0.25s ease, transform 0.25s ease;
	}

	.navbar-links.open {
		opacity: 1;
		transform: translateY(0);
		pointer-events: all;
	}

	.navbar-links li {
		width: 100%;
	}

	.navbar-link {
		display: block;
		padding: 13px 6%;
		border-radius: 0;
		border: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
		background: transparent;
		box-shadow: none;
		font-size: 0.7rem;
		text-align: center;
		transition: color 0.2s ease, background 0.2s ease;
	}

	.navbar-link:hover,
	.navbar-link.active {
		border-color: transparent;
		background: rgba(0, 217, 255, 0.07);
		box-shadow: none;
		text-shadow: 0 0 8px rgba(0, 217, 255, 0.4);
	}

	.navbar-link.active {
		background: rgba(0, 217, 255, 0.07);
	}
}

@media (max-width: 480px) {
	#about {
		padding: 60px 5%;
	}

	.about-content {
		gap: 30px;
		margin: 30px 0;
	}

	.about-text h3 {
		font-size: 1.4rem;
		margin-bottom: 15px;
	}

	.about-text p {
		font-size: 0.95rem;
		line-height: 1.7;
		margin-bottom: 18px;
	}

	.about-visual {
		height: 280px;
	}

	.orbit-container {
		max-width: 280px;
		max-height: 280px;
	}

	.orbit-1 {
		width: 120px;
		height: 120px;
	}

	.orbit-2 {
		width: 180px;
		height: 180px;
	}

	.orbit-3 {
		width: 240px;
		height: 240px;
	}

	.orbit-dot {
		width: 15px;
		height: 15px;
	}

	.dot-1 {
		top: -7px;
	}

	.dot-2 {
		right: -7px;
	}

	.dot-3 {
		bottom: -7px;
	}

	/* Carousel Small Mobile */
	.features-container {
		height: 350px;
		perspective: 600px;
	}

	.feature-card-3d {
		width: 165px;
		height: 315px;
		margin-left: -82px;
		margin-top: -157px;
		padding: 18px 18px 24px;
	}

	.feature-card-3d:nth-child(1) {
		transform: rotateY(0deg) translateZ(140px);
	}

	.feature-card-3d:nth-child(2) {
		transform: rotateY(60deg) translateZ(140px);
	}

	.feature-card-3d:nth-child(3) {
		transform: rotateY(120deg) translateZ(140px);
	}

	.feature-card-3d:nth-child(4) {
		transform: rotateY(180deg) translateZ(140px);
	}

	.feature-card-3d:nth-child(5) {
		transform: rotateY(240deg) translateZ(140px);
	}

	.feature-card-3d:nth-child(6) {
		transform: rotateY(300deg) translateZ(140px);
	}

	.feature-icon-3d {
		width: 40px;
		height: 40px;
		font-size: 20px;
		margin-bottom: 12px;
	}

	.feature-title-3d {
		font-size: 0.8rem;
		margin-bottom: 6px;
	}

	.feature-description-3d {
		font-size: 0.65rem;
		line-height: 1.3;
	}

	.feature-number {
		font-size: 1.3rem;
	}

	/* Gallery Small Mobile */
	.gallery-section {
		padding: 50px 3%;
	}

	.gallery-section .section-title {
		font-size: 1.35rem;
		margin-bottom: 22px;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.gallery-item {
		height: 135px;
		border-radius: 8px;
		opacity: 1 !important;
		transform: none !important;
	}

	.gallery-overlay {
		transform: translateY(0) !important;
		padding: 6px 8px;
	}

	.gallery-title {
		font-size: 0.7rem;
		margin-bottom: 1px;
	}

	.gallery-subtitle {
		font-size: 0.6rem;
	}

	/* Contact Small Mobile */
	#contact {
		padding: 60px 4%;
	}

	.contact-content {
		gap: 30px;
		margin: 20px 0;
	}

	.form-input {
		padding: 10px 14px;
		font-size: 0.9rem;
		border-radius: 8px;
	}

	.form-textarea {
		min-height: 100px;
	}

	.submit-btn {
		padding: 10px 25px;
		font-size: 0.95rem;
		border-radius: 40px;
	}

	.contact-info {
		padding: 25px 20px;
		border-radius: 15px;
	}

	.contact-info h3 {
		font-size: 1.2rem;
		margin-bottom: 20px;
	}

	.info-item {
		margin-bottom: 15px;
		flex-wrap: wrap;
	}

	.info-icon {
		width: 30px;
		height: 30px;
		font-size: 14px;
		margin-right: 10px;
		border-radius: 8px;
	}

	.info-text {
		font-size: 0.85rem;
		flex: 1;
		min-width: 0;
	}

	/* --- Navbar mobile (480px) --- */
	.navbar-container {
		padding: 0 4%;
	}

	.navbar-logo-img {
		height: 42px;
	}
}

/* Extra small screens — 1 column gallery */
@media (max-width: 380px) {
	.gallery-section {
		padding: 40px 4%;
	}

	.gallery-section .section-title {
		font-size: 1.2rem;
		margin-bottom: 18px;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.gallery-item {
		height: 170px;
		border-radius: 10px;
		opacity: 1 !important;
		transform: none !important;
	}

	.gallery-overlay {
		transform: translateY(0) !important;
		padding: 10px 14px;
	}

	.gallery-title {
		font-size: 0.9rem;
	}

	.gallery-subtitle {
		font-size: 0.75rem;
	}
}

/* =============================================
   Cookie Banner
   ============================================= */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9000;
	padding: 0 20px 20px;
	transform: translateY(110%);
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
}

.cookie-banner.visible {
	transform: translateY(0);
	pointer-events: all;
}

.cookie-banner-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	max-width: 1100px;
	margin: 0 auto;
	background: rgba(10, 10, 15, 0.88);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(0, 217, 255, 0.25);
	border-radius: 16px;
	padding: 20px 24px;
	box-shadow:
		0 0 0 1px rgba(0, 217, 255, 0.08),
		0 8px 40px rgba(0, 0, 0, 0.6),
		0 0 60px rgba(0, 217, 255, 0.06);
}

.cookie-icon-wrap {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(0, 217, 255, 0.1);
	border: 1px solid rgba(0, 217, 255, 0.2);
}

.cookie-icon-wrap i {
	font-size: 1.4rem;
	color: var(--primary);
}

.cookie-text {
	flex: 1;
	min-width: 0;
}

.cookie-title {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: var(--light);
	margin-bottom: 4px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.cookie-desc {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
	margin: 0;
}

.cookie-desc strong {
	color: rgba(255, 255, 255, 0.85);
}

.cookie-link {
	color: var(--primary);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.cookie-link:hover {
	opacity: 0.75;
	text-decoration: underline;
}

.cookie-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex-shrink: 0;
}

.cookie-btn {
	padding: 10px 22px;
	border-radius: 8px;
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	border: none;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.cookie-btn-accept {
	background: linear-gradient(135deg, var(--primary), var(--glow));
	color: var(--dark);
	box-shadow: 0 0 16px rgba(0, 217, 255, 0.35);
}

.cookie-btn-accept:hover {
	box-shadow: 0 0 28px rgba(0, 217, 255, 0.6);
	transform: translateY(-1px);
}

.cookie-btn-decline {
	background: transparent;
	color: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-decline:hover {
	color: rgba(255, 255, 255, 0.85);
	border-color: rgba(255, 255, 255, 0.35);
}

/* Cookie Banner — Mobile */
@media (max-width: 768px) {
	.cookie-banner {
		padding: 0 12px 12px;
	}

	.cookie-banner-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		padding: 16px 18px;
		border-radius: 14px;
	}

	.cookie-icon-wrap {
		width: 40px;
		height: 40px;
		border-radius: 10px;
	}

	.cookie-icon-wrap i {
		font-size: 1.15rem;
	}

	.cookie-title {
		font-size: 0.9rem;
	}

	.cookie-desc {
		font-size: 0.8rem;
	}

	.cookie-actions {
		flex-direction: row;
		width: 100%;
	}

	.cookie-btn {
		flex: 1;
		padding: 10px 14px;
		font-size: 0.8rem;
		text-align: center;
	}
}

@media (max-width: 380px) {
	.cookie-banner-inner {
		padding: 14px 14px;
		border-radius: 12px;
	}

	.cookie-actions {
		flex-direction: column;
	}
}

/* =============================================
   Policy Pages (privacy.html, terms.html)
   ============================================= */
.policy-page {
	background: var(--dark);
	min-height: 100vh;
}

.policy-hero {
	position: relative;
	padding: 160px 5% 80px;
	text-align: center;
	background:
		linear-gradient(180deg, rgba(10,10,15,0.6) 0%, rgba(10,10,15,1) 100%),
		url('images/bg4.jpg') center center / cover no-repeat;
	overflow: hidden;
}

.policy-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
	pointer-events: none;
}

.policy-hero-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: rgba(0, 217, 255, 0.1);
	border: 1px solid rgba(0, 217, 255, 0.25);
	margin-bottom: 24px;
	box-shadow: 0 0 24px rgba(0, 217, 255, 0.15);
}

.policy-hero-icon i {
	font-size: 1.6rem;
	color: var(--primary);
}

.policy-hero-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 16px;
	background: linear-gradient(135deg, var(--light) 0%, rgba(255,255,255,0.75) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.policy-hero-sub {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.04em;
}

/* Policy content */
.policy-content {
	max-width: 860px;
	margin: 0 auto;
	padding: 60px 5% 100px;
}

.policy-section {
	margin-bottom: 52px;
}

.policy-section-title {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(0, 217, 255, 0.15);
}

.policy-section-title i {
	color: var(--primary);
	font-size: 1rem;
	flex-shrink: 0;
}

.policy-section p {
	font-size: 0.97rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.8;
	margin-bottom: 14px;
}

.policy-section p:last-child {
	margin-bottom: 0;
}

.policy-section ul {
	list-style: none;
	padding: 0;
	margin: 0 0 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.policy-section ul li {
	font-size: 0.97rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.7;
	padding-left: 20px;
	position: relative;
}

.policy-section ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 6px var(--primary);
}

.policy-section a {
	color: var(--primary);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.policy-section a:hover {
	opacity: 0.75;
	text-decoration: underline;
}

.policy-highlight {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: rgba(0, 217, 255, 0.05);
	border: 1px solid rgba(0, 217, 255, 0.15);
	border-left: 3px solid var(--primary);
	border-radius: 10px;
	padding: 18px 20px;
	margin-top: 20px;
}

.policy-highlight i {
	color: var(--primary);
	font-size: 1rem;
	margin-top: 3px;
	flex-shrink: 0;
}

.policy-highlight p {
	margin: 0 !important;
	font-size: 0.92rem !important;
	color: rgba(255, 255, 255, 0.7) !important;
}

/* Mobile */
@media (max-width: 768px) {
	.policy-hero {
		padding: 130px 4% 60px;
	}

	.policy-hero-title {
		font-size: clamp(1.6rem, 6vw, 2.4rem);
	}

	.policy-content {
		padding: 40px 4% 80px;
	}

	.policy-section {
		margin-bottom: 40px;
	}

	.policy-section-title {
		font-size: 1rem;
	}

	.policy-section p,
	.policy-section ul li {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.policy-hero {
		padding: 120px 4% 50px;
	}

	.policy-hero-icon {
		width: 52px;
		height: 52px;
	}

	.policy-content {
		padding: 30px 4% 70px;
	}

	.policy-section-title {
		font-size: 0.95rem;
		gap: 10px;
	}

	.policy-highlight {
		flex-direction: column;
		gap: 10px;
	}
}

/* =============================================
   Scroll Progress Bar
   ============================================= */
.scroll-progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 3px;
	z-index: 10001;
	background: linear-gradient(90deg, var(--primary), var(--secondary), var(--glow));
	background-size: 200% 100%;
	animation: progress-shimmer 3s linear infinite;
	box-shadow:
		0 0 6px var(--primary),
		0 0 16px rgba(0, 217, 255, 0.5);
	transition: width 0.08s linear;
	pointer-events: none;
}

@keyframes progress-shimmer {
	0%   { background-position: 0% 0%; }
	100% { background-position: 200% 0%; }
}

/* =============================================
   Tilt effect — feature cards
   (JS-controlled via inline transform)
   ============================================= */
.feature-card-3d {
	will-change: transform;
}

/* =============================================
   FAQ Page — Accordion
   ============================================= */
.faq-content {
	max-width: 860px;
	margin: 0 auto;
	padding: 60px 5% 100px;
}

.faq-group {
	margin-bottom: 48px;
}

.faq-group-title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-heading);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 16px;
}

.faq-group-title i {
	font-size: 0.9rem;
}

.faq-item {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	margin-bottom: 10px;
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	background: rgba(255, 255, 255, 0.02);
}

.faq-item.open {
	border-color: rgba(0, 217, 255, 0.3);
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.06);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 22px;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
}

.faq-question-text {
	font-family: var(--font-heading);
	font-size: 0.97rem;
	font-weight: 600;
	color: var(--light);
	line-height: 1.4;
	transition: color 0.3s ease;
}

.faq-item.open .faq-question-text {
	color: var(--primary);
}

.faq-chevron {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.75rem;
	transition: all 0.35s ease;
}

.faq-item.open .faq-chevron {
	background: rgba(0, 217, 255, 0.12);
	border-color: rgba(0, 217, 255, 0.3);
	color: var(--primary);
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            padding 0.3s ease;
	padding: 0 22px;
}

.faq-item.open .faq-answer {
	max-height: 600px;
	padding-bottom: 20px;
}

.faq-answer p {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.8;
	margin-bottom: 10px;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

.faq-answer ul {
	list-style: none;
	padding: 0;
	margin: 8px 0 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.faq-answer ul li {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	padding-left: 18px;
	position: relative;
}

.faq-answer ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 5px var(--primary);
}

.faq-answer a {
	color: var(--primary);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.faq-answer a:hover {
	opacity: 0.75;
	text-decoration: underline;
}

/* FAQ — divider between question and answer */
.faq-item.open .faq-question {
	border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

/* FAQ Mobile */
@media (max-width: 768px) {
	.faq-content {
		padding: 40px 4% 80px;
	}

	.faq-group {
		margin-bottom: 36px;
	}

	.faq-question {
		padding: 16px 18px;
		gap: 12px;
	}

	.faq-question-text {
		font-size: 0.9rem;
	}

	.faq-chevron {
		width: 24px;
		height: 24px;
		font-size: 0.7rem;
	}

	.faq-answer {
		padding: 0 18px;
	}

	.faq-item.open .faq-answer {
		padding-bottom: 16px;
	}

	.faq-answer p,
	.faq-answer ul li {
		font-size: 0.88rem;
	}
}

@media (max-width: 480px) {
	.faq-content {
		padding: 30px 4% 70px;
	}

	.faq-question {
		padding: 14px 16px;
	}

	.faq-question-text {
		font-size: 0.85rem;
	}

	.faq-answer {
		padding: 0 16px;
	}
}

/* =============================================
   Contact Page
   ============================================= */
.contact-content {
	display: block;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 5% 100px;
}

/* Two-column grid */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 32px;
	align-items: start;
}

/* ── Left column wrapper ── */
.contact-left {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* ── Map ── */
.contact-map-wrap {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	overflow: hidden;
}

.contact-map-header {
	padding: 20px 28px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.contact-map-header i {
	color: var(--primary);
	font-size: 1rem;
}

.contact-map-frame {
	width: 100%;
	height: 240px;
	position: relative;
}

.contact-map-frame iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
	filter: invert(92%) hue-rotate(180deg) saturate(1.3) brightness(0.85);
}

.contact-map-address {
	padding: 14px 28px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.55);
	font-family: var(--font-heading);
	font-size: 0.82rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-map-address i {
	color: var(--primary);
	font-size: 0.9em;
	flex-shrink: 0;
}

/* ── Contact Form ── */
.contact-form-wrap {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 40px;
}

.contact-form-title {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-form-title i {
	color: var(--primary);
	font-size: 1rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.contact-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.contact-label {
	font-family: var(--font-heading);
	font-size: 0.75rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.contact-input,
.contact-textarea,
.contact-select {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 13px 16px;
	font-family: var(--font-heading);
	font-size: 0.9rem;
	color: var(--light);
	outline: none;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
	width: 100%;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
	color: rgba(255, 255, 255, 0.25);
}

.contact-input:focus,
.contact-textarea:focus,
.contact-select:focus {
	border-color: rgba(0, 217, 255, 0.5);
	box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.08);
	background: rgba(0, 217, 255, 0.04);
}

.contact-input.error,
.contact-textarea.error {
	border-color: rgba(255, 80, 80, 0.6);
	box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.08);
}

.contact-textarea {
	resize: vertical;
	min-height: 140px;
	line-height: 1.6;
}

.contact-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 38px;
	cursor: pointer;
}

.contact-select option {
	background: #0a0a0f;
	color: var(--light);
}

.contact-field-error {
	font-size: 0.75rem;
	color: rgba(255, 100, 100, 0.9);
	display: none;
}

.contact-field-error.visible {
	display: block;
}

/* Submit button */
.contact-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 32px;
	border: none;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--primary), var(--glow));
	color: var(--dark);
	font-family: var(--font-heading);
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
	align-self: flex-start;
}

.contact-submit:hover {
	box-shadow: 0 0 32px rgba(0, 217, 255, 0.55);
	transform: translateY(-2px);
}

.contact-submit:active {
	transform: translateY(0);
}

.contact-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.contact-submit .btn-spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(10, 10, 15, 0.3);
	border-top-color: var(--dark);
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}

.contact-submit.loading .btn-spinner {
	display: block;
}

.contact-submit.loading .btn-text {
	display: none;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* Form success message */
.contact-success {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 16px;
	padding: 48px 20px;
}

.contact-success.visible {
	display: flex;
}

.contact-success-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(0, 217, 255, 0.1);
	border: 1px solid rgba(0, 217, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: var(--primary);
	box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

.contact-success h3 {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.contact-success p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.7;
}

/* ── Contact Info Sidebar ── */
.contact-sidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-info-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 24px;
	transition: border-color 0.3s ease;
}

.contact-info-card:hover {
	border-color: rgba(0, 217, 255, 0.2);
}

.contact-info-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.contact-info-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(0, 217, 255, 0.08);
	border: 1px solid rgba(0, 217, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-info-icon i {
	color: var(--primary);
	font-size: 0.9rem;
}

.contact-info-card-title {
	font-family: var(--font-heading);
	font-size: 0.78rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.contact-info-card-body {
	font-size: 0.93rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
}

.contact-info-card-body a {
	color: var(--primary);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.contact-info-card-body a:hover {
	opacity: 0.75;
}

.contact-info-card-body strong {
	color: var(--light);
}

/* Response time badge */
.contact-response-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	padding: 5px 12px;
	border-radius: 20px;
	background: rgba(0, 217, 255, 0.08);
	border: 1px solid rgba(0, 217, 255, 0.18);
	font-size: 0.78rem;
	color: var(--primary);
	font-family: var(--font-heading);
	font-weight: 600;
	letter-spacing: 0.04em;
}

.contact-response-badge i {
	font-size: 0.7rem;
}

/* ── Responsive ── */

/* Tablet: form full width, sidebar — 2 cards per row */
@media (max-width: 1000px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.contact-sidebar {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.contact-content {
		padding: 40px 4% 80px;
	}

	.contact-form-wrap {
		padding: 28px 22px;
	}

	.contact-form-row {
		grid-template-columns: 1fr;
	}

	.contact-submit {
		width: 100%;
	}
}

/* Small mobile: sidebar also single column */
@media (max-width: 560px) {
	.contact-sidebar {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.contact-content {
		padding: 30px 4% 70px;
	}

	.contact-form-wrap {
		padding: 22px 16px;
	}

	.contact-form-title {
		font-size: 0.95rem;
	}
}

/* =============================================
   Form Modals (contact.html)
   ============================================= */
.form-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 9100;
	background: rgba(5, 5, 12, 0.78);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-modal-overlay.open {
	opacity: 1;
	visibility: visible;
}

.form-modal {
	position: relative;
	background: rgba(12, 12, 20, 0.97);
	border-radius: 24px;
	padding: 52px 40px 40px;
	max-width: 460px;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	transform: scale(0.86) translateY(24px);
	transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-modal-overlay.open .form-modal {
	transform: scale(1) translateY(0);
}

.form-modal--success {
	border: 1px solid rgba(0, 217, 255, 0.25);
	box-shadow:
		0 0 0 1px rgba(0, 217, 255, 0.06),
		0 0 60px rgba(0, 217, 255, 0.08),
		0 28px 56px rgba(0, 0, 0, 0.55);
}

.form-modal--error {
	border: 1px solid rgba(255, 90, 60, 0.28);
	box-shadow:
		0 0 0 1px rgba(255, 90, 60, 0.05),
		0 0 60px rgba(255, 80, 50, 0.08),
		0 28px 56px rgba(0, 0, 0, 0.55);
}

/* Close × button */
.form-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.9rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s;
}

.form-modal-close:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--light);
}

/* Icon circle */
.form-modal-icon {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: 6px;
	flex-shrink: 0;
}

.form-modal--success .form-modal-icon {
	background: rgba(0, 217, 255, 0.1);
	border: 1px solid rgba(0, 217, 255, 0.3);
	color: var(--primary);
	box-shadow: 0 0 40px rgba(0, 217, 255, 0.2);
}

.form-modal--error .form-modal-icon {
	background: rgba(255, 90, 60, 0.1);
	border: 1px solid rgba(255, 90, 60, 0.3);
	color: #ff6040;
	box-shadow: 0 0 40px rgba(255, 80, 50, 0.18);
}

/* Title */
.form-modal-title {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.07em;
	margin: 0;
}

/* Body text */
.form-modal-body {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.52);
	line-height: 1.75;
	margin: 0;
	max-width: 340px;
}

/* Error list */
.form-modal-errors {
	list-style: none;
	padding: 0;
	margin: 4px 0 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	text-align: left;
}

.form-modal-errors li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 11px 14px;
	background: rgba(255, 90, 60, 0.06);
	border: 1px solid rgba(255, 90, 60, 0.15);
	border-radius: 10px;
	font-family: var(--font-heading);
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.5;
}

.form-modal-errors li::before {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #ff6040;
	flex-shrink: 0;
	margin-top: 4px;
}

/* Action buttons */
.form-modal-btn {
	margin-top: 10px;
	padding: 13px 34px;
	border-radius: 12px;
	border: none;
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.25s ease;
}

.form-modal-btn--primary {
	background: var(--primary);
	color: var(--dark);
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.25);
}

.form-modal-btn--primary:hover {
	background: #00f0ff;
	box-shadow: 0 0 35px rgba(0, 217, 255, 0.45);
	transform: translateY(-2px);
}

.form-modal-btn--secondary {
	background: rgba(255, 90, 60, 0.1);
	color: #ff7055;
	border: 1px solid rgba(255, 90, 60, 0.28);
}

.form-modal-btn--secondary:hover {
	background: rgba(255, 90, 60, 0.2);
	transform: translateY(-2px);
}

/* ── Service detail modal ── */
.form-modal--service {
	max-width: 680px;
	padding: 0;
	text-align: left;
	gap: 0;
	border: 1px solid rgba(0, 217, 255, 0.2);
	box-shadow:
		0 0 0 1px rgba(0, 217, 255, 0.05),
		0 0 80px rgba(0, 217, 255, 0.08),
		0 32px 64px rgba(0, 0, 0, 0.6);
	max-height: 90vh;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 217, 255, 0.3) transparent;
}

.form-modal--service::-webkit-scrollbar { width: 4px; }
.form-modal--service::-webkit-scrollbar-track { background: transparent; }
.form-modal--service::-webkit-scrollbar-thumb { background: rgba(0, 217, 255, 0.3); border-radius: 2px; }

/* Header */
.svc-modal-header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 28px 28px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-modal-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(0, 217, 255, 0.08);
	border: 1px solid rgba(0, 217, 255, 0.22);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: var(--primary);
	flex-shrink: 0;
}

.svc-modal-label {
	font-family: var(--font-heading);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 4px;
}

.svc-modal-title {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0;
}

/* Image strip */
.svc-modal-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
	flex-shrink: 0;
}

.svc-modal-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(0.65) saturate(0.85);
}

/* Body */
.svc-modal-body {
	padding: 24px 28px 8px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.svc-modal-desc {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.8;
	margin: 0;
}

.svc-modal-section {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.svc-modal-section-title {
	font-family: var(--font-heading);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.svc-modal-section-title i {
	color: var(--primary);
}

.svc-modal-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.svc-modal-list li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-family: var(--font-heading);
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.45;
}

.svc-modal-list li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--primary);
	flex-shrink: 0;
	margin-top: 5px;
}

/* Ideal for block */
.svc-modal-ideal {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 16px;
	background: rgba(0, 217, 255, 0.05);
	border: 1px solid rgba(0, 217, 255, 0.12);
	border-radius: 10px;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.6;
}

.svc-modal-ideal strong {
	color: var(--primary);
	font-family: var(--font-heading);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-right: 4px;
}

/* Footer */
.svc-modal-footer {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 28px 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.form-modal-btn--ghost {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.45);
}

.form-modal-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.06);
	color: var(--light);
	transform: none;
}

@media (max-width: 600px) {
	.form-modal--service {
		max-height: 95vh;
	}

	.svc-modal-image {
		height: 160px;
	}

	.svc-modal-list {
		grid-template-columns: 1fr;
	}

	.svc-modal-header {
		padding: 22px 20px 16px;
	}

	.svc-modal-body {
		padding: 20px 20px 8px;
	}

	.svc-modal-footer {
		padding: 16px 20px 22px;
		flex-direction: column;
	}

	.svc-modal-footer .form-modal-btn {
		width: 100%;
		justify-content: center;
	}
}

/* ── Pricing email modal variant ── */
.form-modal--pricing {
	border: 1px solid rgba(0, 217, 255, 0.2);
	box-shadow:
		0 0 0 1px rgba(0, 217, 255, 0.05),
		0 0 60px rgba(0, 217, 255, 0.07),
		0 28px 56px rgba(0, 0, 0, 0.55);
}

.form-modal-icon--plan {
	background: rgba(0, 217, 255, 0.08);
	border: 1px solid rgba(0, 217, 255, 0.22);
	color: var(--primary);
	box-shadow: 0 0 32px rgba(0, 217, 255, 0.15);
}

/* Plan badge inside modal */
.pricing-modal-plan-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--primary);
	background: rgba(0, 217, 255, 0.08);
	border: 1px solid rgba(0, 217, 255, 0.2);
	padding: 5px 14px;
	border-radius: 20px;
	margin-bottom: 2px;
}

/* Email form inside modal */
.pricing-email-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
	margin-top: 4px;
}

.pricing-email-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-align: left;
}

.pricing-email-label {
	font-family: var(--font-heading);
	font-size: 0.73rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

.pricing-email-label span {
	color: var(--primary);
}

.pricing-email-input {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 13px 16px;
	font-family: var(--font-heading);
	font-size: 0.9rem;
	color: var(--light);
	outline: none;
	width: 100%;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	box-sizing: border-box;
}

.pricing-email-input::placeholder {
	color: rgba(255, 255, 255, 0.2);
}

.pricing-email-input:focus {
	border-color: rgba(0, 217, 255, 0.45);
	box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.08);
}

.pricing-email-input.error {
	border-color: rgba(255, 90, 60, 0.5);
	box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.08);
}

.pricing-email-error {
	font-family: var(--font-heading);
	font-size: 0.75rem;
	color: #ff6040;
	display: none;
}

.pricing-email-error.visible {
	display: block;
}

/* Submit button */
.pricing-modal-submit {
	padding: 13px 24px;
	border-radius: 12px;
	border: none;
	background: var(--primary);
	color: var(--dark);
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.25s ease;
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.25);
	position: relative;
	overflow: hidden;
}

.pricing-modal-submit:hover:not(:disabled) {
	background: #00f0ff;
	box-shadow: 0 0 36px rgba(0, 217, 255, 0.45);
	transform: translateY(-2px);
}

.pricing-modal-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.pricing-modal-submit .btn-spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(10, 10, 15, 0.3);
	border-top-color: var(--dark);
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}

.pricing-modal-submit.loading .btn-spinner { display: block; }
.pricing-modal-submit.loading .btn-text    { display: none; }

@media (max-width: 480px) {
	.form-modal {
		padding: 44px 22px 32px;
		border-radius: 18px;
	}

	.form-modal-title {
		font-size: 1rem;
	}

	.form-modal-icon {
		width: 64px;
		height: 64px;
		font-size: 1.6rem;
	}
}

/* =============================================
   Services Page (services.html)
   ============================================= */

/* ── Wrapper ── */
.services-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 5% 100px;
}

/* ── Intro text block ── */
.services-intro {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 64px;
}

.services-intro-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary);
	border: 1px solid rgba(0, 217, 255, 0.25);
	background: rgba(0, 217, 255, 0.06);
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.services-intro-title {
	font-family: var(--font-heading);
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 700;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1.2;
	margin-bottom: 18px;
}

.services-intro-title span {
	color: var(--primary);
}

.services-intro-text {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.8;
}

/* ── Services grid: 3 cols ── */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 80px;
}

/* ── Service card ── */
.service-card {
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 20px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card:hover {
	border-color: rgba(0, 217, 255, 0.28);
	box-shadow: 0 0 40px rgba(0, 217, 255, 0.07), 0 12px 32px rgba(0, 0, 0, 0.35);
	transform: translateY(-4px);
}

/* ── Card image ── */
.service-card-image {
	width: 100%;
	height: 190px;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
	position: relative;
	flex-shrink: 0;
}

.service-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s ease;
	filter: brightness(0.7) saturate(0.85);
}

.service-card:hover .service-card-image img {
	transform: scale(1.06);
	filter: brightness(0.82) saturate(1);
}

.service-card-image::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 55%;
	background: linear-gradient(to top, rgba(12, 12, 20, 0.92) 0%, transparent 100%);
	pointer-events: none;
}

/* ── Card body ── */
.service-card-body {
	padding: 24px 26px 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.service-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 13px;
	background: rgba(0, 217, 255, 0.08);
	border: 1px solid rgba(0, 217, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	color: var(--primary);
	flex-shrink: 0;
}

.service-card-title {
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
}

.service-card-desc {
	font-size: 0.855rem;
	color: rgba(255, 255, 255, 0.52);
	line-height: 1.75;
	margin: 0;
	flex: 1;
}

.service-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.service-tag {
	font-family: var(--font-heading);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: rgba(0, 217, 255, 0.7);
	background: rgba(0, 217, 255, 0.06);
	border: 1px solid rgba(0, 217, 255, 0.15);
	border-radius: 6px;
	padding: 3px 9px;
}

/* ── Learn More button ── */
.service-card-learn-more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-heading);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--primary);
	text-decoration: none;
	background: none;
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 6px 0 0;
	margin-top: 4px;
	cursor: pointer;
	transition: gap 0.25s ease, opacity 0.25s ease;
	width: fit-content;
	outline: none;
}

.service-card-learn-more i {
	font-size: 0.7rem;
	transition: transform 0.25s ease;
}

.service-card-learn-more:hover {
	opacity: 0.75;
}

.service-card-learn-more:hover i {
	transform: translateX(5px);
}

/* ── Process section ── */
.services-process {
	margin-bottom: 80px;
}

.services-section-header {
	text-align: center;
	margin-bottom: 48px;
}

.services-section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary);
	border: 1px solid rgba(0, 217, 255, 0.25);
	background: rgba(0, 217, 255, 0.06);
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}

.services-section-title {
	font-family: var(--font-heading);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}

/* horizontal connector line */
.process-steps::before {
	content: '';
	position: absolute;
	top: 32px;
	left: calc(12.5% + 12px);
	right: calc(12.5% + 12px);
	height: 1px;
	background: linear-gradient(90deg,
		rgba(0, 217, 255, 0.15) 0%,
		rgba(0, 217, 255, 0.4) 50%,
		rgba(0, 217, 255, 0.15) 100%);
	z-index: 0;
}

.process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 16px;
	position: relative;
	z-index: 1;
}

.process-step-num {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 1px solid rgba(0, 217, 255, 0.3);
	background: rgba(10, 10, 15, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 20px;
	box-shadow: 0 0 24px rgba(0, 217, 255, 0.12);
	flex-shrink: 0;
}

.process-step-title {
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 10px;
}

.process-step-desc {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.48);
	line-height: 1.7;
	margin: 0;
}

/* ── Pricing section ── */
.services-pricing {
	margin-bottom: 80px;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
	margin-bottom: 28px;
}

/* ── Pricing card ── */
.pricing-card {
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	padding: 36px 28px 32px;
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
	transform: translateY(-4px);
}

/* ── Featured card ── */
.pricing-card--featured {
	border-color: rgba(0, 217, 255, 0.35);
	background: rgba(0, 217, 255, 0.04);
	box-shadow:
		0 0 0 1px rgba(0, 217, 255, 0.1),
		0 0 60px rgba(0, 217, 255, 0.08),
		0 16px 48px rgba(0, 0, 0, 0.4);
	transform: translateY(-8px);
}

.pricing-card--featured:hover {
	border-color: rgba(0, 217, 255, 0.55);
	box-shadow:
		0 0 0 1px rgba(0, 217, 255, 0.15),
		0 0 80px rgba(0, 217, 255, 0.12),
		0 20px 56px rgba(0, 0, 0, 0.45);
	transform: translateY(-12px);
}

/* "Most Popular" badge */
.pricing-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-heading);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--dark);
	background: var(--primary);
	padding: 5px 12px;
	border-radius: 20px;
	margin-bottom: 20px;
	width: fit-content;
	box-shadow: 0 0 16px rgba(0, 217, 255, 0.35);
}

.pricing-badge i {
	font-size: 0.6rem;
}

/* Plan name */
.pricing-plan-name {
	font-family: var(--font-heading);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 14px;
}

.pricing-card--featured .pricing-plan-name {
	color: var(--primary);
}

/* Price */
.pricing-price-wrap {
	display: flex;
	align-items: flex-end;
	gap: 2px;
	margin-bottom: 16px;
	line-height: 1;
}

.pricing-currency {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--light);
	align-self: flex-start;
	margin-top: 6px;
}

.pricing-amount {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 900;
	color: var(--light);
	letter-spacing: -0.02em;
}

.pricing-card--featured .pricing-amount {
	color: var(--primary);
}

.pricing-period {
	font-family: var(--font-heading);
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 8px;
	margin-left: 2px;
}

/* Description */
.pricing-desc {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.48);
	line-height: 1.7;
	margin: 0 0 20px;
}

/* Divider */
.pricing-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.07);
	margin-bottom: 20px;
}

.pricing-card--featured .pricing-divider {
	background: rgba(0, 217, 255, 0.15);
}

/* Feature list */
.pricing-features {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: flex;
	flex-direction: column;
	gap: 11px;
	flex: 1;
}

.pricing-feature {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: var(--font-heading);
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}

.pricing-feature i {
	color: var(--primary);
	font-size: 0.75rem;
	flex-shrink: 0;
	margin-top: 3px;
}

.pricing-feature--off {
	color: rgba(255, 255, 255, 0.3);
}

.pricing-feature--off i {
	color: rgba(255, 255, 255, 0.2);
}

/* CTA button */
.pricing-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 13px 24px;
	border-radius: 12px;
	font-family: var(--font-heading);
	font-size: 0.83rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	text-decoration: none;
	transition: all 0.25s ease;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--light);
}

.pricing-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.22);
	transform: translateY(-2px);
}

.pricing-btn--featured {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--dark);
	box-shadow: 0 0 24px rgba(0, 217, 255, 0.3);
}

.pricing-btn--featured:hover {
	background: #00f0ff;
	border-color: #00f0ff;
	box-shadow: 0 0 40px rgba(0, 217, 255, 0.5);
	color: var(--dark);
}

/* Note below grid */
.pricing-note {
	text-align: center;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.38);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	flex-wrap: wrap;
}

.pricing-note i {
	color: rgba(0, 217, 255, 0.5);
	flex-shrink: 0;
}

.pricing-note a {
	color: var(--primary);
	text-decoration: none;
	transition: opacity 0.2s;
}

.pricing-note a:hover {
	opacity: 0.75;
}

/* ── CTA block ── */
.services-cta {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(0, 217, 255, 0.15);
	border-radius: 24px;
	padding: 56px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.services-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(ellipse at 50% 0%, rgba(0, 217, 255, 0.07) 0%, transparent 70%);
	pointer-events: none;
}

.services-cta-title {
	font-family: var(--font-heading);
	font-size: clamp(1.3rem, 2.5vw, 1.8rem);
	font-weight: 700;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 14px;
}

.services-cta-text {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.52);
	line-height: 1.8;
	max-width: 520px;
	margin: 0 auto 32px;
}

.services-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 40px;
	background: var(--primary);
	color: var(--dark);
	font-family: var(--font-heading);
	font-size: 0.88rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	border-radius: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 0 24px rgba(0, 217, 255, 0.25);
}

.services-cta-btn:hover {
	background: #00f0ff;
	box-shadow: 0 0 40px rgba(0, 217, 255, 0.5);
	transform: translateY(-3px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Move featured card back to normal flow */
	.pricing-card--featured {
		transform: none;
		grid-column: span 2;
		max-width: 520px;
		margin: 0 auto;
		width: 100%;
	}

	.pricing-card--featured:hover {
		transform: translateY(-4px);
	}

	.process-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.process-steps::before {
		display: none;
	}
}

@media (max-width: 768px) {
	.services-content {
		padding: 0 4% 80px;
	}

	.services-intro {
		margin-bottom: 48px;
	}

	.services-grid {
		gap: 16px;
		margin-bottom: 60px;
	}

	.service-card-image {
		height: 160px;
	}

	.service-card-body {
		padding: 20px 20px 22px;
	}

	.services-process {
		margin-bottom: 60px;
	}

	.services-pricing {
		margin-bottom: 60px;
	}

	.services-section-header {
		margin-bottom: 36px;
	}

	.pricing-grid {
		gap: 16px;
	}

	.pricing-card {
		padding: 28px 22px 26px;
	}

	.pricing-amount {
		font-size: 2.4rem;
	}

	.services-cta {
		padding: 40px 24px;
	}
}

@media (max-width: 560px) {
	.services-grid {
		grid-template-columns: 1fr;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.pricing-card--featured {
		grid-column: span 1;
		max-width: 100%;
	}

	.process-steps {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.process-step {
		flex-direction: row;
		text-align: left;
		gap: 20px;
		padding: 0;
	}

	.process-step-num {
		width: 52px;
		height: 52px;
		font-size: 0.95rem;
		margin-bottom: 0;
		flex-shrink: 0;
	}

	.process-step-body {
		flex: 1;
	}
}

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */

/* ── Intro split ── */
.about-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 80px 5% 60px;
	max-width: 1200px;
	margin: 0 auto;
}

.about-intro-text {}

.about-intro-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 16px;
}

.about-intro-label i { font-size: 0.9em; }

.about-intro-title {
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 900;
	color: var(--light);
	line-height: 1.2;
	margin: 0 0 20px;
}

.about-intro-title span { color: var(--primary); }

.about-intro-body {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.58);
	line-height: 1.85;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.about-intro-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.about-intro-image img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
	filter: brightness(0.75) saturate(0.85);
	transition: transform 0.6s ease, filter 0.4s ease;
}

.about-intro-image:hover img {
	transform: scale(1.04);
	filter: brightness(0.88) saturate(1);
}

.about-intro-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 217, 255, 0.06) 0%, transparent 60%);
	pointer-events: none;
}

/* ── Stats bar ── */
.about-stats {
	background: rgba(255, 255, 255, 0.025);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding: 48px 5%;
}

.about-stats-inner {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.about-stat {
	text-align: center;
	padding: 0 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.about-stat:last-child { border-right: none; }

.about-stat-number {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 8px;
	display: block;
}

.about-stat-label {
	font-family: var(--font-heading);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.38);
}

/* ── Values ── */
.about-values {
	padding: 80px 5%;
	max-width: 1200px;
	margin: 0 auto;
}

.about-section-header {
	text-align: center;
	margin-bottom: 52px;
}

.about-section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 10px;
}

.about-section-label i { font-size: 0.9em; }

.about-section-title {
	font-family: var(--font-heading);
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	font-weight: 900;
	color: var(--light);
	line-height: 1.2;
	margin: 0;
}

.about-section-title span { color: var(--primary); }

.about-values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.about-value-card {
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 20px;
	padding: 32px 28px;
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.about-value-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(ellipse at 0% 0%, rgba(0, 217, 255, 0.07) 0%, transparent 65%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.about-value-card:hover {
	border-color: rgba(0, 217, 255, 0.25);
	transform: translateY(-4px);
	box-shadow: 0 0 40px rgba(0, 217, 255, 0.06), 0 16px 40px rgba(0, 0, 0, 0.35);
}

.about-value-card:hover::before { opacity: 1; }

.about-value-icon {
	width: 50px;
	height: 50px;
	border-radius: 13px;
	background: rgba(0, 217, 255, 0.07);
	border: 1px solid rgba(0, 217, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	color: var(--primary);
	margin-bottom: 20px;
}

.about-value-title {
	font-family: var(--font-heading);
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--light);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 12px;
}

.about-value-desc {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.8;
	margin: 0;
}

/* ── Approach steps ── */
.about-approach {
	padding: 0 5% 80px;
	max-width: 1200px;
	margin: 0 auto;
}

.about-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
	padding-top: 20px;
}

.about-steps::before {
	content: '';
	position: absolute;
	top: 44px;
	left: calc(12.5% + 26px);
	right: calc(12.5% + 26px);
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(0, 217, 255, 0.3) 20%, rgba(0, 217, 255, 0.3) 80%, transparent);
}

.about-step {
	text-align: center;
	padding: 0 16px;
	position: relative;
	z-index: 1;
}

.about-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(10, 10, 15, 1);
	border: 2px solid rgba(0, 217, 255, 0.4);
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 900;
	color: var(--primary);
	margin-bottom: 20px;
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.12);
}

.about-step-title {
	font-family: var(--font-heading);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--light);
	margin: 0 0 10px;
}

.about-step-desc {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.75;
	margin: 0;
}

/* ── Location block ── */
.about-location {
	margin: 0 5% 80px;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(255, 255, 255, 0.02);
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	max-width: 1200px;
	margin-inline: auto;
}

.about-location-image {
	overflow: hidden;
	position: relative;
	min-height: 320px;
}

.about-location-image img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	filter: brightness(0.65) saturate(0.8);
	transition: transform 0.6s ease;
}

.about-location:hover .about-location-image img {
	transform: scale(1.04);
}

.about-location-content {
	padding: 48px 44px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}

.about-location-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--primary);
}

.about-location-title {
	font-family: var(--font-heading);
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	font-weight: 900;
	color: var(--light);
	line-height: 1.25;
	margin: 0;
}

.about-location-body {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.52);
	line-height: 1.85;
}

.about-location-address {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.about-location-address-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-heading);
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.55);
}

.about-location-address-item i {
	color: var(--primary);
	font-size: 0.9rem;
	width: 16px;
	text-align: center;
}

.about-location-address-item a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	transition: color 0.25s ease;
}

.about-location-address-item a:hover {
	color: var(--primary);
}

/* ── CTA block ── */
.about-cta {
	text-align: center;
	padding: 72px 5% 100px;
	max-width: 800px;
	margin: 0 auto;
}

.about-cta-title {
	font-family: var(--font-heading);
	font-size: clamp(1.3rem, 3vw, 2rem);
	font-weight: 900;
	color: var(--light);
	line-height: 1.2;
	margin: 0 0 16px;
}

.about-cta-title span { color: var(--primary); }

.about-cta-text {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.8;
	margin: 0 0 36px;
}

.about-cta-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.about-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 14px 28px;
	border-radius: 12px;
	font-family: var(--font-heading);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.about-cta-btn:hover { transform: translateY(-2px); }

.about-cta-btn--primary {
	background: var(--primary);
	border: 1px solid var(--primary);
	color: #000;
}

.about-cta-btn--primary:hover {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
}

.about-cta-btn--outline {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.7);
}

.about-cta-btn--outline:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.3);
	color: var(--light);
}

/* ── About responsive ── */
@media (max-width: 1024px) {
	.about-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.about-steps::before { display: none; }
}

@media (max-width: 900px) {
	.about-intro {
		grid-template-columns: 1fr;
		gap: 36px;
		padding: 60px 5% 48px;
	}

	.about-intro-image img { height: 300px; }

	.about-stats-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 0;
	}

	.about-stat {
		padding: 20px;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	}

	.about-stat:nth-child(odd)  { border-right: 1px solid rgba(255, 255, 255, 0.07); }
	.about-stat:nth-child(3),
	.about-stat:nth-child(4)    { border-bottom: none; }

	.about-values-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.about-location {
		grid-template-columns: 1fr;
	}

	.about-location-image {
		height: 260px;
		min-height: 260px;
	}

	.about-location-image img {
		min-height: 260px;
	}

	.about-location-content {
		padding: 36px 28px;
	}
}

@media (max-width: 600px) {
	.about-intro { padding: 48px 5% 40px; }

	.about-values  { padding: 60px 5%; }
	.about-approach { padding: 0 5% 60px; }

	.about-steps {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.about-step {
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.about-step-num {
		width: 44px;
		height: 44px;
		font-size: 0.95rem;
		margin-bottom: 12px;
	}

	.about-stats { padding: 36px 5%; }

	.about-cta { padding: 56px 5% 80px; }

	.about-cta-actions { flex-direction: column; align-items: center; }

	.about-cta-btn { width: 100%; justify-content: center; }
}