@charset "utf-8";
/* 

CSS Document 

TemplateMo 615 Amber Folio

https://templatemo.com/tm-615-amber-folio

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-dark: #0a0a0a;
	--secondary-dark: #1a1a1a;
	--accent-color: #f39c12;
	--text-light: #ffffff;
	--text-gray: #a0a0a0;
	--card-dark: #151515;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--primary-dark);
	color: var(--text-light);
	overflow-x: hidden;
	line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
	border-radius: 4px;
}

/* Header Navigation */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 20px 0;
	transition: all 0.3s ease;
}

header.scrolled {
	padding: 15px 0;
	background: rgba(10, 10, 10, 0.98);
}

nav {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.5px;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
}

.logo:hover {
	color: rgba(255, 255, 255, 0.85);
}

.logo svg {
	width: 32px;
	height: 32px;
	fill: var(--accent-color);
	opacity: 0.9;
	transition: all 0.3s ease;
}

.logo img {
	width: 170px;
	height: auto;
	display: block;
	transition: all 0.3s ease;
}

.logo:hover svg {
	opacity: 1;
	transform: rotate(-5deg) scale(1.05);
}

.logo:hover img {
	transform: scale(1.03);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 8px;
	align-items: center;
	padding: 6px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(8px);
}

.nav-menu li {
	position: relative;
	display: flex;
	align-items: center;
}

.nav-menu li:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -4px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background: linear-gradient(to bottom,
			rgba(255, 255, 255, 0.02),
			rgba(255, 255, 255, 0.3),
			rgba(255, 255, 255, 0.02));
}

.nav-menu a {
	color: rgba(255, 255, 255, 0.84);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.35px;
	padding: 10px 15px;
	position: relative;
	transition: all 0.25s ease;
	border-radius: 9px;
	background: linear-gradient(135deg,
			rgba(255, 255, 255, 0.05) 0%,
			rgba(255, 255, 255, 0.015) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.nav-menu a::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg,
			transparent 0%,
			rgba(255, 255, 255, 0.08) 45%,
			transparent 100%);
	transform: translateX(-120%);
	transition: transform 0.5s ease;
	pointer-events: none;
}

.nav-menu a:hover {
	color: #fff;
	background: linear-gradient(135deg,
			rgba(243, 156, 18, 0.18) 0%,
			rgba(243, 156, 18, 0.08) 100%);
	border-color: rgba(243, 156, 18, 0.42);
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.14);
	transform: translateY(-1px);
}

.nav-menu a:hover::before {
	transform: translateX(120%);
}

.nav-menu a.active {
	color: #fff;
	background: linear-gradient(135deg,
			rgba(243, 156, 18, 0.28) 0%,
			rgba(243, 156, 18, 0.16) 100%);
	border-color: rgba(243, 156, 18, 0.55);
	box-shadow:
		0 10px 24px rgba(243, 156, 18, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.has-dropdown .dropdown-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 250px;
	padding: 8px;
	list-style: none;
	background: linear-gradient(145deg, rgba(18, 18, 18, 0.98), rgba(10, 10, 10, 0.98));
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 1300;
}

.has-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu li {
	display: block;
}

.dropdown-menu li::after {
	display: none;
}

.dropdown-menu a {
	display: block;
	padding: 9px 10px;
	border-radius: 8px;
	font-size: 13px;
	white-space: nowrap;
}

.dropdown-menu a:hover {
	transform: none;
	box-shadow: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.menu-toggle span {
	width: 25px;
	height: 2px;
	background: var(--text-light);
	transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
	margin-top: 0;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.2;
	background-image:
		repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(243, 156, 18, 0.04) 35px, rgba(243, 156, 18, 0.04) 70px),
		repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, .04) 35px, rgba(255, 255, 255, .04) 70px),
		repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(243, 156, 18, 0.03) 50px, rgba(243, 156, 18, 0.03) 100px);
}

/* Animated geometric shapes for hero background */
.hero-section::before {
	content: '';
	position: absolute;
	top: 10%;
	right: 10%;
	width: 300px;
	height: 300px;
	border: 2px solid rgba(243, 156, 18, 0.15);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	animation: morphShape 20s ease-in-out infinite;
	background: radial-gradient(circle at 30% 50%, rgba(243, 156, 18, 0.03), transparent 70%);
}

.hero-section::after {
	content: '';
	position: absolute;
	bottom: 10%;
	left: 5%;
	width: 280px;
	height: 280px;
	border: 2px solid rgba(243, 156, 18, 0.12);
	border-radius: 50%;
	animation: rotateShape 25s linear infinite;
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), transparent 60%);
	box-shadow: 0 0 40px rgba(243, 156, 18, 0.1);
}

/* Additional floating accent shapes */
.hero-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.floating-accent {
	position: absolute;
	border: 1px solid rgba(243, 156, 18, 0.1);
	animation: float 15s ease-in-out infinite;
}

.accent-1 {
	top: 20%;
	left: 10%;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	animation-delay: 0s;
}

.accent-2 {
	bottom: 30%;
	right: 15%;
	width: 100px;
	height: 100px;
	border-radius: 30% 70% 70% 30%;
	animation-delay: -5s;
}

.accent-3 {
	top: 50%;
	right: 30%;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	animation-delay: -10s;
	border-color: rgba(255, 255, 255, 0.05);
}

@keyframes morphShape {

	0%,
	100% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
		transform: rotate(0deg) scale(1);
	}

	33% {
		border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
		transform: rotate(120deg) scale(1.1);
	}

	66% {
		border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
		transform: rotate(240deg) scale(0.95);
	}
}

@keyframes rotateShape {
	0% {
		transform: rotate(0deg) scale(1);
	}

	50% {
		transform: rotate(180deg) scale(1.05);
	}

	100% {
		transform: rotate(360deg) scale(1);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) translateX(0) rotate(0deg);
	}

	25% {
		transform: translateY(-20px) translateX(10px) rotate(90deg);
	}

	50% {
		transform: translateY(10px) translateX(-10px) rotate(180deg);
	}

	75% {
		transform: translateY(-10px) translateX(5px) rotate(270deg);
	}
}

.hero-content {
	text-align: center;
	z-index: 1;
	padding: 0 20px;
}

.hero-title {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 900;
	letter-spacing: -2px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.3rem);
	color: var(--text-gray);
	margin-bottom: 40px;
	font-weight: 300;
	letter-spacing: 2px;
}

.cta-button {
	display: inline-block;
	padding: 15px 40px;
	background: var(--accent-color);
	color: var(--primary-dark);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-radius: 10px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

/* Portfolio Section with Coverflow */
.portfolio-section {
	padding: 100px 0;
	position: relative;
	background: var(--primary-dark);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.portfolio-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.72)),
		url('images/bg3.jpg') center/cover no-repeat;
	filter: blur(3px);
	transform: scale(1.03);
}

.portfolio-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			var(--primary-dark) 0%,
			rgba(15, 15, 15, 0) 14%,
			rgba(15, 15, 15, 0) 86%,
			var(--secondary-dark) 100%);
	pointer-events: none;
	z-index: 1;
}

.portfolio-section .section-header,
.portfolio-section .coverflow-wrapper {
	position: relative;
	z-index: 2;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
	padding: 0 20px;
}

.section-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 15px;
}

.section-subtitle {
	color: var(--text-gray);
	font-size: 16px;
	max-width: 600px;
	margin: 0 auto;
}

/* Coverflow Container */
.coverflow-wrapper {
	width: 100%;
	position: relative;
	padding: 40px 0 80px;
}

.coverflow-container {
	width: 900px;
	max-width: 90vw;
	/* Dynamic height based on viewport: min 350px, preferred 45vh, max 500px */
	height: clamp(350px, 45vh, 500px);
	position: relative;
	transform-style: preserve-3d;
	margin: 0 auto;
	perspective: 1200px;
}

.coverflow-item {
	position: absolute;
	/* Dynamic width based on viewport: min 210px, preferred 27vh, max 300px */
	width: clamp(210px, 27vh, 300px);
	/* Dynamic height based on viewport: min 290px, preferred 38vh, max 420px */
	height: clamp(290px, 38vh, 420px);
	left: 50%;
	top: 50%;
	transform-origin: center center;
	cursor: pointer;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

/* Adjust for large screens (27" and above) */
@media (min-height: 900px) {
	.coverflow-container {
		height: clamp(450px, 50vh, 550px);
	}

	.coverflow-item {
		width: clamp(280px, 30vh, 340px);
		height: clamp(390px, 42vh, 480px);
	}
}

/* Adjust for small laptops */
@media (max-height: 768px) {
	.coverflow-container {
		height: clamp(300px, 42vh, 380px);
	}

	.coverflow-item {
		width: clamp(180px, 24vh, 240px);
		height: clamp(250px, 34vh, 320px);
	}
}

/* Reflection Effect */
.coverflow-item::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	transform: scaleY(-1) translateY(1px);
	opacity: 0.15;
	filter: blur(2px);
	mask: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.4) 0%,
			rgba(0, 0, 0, 0.2) 20%,
			rgba(0, 0, 0, 0.1) 40%,
			transparent 60%);
	-webkit-mask: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.4) 0%,
			rgba(0, 0, 0, 0.2) 20%,
			rgba(0, 0, 0, 0.1) 40%,
			transparent 60%);
	pointer-events: none;
}

.portfolio-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.coverflow-item:hover .portfolio-image {
	transform: scale(1.05);
}

.portfolio-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.95) 0%,
			rgba(0, 0, 0, 0.7) 40%,
			rgba(0, 0, 0, 0.3) 70%,
			transparent 100%);
	padding: 30px;
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	transition: transform 0.4s ease, opacity 0.3s ease;
}

.coverflow-item:hover .portfolio-overlay {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.portfolio-category {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--accent-color);
	margin-bottom: 8px;
	font-weight: 600;
}

.portfolio-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--text-light);
}

.portfolio-description {
	font-size: 13px;
	color: var(--text-gray);
	line-height: 1.5;
}

/* Navigation Controls */
.coverflow-controls {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 10;
}

.control-btn {
	width: 45px;
	height: 45px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	background: rgba(26, 26, 26, 0.8);
	backdrop-filter: blur(10px);
	color: var(--text-light);
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	position: relative;
}

.control-btn:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--primary-dark);
	transform: scale(1.1);
}

/* Adjust play button icon positioning */
#playPauseBtn {
	padding-left: 2px;
}

#playPauseBtn.playing {
	padding-left: 0;
}

/* Indicators */
.indicators {
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	width: 30px;
	border-radius: 4px;
	background: var(--accent-color);
}

/* About Section */
.about-section {
	padding: 100px 30px;
	position: relative;
	overflow: hidden;
	background: var(--secondary-dark);
}

.about-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.72)),
		url('images/bg2.jpg') center/cover no-repeat;
	filter: blur(3px);
	transform: scale(1.03);
}

.about-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			var(--primary-dark) 0%,
			rgba(15, 15, 15, 0) 14%,
			rgba(15, 15, 15, 0) 86%,
			var(--primary-dark) 100%);
	pointer-events: none;
	z-index: 1;
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.about-image {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	filter: grayscale(100%);
	transition: filter 0.5s ease;
}

.about-image:hover img {
	filter: grayscale(0%);
}

.about-content h2 {
	font-size: clamp(2rem, 4vw, 2.5rem);
	margin-bottom: 20px;
	font-weight: 800;
	letter-spacing: -1px;
}

.about-content p {
	color: var(--text-gray);
	line-height: 1.8;
	margin-bottom: 20px;
	font-size: 16px;
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--accent-color);
	margin-bottom: 5px;
}

.stat-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-gray);
}

/* Advantages Section */
.advantages-section {
	padding: 100px 30px;
	position: relative;
	overflow: hidden;
	background: var(--primary-dark);
}

.advantages-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.72)),
		url('images/bg1.jpg') center/cover no-repeat;
	filter: blur(3px);
	transform: scale(1.03);
}

.advantages-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			var(--secondary-dark) 0%,
			rgba(15, 15, 15, 0) 14%,
			rgba(15, 15, 15, 0) 86%,
			var(--primary-dark) 100%);
	pointer-events: none;
	z-index: 1;
}

.advantages-section .advantages-container {
	position: relative;
	z-index: 2;
}

.advantages-container {
	max-width: 1000px;
	margin: 0 auto;
}

.advantages-list {
	display: grid;
	gap: 16px;
	margin-top: 20px;
}

.advantage-item {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 0 20px;
	transition: all 0.3s ease;
}

.advantage-item:hover {
	border-color: rgba(243, 156, 18, 0.4);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.advantage-item summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 34px 18px 0;
	font-size: 17px;
	font-weight: 600;
	color: var(--text-light);
	position: relative;
}

.advantage-item summary::-webkit-details-marker {
	display: none;
}

.advantage-item summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	line-height: 1;
	color: var(--accent-color);
	transition: transform 0.25s ease;
}

.advantage-item[open] {
	border-color: rgba(243, 156, 18, 0.48);
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.12), rgba(243, 156, 18, 0.04));
}

.advantage-item[open] summary::after {
	content: '−';
	transform: translateY(-50%) rotate(180deg);
}

.advantage-item p {
	color: var(--text-gray);
	padding: 0 0 18px;
	line-height: 1.7;
	font-size: 15px;
}

/* Privacy Page */
.privacy-page {
	padding: 120px 30px 100px;
	background:
		linear-gradient(rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.86)),
		url('images/bg2.jpg') center/cover no-repeat;
}

.privacy-container {
	max-width: 1100px;
	margin: 0 auto;
}

.privacy-intro-card {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 22px 24px;
	margin-bottom: 22px;
}

.privacy-intro-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.8;
}

.privacy-highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 22px;
}

.privacy-highlight-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(243, 156, 18, 0.25);
	border-radius: 12px;
	padding: 16px;
}

.privacy-highlight-item h3 {
	margin: 0 0 8px;
	font-size: 16px;
	color: var(--text-light);
}

.privacy-highlight-item p {
	margin: 0;
	color: var(--text-gray);
	font-size: 14px;
	line-height: 1.65;
}

.privacy-sections {
	display: grid;
	gap: 14px;
}

.privacy-block {
	background: linear-gradient(145deg, rgba(22, 22, 22, 0.95), rgba(18, 18, 18, 0.95));
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 18px 20px;
}

.privacy-block h2 {
	margin: 0 0 8px;
	font-size: 20px;
	color: var(--text-light);
}

.privacy-block p {
	margin: 0;
	color: var(--text-gray);
	line-height: 1.75;
}

.privacy-block ul {
	margin: 10px 0 0;
	padding-left: 18px;
	color: var(--text-gray);
	line-height: 1.7;
}

.privacy-contact-box {
	margin-top: 22px;
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.16), rgba(243, 156, 18, 0.06));
	border: 1px solid rgba(243, 156, 18, 0.35);
	border-radius: 14px;
	padding: 18px 20px;
}

.privacy-contact-box h3 {
	margin: 0 0 8px;
	font-size: 18px;
	color: var(--text-light);
}

.privacy-contact-box p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.7;
}

.privacy-contact-box a {
	color: var(--accent-color);
	text-decoration: none;
}

.privacy-contact-box a:hover {
	opacity: 0.85;
}

/* Process Page */
.process-page {
	padding: 120px 30px 100px;
	background:
		linear-gradient(rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.88)),
		url('images/bg3.jpg') center/cover no-repeat;
}

.process-container {
	max-width: 1120px;
	margin: 0 auto;
}

.process-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 20px;
}

.process-feature-card {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 16px;
}

.process-feature-card h3 {
	margin: 0 0 8px;
	font-size: 17px;
	color: var(--text-light);
}

.process-feature-card p {
	margin: 0;
	color: var(--text-gray);
	font-size: 14px;
	line-height: 1.65;
}

.process-tabs {
	background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(14, 14, 14, 0.9));
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 16px;
}

.process-tab-buttons {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
	margin-bottom: 14px;
}

.process-tab-btn {
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.86);
	border-radius: 10px;
	padding: 10px 8px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.25s ease;
}

.process-tab-btn:hover {
	border-color: rgba(243, 156, 18, 0.45);
}

.process-tab-btn.active {
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.28), rgba(243, 156, 18, 0.14));
	border-color: rgba(243, 156, 18, 0.55);
	color: #fff;
}

.process-tab-panel {
	display: none;
	grid-template-columns: minmax(280px, 1fr) 1.2fr;
	gap: 16px;
	align-items: stretch;
}

.process-tab-panel.active {
	display: grid;
}

.process-tab-image {
	width: 100%;
	height: 100%;
	min-height: 290px;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-tab-content {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 16px;
}

.process-tab-content h2 {
	margin: 0 0 8px;
	font-size: 22px;
	color: var(--text-light);
}

.process-tab-content p {
	margin: 0;
	color: var(--text-gray);
	line-height: 1.7;
}

.process-tab-content ul {
	margin: 10px 0 0;
	padding-left: 18px;
	color: var(--text-gray);
	line-height: 1.7;
}

.process-notes {
	display: grid;
	gap: 12px;
	margin-top: 16px;
}

.process-note-item {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 0 16px;
}

.process-note-item summary {
	list-style: none;
	cursor: pointer;
	padding: 14px 28px 14px 0;
	position: relative;
	font-weight: 600;
	color: var(--text-light);
}

.process-note-item summary::-webkit-details-marker {
	display: none;
}

.process-note-item summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent-color);
	font-size: 20px;
}

.process-note-item[open] summary::after {
	content: '−';
}

.process-note-item p {
	margin: 0;
	padding: 0 0 14px;
	color: var(--text-gray);
	line-height: 1.7;
}

.process-contact-box {
	margin-top: 16px;
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.16), rgba(243, 156, 18, 0.06));
	border: 1px solid rgba(243, 156, 18, 0.35);
	border-radius: 14px;
	padding: 18px 20px;
}

.process-contact-box h3 {
	margin: 0 0 8px;
	font-size: 18px;
	color: var(--text-light);
}

.process-contact-box p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.7;
}

.process-contact-box a {
	color: var(--accent-color);
	text-decoration: none;
}

/* About Rich Page */
.about-page-rich {
	padding: 120px 30px 100px;
	background:
		linear-gradient(rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.9)),
		url('images/bg1.jpg') center/cover no-repeat;
}

.about-rich-container {
	max-width: 1120px;
	margin: 0 auto;
}

.about-story-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 16px;
}

.about-story-card {
	background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(12, 12, 12, 0.95));
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	overflow: hidden;
}

.about-story-image {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
}

.about-story-content {
	padding: 16px;
}

.about-story-content h3 {
	margin: 0 0 8px;
	font-size: 20px;
	color: var(--text-light);
}

.about-story-content p {
	margin: 0;
	color: var(--text-gray);
	line-height: 1.75;
}

.about-pillars {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 16px;
}

.about-pillar {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 14px 12px;
}

.about-pillar span {
	font-size: 12px;
	color: var(--accent-color);
	font-weight: 700;
	letter-spacing: 1px;
}

.about-pillar h4 {
	margin: 6px 0 6px;
	font-size: 15px;
	color: var(--text-light);
}

.about-pillar p {
	margin: 0;
	color: var(--text-gray);
	font-size: 13px;
	line-height: 1.6;
}

.about-deep-section {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 14px;
	margin-bottom: 16px;
}

.about-deep-image {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-deep-text {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 16px;
}

.about-deep-text h2 {
	margin: 0 0 8px;
	font-size: 24px;
	color: var(--text-light);
}

.about-deep-text p {
	margin: 0 0 10px;
	color: var(--text-gray);
	line-height: 1.75;
}

.about-deep-text p:last-child {
	margin-bottom: 0;
}

.about-faq-style {
	display: grid;
	gap: 10px;
	margin-bottom: 16px;
}

.about-detail-item {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 0 16px;
}

.about-detail-item summary {
	list-style: none;
	cursor: pointer;
	padding: 14px 28px 14px 0;
	position: relative;
	font-weight: 600;
	color: var(--text-light);
}

.about-detail-item summary::-webkit-details-marker {
	display: none;
}

.about-detail-item summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent-color);
	font-size: 20px;
}

.about-detail-item[open] summary::after {
	content: '−';
}

.about-detail-item p {
	margin: 0;
	padding: 0 0 14px;
	color: var(--text-gray);
	line-height: 1.7;
}

.about-final-banner {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	margin-bottom: 16px;
}

.about-final-image {
	width: 100%;
	height: 280px;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.about-final-overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: 16px;
	background: linear-gradient(to top, rgba(8, 8, 8, 0.95), rgba(8, 8, 8, 0.3));
}

.about-final-overlay h3 {
	margin: 0 0 6px;
	font-size: 22px;
	color: var(--text-light);
}

.about-final-overlay p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.7;
}

/* Contact Page Extras */
.contact-extras {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 14px;
}

.contact-form {
	display: grid;
	gap: 10px;
}

.contact-form label {
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.04);
	border-radius: 10px;
	padding: 11px 12px;
	color: var(--text-light);
	font-size: 14px;
	outline: none;
	transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: rgba(243, 156, 18, 0.55);
	background: rgba(255, 255, 255, 0.06);
}

.contact-form textarea {
	resize: vertical;
	min-height: 130px;
}

.contact-submit-btn {
	margin-top: 6px;
	border: 1px solid rgba(243, 156, 18, 0.45);
	background: linear-gradient(135deg, #f39c12, #e67e22);
	color: #131313;
	font-weight: 700;
	font-size: 14px;
	border-radius: 10px;
	padding: 11px 14px;
	cursor: pointer;
	transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.contact-submit-btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.04);
	box-shadow: 0 10px 20px rgba(243, 156, 18, 0.2);
}

.map-embed-wrap {
	margin-top: 10px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.map-embed-wrap iframe {
	display: block;
	width: 100%;
	height: 340px;
	border: 0;
}

.form-popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(5, 5, 5, 0.7);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 1600;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.form-popup-overlay.visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.form-popup {
	position: relative;
	width: min(420px, 100%);
	background: linear-gradient(145deg, rgba(20, 20, 20, 0.98), rgba(12, 12, 12, 0.98));
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 16px;
	padding: 20px 18px 16px;
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
	transform: translateY(10px) scale(0.98);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-popup-overlay.visible .form-popup {
	transform: translateY(0) scale(1);
}

.form-popup.error {
	border-color: rgba(231, 76, 60, 0.55);
}

.form-popup.success {
	border-color: rgba(46, 204, 113, 0.5);
}

.form-popup-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.85);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease;
}

.form-popup-close:hover {
	background: rgba(255, 255, 255, 0.12);
}

.form-popup-title {
	margin: 0 0 10px;
	padding-right: 38px;
	font-size: 34px;
	line-height: 1.15;
	color: var(--text-light);
}

.form-popup-message {
	margin: 0;
	color: var(--text-gray);
	line-height: 1.65;
	font-size: 14px;
}

.form-popup-message ul {
	margin: 8px 0 0;
	padding-left: 18px;
}

.form-popup-message li {
	margin: 2px 0;
}

.form-popup-action {
	margin-top: 16px;
	border: 1px solid rgba(243, 156, 18, 0.45);
	background: linear-gradient(135deg, #f39c12, #e67e22);
	color: #131313;
	font-weight: 700;
	font-size: 14px;
	border-radius: 11px;
	padding: 10px 18px;
	cursor: pointer;
}

/* Services Section */
.services-section {
	padding: 100px 30px;
	background: var(--primary-dark);
}

.services-container {
	max-width: 1200px;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.service-card {
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.9));
	padding: 40px 30px;
	border-radius: 12px;
	text-align: center;
	display: flex;
	flex-direction: column;
	transition: all 0.4s ease;
	border: 1px solid rgba(255, 255, 255, 0.03);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.service-card:hover::before {
	opacity: 0.05;
}

.service-card:hover {
	transform: translateY(-10px);
	border-color: rgba(243, 156, 18, 0.3);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 1));
}

.service-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.05));
	border-radius: 50%;
	transition: all 0.4s ease;
}

.service-card:hover .service-icon {
	transform: scale(1.1);
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.15), rgba(243, 156, 18, 0.1));
}

.service-icon svg {
	width: 30px;
	height: 30px;
	fill: var(--accent-color);
}

.service-title {
	font-size: 1.5rem;
	margin-bottom: 18px;
	font-weight: 700;
	color: var(--text-light);
	letter-spacing: -0.5px;
}

.service-card-image {
	width: calc(100% + 60px);
	height: 190px;
	margin: -40px -30px 22px;
	object-fit: cover;
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-description {
	color: var(--text-gray);
	line-height: 1.8;
	font-size: 17px;
	margin-bottom: 25px;
}

.service-price {
	font-size: 13px;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
}

.service-learn-btn {
	display: inline-block;
	margin-top: auto;
	padding: 10px 14px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4px;
	color: #121212;
	background: linear-gradient(135deg, #f39c12, #e67e22);
	border: 1px solid rgba(243, 156, 18, 0.5);
	transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.service-learn-btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.04);
	box-shadow: 0 10px 20px rgba(243, 156, 18, 0.2);
}

.service-detail-hero {
	margin-bottom: 18px;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.03);
}

.service-detail-hero img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
}

.service-detail-hero-content {
	padding: 16px;
}

.service-detail-hero-content h2 {
	margin: 0 0 8px;
	font-size: 24px;
	color: var(--text-light);
}

.service-detail-hero-content p {
	margin: 0;
	color: var(--text-gray);
	line-height: 1.75;
}

/* Contact Section */
.contact-section {
	padding: 100px 30px;
	background: var(--secondary-dark);
}

.contact-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.contact-item {
	display: block;
	padding: 30px;
	background: linear-gradient(135deg, rgba(21, 21, 21, 0.9), rgba(15, 15, 15, 1));
	border-radius: 12px;
	transition: all 0.4s ease;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.05);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.contact-item::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.contact-item:hover::before {
	opacity: 0.08;
}

.contact-item:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
	border-color: rgba(243, 156, 18, 0.3);
}

.contact-icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.05));
	border-radius: 50%;
	transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
	transform: rotate(5deg) scale(1.1);
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.2), rgba(243, 156, 18, 0.1));
}

.contact-icon svg {
	width: 24px;
	height: 24px;
	fill: var(--accent-color);
}

.contact-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-gray);
	margin-bottom: 10px;
}

.contact-value {
	color: var(--text-light);
	font-size: 16px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item:hover .contact-value {
	color: var(--accent-color);
}

/* Footer */
footer {
	background:
		linear-gradient(145deg, rgba(12, 12, 12, 0.97), rgba(20, 20, 20, 0.96)),
		var(--primary-dark);
	padding: 60px 30px 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 30px;
	backdrop-filter: blur(6px);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 28px;
	align-items: start;
}

.footer-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-logo {
	width: 165px;
	height: auto;
	display: block;
	transition: transform 0.35s ease, filter 0.35s ease;
	transform-origin: left center;
}

.footer-logo-link {
	display: inline-block;
	width: fit-content;
}

.footer-logo:hover {
	transform: translateY(-2px) scale(1.03);
	filter: drop-shadow(0 10px 18px rgba(243, 156, 18, 0.22));
}

.footer-description {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.7;
	font-size: 14px;
	max-width: 420px;
}

.footer-title {
	margin: 0 0 4px;
	font-size: 17px;
	font-weight: 700;
	color: var(--text-light);
	letter-spacing: 0.3px;
}

.footer-line {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.65;
}

.footer-link {
	color: var(--accent-color);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: opacity 0.25s ease;
}

.footer-link:hover {
	opacity: 0.85;
}

.footer-bottom {
	margin: 24px 0 0;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.58);
	font-size: 14px;
	line-height: 1.6;
	text-align: center;
}

.footer-bottom p {
	margin: 0;
}

.footer-legal-links {
	margin-top: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-size: 13px;
}

.footer-legal-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.25s ease;
}

.footer-legal-links a:hover {
	color: var(--accent-color);
}

.footer-legal-links span {
	color: rgba(255, 255, 255, 0.35);
}

/* Scroll To Top Button */
.scroll-top-btn {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	background: linear-gradient(145deg, rgba(243, 156, 18, 0.95), rgba(230, 126, 34, 0.9));
	color: #141414;
	font-size: 24px;
	font-weight: 800;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
	box-shadow:
		0 10px 24px rgba(0, 0, 0, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(0, 14px, 0) scale(0.96);
	transition:
		opacity 0.24s ease,
		visibility 0.24s ease,
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.25s ease,
		filter 0.25s ease;
	z-index: 1200;
}

.scroll-top-btn.visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(0, 0, 0) scale(1);
}

.scroll-top-btn:hover {
	transform: translate3d(0, -2px, 0) scale(1.03);
	box-shadow:
		0 16px 32px rgba(243, 156, 18, 0.32),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	filter: brightness(1.04);
}

.scroll-top-btn:active {
	transform: translate3d(0, 0, 0) scale(0.98);
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 1300;
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, 16px, 0);
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s ease;
}

.cookie-banner.visible {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
	pointer-events: auto;
}

.cookie-content {
	max-width: 980px;
	margin: 0 auto;
	background: linear-gradient(135deg, rgba(18, 18, 18, 0.96), rgba(28, 28, 28, 0.94));
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	padding: 16px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	backdrop-filter: blur(10px);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.cookie-text {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	line-height: 1.5;
}

.cookie-message {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cookie-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	background: rgba(243, 156, 18, 0.16);
	border: 1px solid rgba(243, 156, 18, 0.35);
	flex-shrink: 0;
}

.cookie-icon-img {
	width: 18px;
	height: 18px;
	display: block;
	fill: #f39c12;
}

.cookie-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.cookie-btn {
	border-radius: 10px;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4px;
	cursor: pointer;
	transition: all 0.25s ease;
	border: 1px solid transparent;
}

.cookie-btn-secondary {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.9);
	border-color: rgba(255, 255, 255, 0.18);
}

.cookie-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.14);
}

.cookie-btn-primary {
	background: linear-gradient(135deg, #f39c12, #e67e22);
	color: #121212;
	border-color: rgba(243, 156, 18, 0.5);
}

.cookie-btn-primary:hover {
	filter: brightness(1.05);
	box-shadow: 0 10px 24px rgba(243, 156, 18, 0.28);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background: rgba(10, 10, 10, 0.96);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 22px 16px 28px;
		gap: 12px;
		border-radius: 0;
		border: 0;
		box-shadow: none;
		backdrop-filter: blur(12px);
	}

	.nav-menu li:not(:last-child)::after {
		display: none;
	}

	.has-dropdown .dropdown-menu {
		position: static;
		min-width: min(320px, 100%);
		max-width: min(320px, 100%);
		width: min(320px, 100%);
		margin-top: 0;
		padding: 0;
		border-radius: 10px;
		border: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: block;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s ease, margin-top 0.2s ease, border-color 0.2s ease;
	}

	.has-dropdown {
		flex-direction: column;
		align-items: center;
		width: min(320px, 100%);
		margin: 0 auto;
	}

	.has-dropdown>a {
		position: relative;
		padding-right: 42px;
		inline-size: 100%;
		box-sizing: border-box;
	}

	.has-dropdown>a::after {
		content: '▾';
		position: absolute;
		right: 16px;
		top: 50%;
		transform: translateY(-50%);
		color: rgba(255, 255, 255, 0.75);
		font-size: 14px;
		transition: transform 0.2s ease;
	}

	.has-dropdown.open>a::after {
		transform: translateY(-50%) rotate(180deg);
	}

	.has-dropdown.open .dropdown-menu {
		max-height: 420px;
		margin-top: 8px;
		padding: 6px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		background: rgba(255, 255, 255, 0.03);
		border-color: rgba(255, 255, 255, 0.1);
	}

	.dropdown-menu a {
		font-size: 14px;
		padding: 10px 12px;
		border-radius: 8px;
		text-align: left;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.dropdown-menu a:hover {
		background: rgba(243, 156, 18, 0.15);
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu a {
		padding: 12px 20px;
		display: block;
		font-size: 16px;
		inline-size: 100%;
		box-sizing: border-box;
		margin: 0;
	}

	.nav-menu li {
		width: min(320px, 100%);
		margin: 0 auto;
	}

	.menu-toggle {
		display: flex;
	}

	.menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}

	.scroll-top-btn {
		right: 16px;
		bottom: 16px;
		width: 48px;
		height: 48px;
		font-size: 22px;
	}

	.cookie-banner {
		left: 14px;
		right: 14px;
		bottom: 14px;
	}

	.footer-content {
		padding: 24px 18px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.footer-logo {
		width: 150px;
	}

	.cookie-content {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 14px;
	}

	.cookie-message {
		align-items: flex-start;
	}

	.cookie-actions {
		width: 100%;
	}

	.cookie-btn {
		flex: 1;
	}

	.coverflow-container {
		height: clamp(280px, 40vh, 350px);
	}

	.coverflow-item {
		width: clamp(170px, 22vh, 220px);
		height: clamp(230px, 30vh, 300px);
	}

	.about-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.advantages-section {
		padding: 80px 20px;
	}

	.advantage-item {
		padding: 0 16px;
	}

	.advantage-item summary {
		font-size: 16px;
		padding: 16px 30px 16px 0;
	}

	.privacy-page {
		padding: 105px 20px 80px;
	}

	.privacy-highlights {
		grid-template-columns: 1fr;
	}

	.privacy-block {
		padding: 16px;
	}

	.privacy-block h2 {
		font-size: 18px;
	}

	.process-page {
		padding: 105px 20px 80px;
	}

	.process-feature-grid {
		grid-template-columns: 1fr;
	}

	.process-tab-buttons {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.process-tab-panel {
		grid-template-columns: 1fr;
	}

	.process-tab-image {
		min-height: 220px;
	}

	.about-page-rich {
		padding: 105px 20px 80px;
	}

	.about-story-grid,
	.about-deep-section {
		grid-template-columns: 1fr;
	}

	.about-pillars {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-story-image {
		height: 210px;
	}

	.about-final-image {
		height: 240px;
	}

	.contact-extras {
		grid-template-columns: 1fr;
	}

	.map-embed-wrap iframe {
		height: 280px;
	}

	.stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.stat-number {
		font-size: 1.8rem;
	}

	.contact-info {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.coverflow-container {
		height: clamp(250px, 38vh, 320px);
	}

	.coverflow-item {
		width: clamp(150px, 20vh, 200px);
		height: clamp(200px, 28vh, 280px);
	}

	.portfolio-overlay {
		padding: 20px;
	}

	.portfolio-title {
		font-size: 18px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.service-card-image {
		height: 180px;
	}

	.service-detail-hero img {
		height: 230px;
	}
}

/* Loading Animation */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.55s ease;
}

.loading-screen.hidden {
	opacity: 0;
	pointer-events: none;
}

.loader-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.loader-orb {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at 30% 30%, rgba(243, 156, 18, 0.35), rgba(243, 156, 18, 0.12));
	border: 1px solid rgba(243, 156, 18, 0.45);
	box-shadow:
		0 0 0 8px rgba(243, 156, 18, 0.08),
		0 16px 35px rgba(0, 0, 0, 0.4);
	animation: loaderPulse 1.9s ease-in-out infinite;
}

.loader-logo {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	object-fit: contain;
	animation: loaderFloat 2.2s ease-in-out infinite;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.loader-text {
	font-size: 12px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
	font-weight: 600;
}

@keyframes loaderPulse {
	0%, 100% {
		transform: scale(1);
		box-shadow:
			0 0 0 8px rgba(243, 156, 18, 0.08),
			0 16px 35px rgba(0, 0, 0, 0.4);
	}

	50% {
		transform: scale(1.05);
		box-shadow:
			0 0 0 12px rgba(243, 156, 18, 0.12),
			0 18px 38px rgba(0, 0, 0, 0.45);
	}
}

@keyframes loaderFloat {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-3px);
	}
}

/* Smooth Reveal Animations */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}