/*
 * art-ist.com.tr Custom Design Stylesheet
 * Crafted by Antigravity for art-ist (Hakan Salih)
 */

/* ==========================================================================
   1. DESIGN VARIABLES & TOKENS
   ========================================================================== */
:root {
	/* Colors */
	--bg-white: #ffffff;
	--bg-offwhite: #f8f8fa;
	--bg-black: #0a0a0c;
	--bg-dark-gray: #121215;
	
	--text-dark: #0e0e10;
	--text-muted: #6e6e73;
	--text-light: #f5f5f7;
	--text-light-muted: #86868b;
	
	--accent-red: #c81d25; /* Exact red from logo */
	--accent-red-hover: #b11a21;
	
	--border-light: #e5e5e7;
	--border-dark: #2c2c32;
	
	/* Typography */
	--font-display: 'Jost', sans-serif;
	--font-body: 'Inter', sans-serif;
	
	/* Layouts */
	--header-height: 90px;
	--header-height-scrolled: 75px;
	--transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-fast: all 0.2s ease-out;
}

/* ==========================================================================
   2. RESET & GLOBAL STYLES
   ========================================================================== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	user-select: none;
}

html {
	scroll-behavior: smooth;
	background-color: var(--bg-white);
	color: var(--text-dark);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	
	/* Hide scrollbar for Firefox and IE/Edge globally */
	scrollbar-width: none;
	-ms-overflow-style: none;
}

/* Hide scrollbar globally for Chrome, Safari, Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
	display: none;
}

body {
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Hide default cursor on desktop when custom cursor is active */
@media (min-width: 1025px) {
	body.has-custom-cursor {
		cursor: none;
	}
	body.has-custom-cursor a,
	body.has-custom-cursor button,
	body.has-custom-cursor input,
	body.has-custom-cursor select,
	body.has-custom-cursor textarea,
	body.has-custom-cursor .service-card,
	body.has-custom-cursor .artist-slide {
		cursor: none;
	}
}

.ani{
  opacity: 0;
  animation: o-ani linear forwards;
  animation-range: 100px 300px;
  animation-timeline: view();
  @media(max-width:1280px){
    animation-range: 100px 200px;
  }
}
@keyframes o-ani {
  to{
    opacity: 1;
  }
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-fast);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul, ol {
	list-style: none;
}

button, input, select, textarea {
	font-family: inherit;
	font-size: inherit;
	background: none;
	border: none;
	outline: none;
}

/* Common Layout Container */
.container {
	width: 100%;
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 2rem;
	padding-right: 2rem;
}

@media (max-width: 768px) {
	.container {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}

/* Grids */
.grid-layout {
	display: grid;
	gap: 3rem;
}

.bg-alt {
	background-color: var(--bg-offwhite);
}

/* ==========================================================================
   3. TYPOGRAPHY UTILITIES
   ========================================================================== */
.section-tag {
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: var(--accent-red);
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.section-tag.tag-white {
	color: var(--bg-white);
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--text-dark);
	letter-spacing: -0.02em;
	margin-bottom: 2.5rem;
	@media(max-width:640px){
		margin-bottom: 1rem;
	}
}

.section-title.text-white {
	color: var(--bg-white);
}

.section-title-large {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 3.5rem;
}

/* ==========================================================================
   4. CUSTOM MOUSE CURSOR
   ========================================================================== */
.custom-cursor {
	width: 8px;
	height: 8px;
	background-color: var(--accent-red);
	border-radius: 50%;
	position: fixed;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 10000;
	transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-follower {
	width: 40px;
	height: 40px;
	border: 1px solid var(--text-dark);
	border-radius: 50%;
	position: fixed;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 9999;
	transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
	            height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
	            border-color 0.3s, 
	            background-color 0.3s;
}

/* Cursor Hover State */
.custom-cursor.cursor-hover {
	width: 12px;
	height: 12px;
	background-color: var(--text-dark);
}

.custom-cursor-follower.cursor-follower-hover {
	width: 60px;
	height: 60px;
	border-color: var(--accent-red);
	background-color: rgba(200, 29, 37, 0.05);
}

/* Drag State for Carousel */
.custom-cursor-follower.cursor-drag {
	width: 80px;
	height: 80px;
	border-color: var(--bg-white);
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-cursor-follower.cursor-drag::after {
	content: attr(data-label);
	font-family: var(--font-body);
	font-size: 0.65rem;
	font-weight: 700;
	color: var(--bg-white);
	letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
	.custom-cursor, .custom-cursor-follower {
		display: none !important;
	}
}

/* ==========================================================================
   5. LOGO IMAGE STYLING
   ========================================================================== */
.header-logo {
	max-width: 200px;
	height: auto;
	display: block;
	transition: max-width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-header.header-scrolled .header-logo {
	max-width: 160px;
}

.hero-logo {
	max-width: 250px;
	height: auto;
	display: block;
	margin: 0 auto;
	opacity: 0;
	animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
	transition: max-width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-logo {
	max-width: 180px;
	height: auto;
	display: block;
	margin-bottom: 1.5rem;
	transition: max-width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Mobile responsive logo adjustments */
@media (max-width: 768px) {
	.header-logo {
		max-width: 150px;
	}
	.main-header.header-scrolled .header-logo {
		max-width: 130px;
	}
	.hero-logo {
		max-width: 200px;
	}
	.footer-logo {
		max-width: 140px;
	}
}

/* ==========================================================================
   6. HEADER & STICKY NAVBAR
   ========================================================================== */
.main-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	z-index: 1100;
	display: flex;
	align-items: center;
	border-bottom: 1px solid transparent;
	transition: var(--transition-smooth);
	background-color: transparent;
}

body.menu-open .main-header {
	background-color: var(--bg-white);
	border-bottom: 1px solid var(--border-light);
}

body.menu-open {
	overflow: hidden;
}

.header-container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 2rem;
	padding-right: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.main-header.header-scrolled {
	height: var(--header-height-scrolled);
	background-color: rgba(255, 255, 255, 1);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.10);
}

.header-left {
	display: flex;
	align-items: center;
	gap: 3.5rem;
}

.header-actions {
	display: flex;
	align-items: center;
}

.header-contacts {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	transition: opacity 0.3s ease;
}

.header-contact-link {
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--text-dark);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	transition: color 0.3s ease;
}

.header-contact-link svg {
	color: var(--accent-red);
}

.header-contact-link:hover {
	color: var(--accent-red);
}

/* Fade out header contacts when menu popup is open */
body.menu-open .header-contacts {
	opacity: 0;
	pointer-events: none;
}

@media (max-width: 991px) {
	.header-contacts {
		display: none;
	}
}

/* Fullscreen Menu Toggle Trigger - Premium Minimalist Button with Text */
.mobile-menu-toggle {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	z-index: 1200;
	background: transparent;
	border: none;
	padding: 0;
	outline: none;
}

.menu-toggle-text {
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: var(--text-dark);
	text-transform: uppercase;
	transition: color 0.3s ease, transform 0.3s ease;
}

.menu-toggle-text::before {
	content: 'MENÜ';
}

.mobile-menu-toggle.active .menu-toggle-text::before {
	content: 'KAPAT';
}

/* Burger lines wrapper */
.mobile-menu-toggle .burger-lines {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 28px;
	height: 20px;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-toggle .burger-lines span {
	display: block;
	height: 3px;
	background-color: var(--text-dark);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border-radius: 3px;
}

/* Asymmetric line widths */
.mobile-menu-toggle .bar-top {
	width: 100%;
}

.mobile-menu-toggle .bar-middle {
	width: 70%;
	margin-left: auto; /* Aligns middle bar to the right */
}

.mobile-menu-toggle .bar-bottom {
	width: 100%;
}

/* Hover Effects */
.mobile-menu-toggle:hover .bar-middle {
	width: 100%; /* Expands to full width on hover */
}

.mobile-menu-toggle:hover .menu-toggle-text {
	color: var(--accent-red);
}

.mobile-menu-toggle:hover .burger-lines span {
	background-color: var(--accent-red);
}

.mobile-menu-toggle:hover .burger-lines {
	transform: scale(1.08);
}

/* Active State (Morph to 'X') */
.mobile-menu-toggle.active .burger-lines {
	transform: rotate(90deg); /* Rotate only the lines wrapper, keeping the text upright */
}

.mobile-menu-toggle.active .burger-lines span {
	background-color: var(--text-dark);
}

.mobile-menu-toggle.active .bar-top {
	transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle.active .bar-middle {
	opacity: 0;
	transform: translateX(10px);
}

.mobile-menu-toggle.active .bar-bottom {
	transform: translateY(-8.5px) rotate(-45deg);
}

/* ==========================================================================
   Fullscreen Navigation Menu Overlay
   ========================================================================== */
.fullscreen-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1050;
	visibility: hidden;
	pointer-events: none;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	/* Delay hiding until slide-out transition finishes (0.65s) */
	transition: visibility 0s 0.65s;
	
	/* Hide scrollbar for Firefox and IE/Edge */
	scrollbar-width: none;
	-ms-overflow-style: none;
}

/* Hide scrollbar for Chrome, Safari, Opera */
.fullscreen-menu-overlay::-webkit-scrollbar {
	display: none;
}

/* Background panel that slides in/out - fixed so it covers screen during scroll */
.menu-overlay-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bg-white);
	transform: translateX(100%);
	transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Active State for Overlay & Background */
body.menu-open .fullscreen-menu-overlay {
	visibility: visible;
	pointer-events: auto;
	/* Apply visibility instantly when opening */
	transition: visibility 0s 0s;
}

body.menu-open .menu-overlay-bg {
	transform: translateX(0);
}

/* Content Container Grid */
.menu-content-container {
	position: relative;
	z-index: 2;
	width: 100%;
	min-height: 100%;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	align-items: center;
	padding: 8% 8%;
	opacity: 0;
	transition: opacity 0.4s ease;
}

body.menu-open .menu-content-container {
	opacity: 1;
	transition-delay: 0.25s;
}

/* Left Column: Navigation */
.menu-nav-side {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.fullscreen-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.fs-nav-item {
	display: flex;
	align-items: center;
	overflow: visible; /* Let numbers scale and rotate freely */
	
	/* Stagger entrance state */
	transform: translateY(100px);
	opacity: 0;
	transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s ease;
}

body.menu-open .fs-nav-item {
	transform: translateY(0);
	opacity: 1;
}

.fs-nav-number {
	font-family: var(--font-body);
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	font-weight: 500;
	color: var(--accent-red);
	margin-right: 1.2rem;
	display: inline-block;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fs-nav-link {
	display: inline-block;
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 4vw, 3.75rem);
	font-weight: 900;
	text-decoration: none;
	line-height: 1.1;
	letter-spacing: -0.02em;
	padding-bottom: 6px;
	
	/* Liquid color wipe gradient */
	background: linear-gradient(to right, var(--accent-red) 50%, var(--text-dark) 50%);
	background-size: 200% 100%;
	background-position: 100% 0;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	
	transition: background-position 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover States - triggered on whole list item hover */
.fs-nav-item:hover .fs-nav-link {
	background-position: 0 0;
	transform: translateX(20px);
}

.fs-nav-item:hover .fs-nav-number {
	transform: translateX(-8px) rotate(-15deg) scale(1.1);
}

/* Right Column: Info & Contacts */
.menu-info-side {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	padding-left: 10%;
	border-left: 1px solid var(--border-light);
	justify-content: center;
	height: 60%;
}

.menu-info-block {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	
	/* Stagger entrance state */
	transform: translateY(30px);
	opacity: 0;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

body.menu-open .menu-info-block {
	transform: translateY(0);
	opacity: 1;
}

body.menu-open .menu-info-block:nth-child(1) { transition-delay: 0.5s; }
body.menu-open .menu-info-block:nth-child(2) { transition-delay: 0.58s; }
body.menu-open .menu-info-block:nth-child(3) { transition-delay: 0.66s; }

.info-label {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--text-muted);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.info-value {
	font-family: var(--font-display);
	font-size: clamp(1.1rem, 2vw, 1.6rem);
	font-weight: 700;
	color: var(--text-dark);
	text-decoration: none;
	transition: color 0.3s ease;
}

.info-value:hover {
	color: var(--accent-red);
}

.info-value-text {
	font-family: var(--font-body);
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	color: var(--text-dark);
	font-weight: 500;
}

/* Social links list on right side */
.fs-social-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.fs-social-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-body);
	font-size: clamp(0.95rem, 1.6vw, 1.15rem);
	font-weight: 500;
	color: var(--text-dark);
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease;
}

.fs-social-links a svg {
	color: var(--accent-red);
}

.fs-social-links a:hover {
	color: var(--accent-red);
	transform: translateX(8px);
}

/* Breakpoints for Navigation */
@media (max-width: 991px) {
	.header-container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.menu-content-container {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		gap: 3rem;
		align-content: center;
		padding: 120px 2.5rem 3rem 2.5rem;
	}
	
	.menu-info-side {
		padding-left: 0;
		border-left: none;
		border-top: 1px solid var(--border-light);
		padding-top: 2rem;
		height: auto;
		gap: 1.5rem;
	}
	
	.fs-social-links {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 1.5rem;
	}
	
	.fs-social-links a {
		font-size: 1rem;
	}
}

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */
.hero-section {
	min-height: 100vh;
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	background-color: var(--bg-white);
	color: var(--text-dark);
	padding-top: var(--header-height);
	overflow: hidden;
	
	/* Unified Spotlight Radius using dynamic viewport units for fluid scaling */
	--spot-r: 15dvw;
}

/* Vertical Social Sidebar in Hero - Fixed to screen */
.hero-social-sidebar {
	position: fixed;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	z-index: 1000;
	transition: opacity 0.3s ease;
}

.hero-social-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(14, 14, 16, 0.18);
	background-color: #ffffff;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	color: var(--text-dark);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	text-decoration: none;
}

.hero-social-link svg {
	transition: transform 0.3s ease;
	width: 20px;
	height: 20px;
}

.hero-social-link:hover {
	color: var(--accent-red);
	border-color: var(--accent-red);
	background-color: var(--bg-white);
	box-shadow: 0 4px 15px rgba(224, 32, 32, 0.1);
}

.hero-social-link:hover svg {
	transform: scale(1.1);
}

.hero-social-sidebar.on-dark .hero-social-link {
	background-color: rgba(14, 14, 16, 0.65);
	border-color: rgba(255, 255, 255, 0.15);
	color: #ffffff;
}

.hero-social-sidebar.on-dark .hero-social-link:hover {
	background-color: var(--accent-red);
	border-color: var(--accent-red);
	color: #ffffff;
}

/* Tooltip styles */
.hero-social-link::after {
	content: attr(data-tooltip);
	position: absolute;
	left: 60px;
	top: 50%;
	transform: translateY(-50%) translateX(10px);
	background-color: var(--text-dark);
	color: var(--bg-white);
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 4px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Tooltip arrow pointing left */
.hero-social-link::before {
	content: '';
	position: absolute;
	left: 54px;
	top: 50%;
	transform: translateY(-50%) translateX(10px);
	border-width: 6px 6px 6px 0;
	border-style: solid;
	border-color: transparent var(--text-dark) transparent transparent;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-social-link:hover::after,
.hero-social-link:hover::before {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

/* Hide fixed sidebar when fullscreen menu popup is open */
body.menu-open .hero-social-sidebar {
	opacity: 0;
	pointer-events: none;
}

/* Hide on mobile/tablet viewports globally */
@media (max-width: 991px) {
	.hero-social-sidebar {
		display: none !important;
	}
}

/* Animated Grid & Waves Background in Hero */
.hero-bg-animated {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	pointer-events: none;
	background: #ffffff;
}

/* Background Image Reveal Spotlight Layer (Soft-edged Mask) */
.hero-bg-image-reveal {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 2;
	pointer-events: none;
	
	/* Sharp circle clip path tracking mouse coordinates */
	clip-path: circle(0px at var(--mx, 50%) var(--my, 50%));
	opacity: 0;
	transition: opacity 0.3s ease-out, clip-path 0s 0.3s;
}

/* Hover: reveal spotlight smoothly and animate the radius continuously */
.hero-section.hovered:not(.over-text) .hero-bg-image-reveal {
	opacity: 1;
	animation: breatheBgSpotlight 4s infinite ease-in-out;
	transition: opacity 0.15s ease-in;
}

/* Exit/Hide states: fade out smoothly and reset */
.hero-section:not(.hovered) .hero-bg-image-reveal,
.hero-section.over-text .hero-bg-image-reveal {
	clip-path: circle(0px at var(--mx, 50%) var(--my, 50%));
	opacity: 0;
	animation: none;
	transition: opacity 0.4s ease-out, clip-path 0s 0.4s;
}

@keyframes breatheBgSpotlight {
	0%, 100% {
		clip-path: circle(var(--spot-r, 300px) at var(--mx, 50%) var(--my, 50%));
	}
	50% {
		clip-path: circle(calc(var(--spot-r, 300px) * 1.15) at var(--mx, 50%) var(--my, 50%));
	}
}

.grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(14, 14, 16, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(14, 14, 16, 0.02) 1px, transparent 1px);
	background-size: 60px 60px;
	background-position: center;
}

.hero-svg-waves {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.8;
}

.wave-path {
	fill: none;
	stroke-width: 1.5px;
}

.path-1 {
	stroke: rgba(200, 29, 37, 0.22); /* light brand red */
	stroke-dasharray: 2000;
	stroke-dashoffset: 2000;
	animation: drawLine 8s cubic-bezier(0.25, 1, 0.5, 1) forwards, floatWave1 15s infinite alternate ease-in-out 8s;
}

.path-2 {
	stroke: rgba(14, 14, 16, 0.16); /* light gray */
	stroke-dasharray: 2000;
	stroke-dashoffset: 2000;
	animation: drawLine 10s cubic-bezier(0.25, 1, 0.5, 1) forwards, floatWave2 20s infinite alternate ease-in-out 10s;
}

.path-3 {
	stroke: rgba(200, 29, 37, 0.14); /* extra light brand red */
	stroke-dasharray: 2000;
	stroke-dashoffset: 2000;
	animation: drawLine 7s cubic-bezier(0.25, 1, 0.5, 1) forwards, floatWave3 12s infinite alternate ease-in-out 7s;
}

@keyframes drawLine {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes floatWave1 {
	0% {
		transform: translateY(-20px) scaleY(0.9);
	}
	100% {
		transform: translateY(20px) scaleY(1.1);
	}
}

@keyframes floatWave2 {
	0% {
		transform: translateY(15px) scaleY(1.05) rotate(0.5deg);
	}
	100% {
		transform: translateY(-15px) scaleY(0.95) rotate(-0.5deg);
	}
}

@keyframes floatWave3 {
	0% {
		transform: translateY(-10px) translateX(-20px);
	}
	100% {
		transform: translateY(10px) translateX(20px);
	}
}

/* Pulsing Glow Dots */
.glow-dot {
	position: absolute;
	width: 6px;
	height: 6px;
	background-color: var(--accent-red);
	border-radius: 50%;
	opacity: 0;
	animation: pulseDot 5s infinite ease-in-out;
}

.dot-1 {
	top: 35%;
	left: 25%;
	animation-delay: 2s;
}

.dot-2 {
	top: 75%;
	left: 85%;
	animation-delay: 4s;
}

.dot-3 {
	top: 50%;
	left: 60%;
	animation-delay: 3s;
}

@keyframes pulseDot {
	0%, 100% {
		transform: scale(1);
		opacity: 0.2;
		box-shadow: 0 0 10px 2px var(--accent-red);
	}
	50% {
		transform: scale(1.5);
		opacity: 0.8;
		box-shadow: 0 0 20px 5px var(--accent-red);
	}
}

.hero-container-inner {
	position: relative;
	z-index: 3;
	width: 100%;
	min-height: calc(100vh - var(--header-height));
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-content {
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero-title-animated {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5.8vw, 4.4rem);
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--text-dark);
	text-align: left;
	opacity: 0; /* Hidden initially to prevent Flash of Unstyled Content (FOUC) */
	transition: opacity 0.2s ease-in;
	position: relative;
}

.hero-title-animated.ready {
	opacity: 1;
}

/* Flex Column to Stack Links Vertically */
.hero-title-animated .title-underlay,
.hero-title-animated .title-overlay {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	width: 100%;
}

.hero-title-animated a.hero-link {
	display: block;
	text-decoration: none;
	width: fit-content;
	position: relative;
	padding: 0.35em 0.6em 0.35em 70px; /* Increased vertical padding to make link boundaries touch, preventing hover state loss during transitions */
	z-index: 1;
}

/* Custom Drawn Red Line Indicator (Stable, solid red, sits on top of text) */
.hero-title-animated a.hero-link::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0; /* starts at 0 for entrance animation */
	height: 5.5px; /* Thicker for a solid, prominent geometric look */
	background-color: var(--accent-red); /* Solid brand red, no opacity */
	pointer-events: none;
	z-index: 2; /* Sits on top of the text and sliding block */
	transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1); /* 0.5s leave speed */
}

/* Entrance animation: draw lines smoothly from width 0 to 35px after words slide up */
.hero-title-animated.ready a.hero-link::before {
	animation: drawLineEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

@keyframes drawLineEntrance {
	from {
		width: 0;
	}
	to {
		width: 35px;
	}
}

/* Hover: stretch the line so it slides over the text link (Disable animation forwards override) */
.hero-title-animated a.hero-link.link-hovered::before,
.hero-title-animated a.hero-link:hover::before {
	animation: none !important;
	width: 75px !important;
	transition: width 0.75s cubic-bezier(0.16, 1, 0.3, 1); /* slower 0.75s entry speed */
}

/* Sliding Black Background Block (Expands left-to-right, retracts right-to-left) */
.hero-title-animated a.hero-link::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 52px; /* starts right after the red line spacing gap */
	right: 0;
	background-color: var(--bg-black);
	z-index: -1;
	border-radius: 4px;
	
	/* Default state: scale to 0, anchor to left (retracts back to the left on leave) */
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title-animated a.hero-link.link-hovered::after {
	/* Hover state: scale to 1 (slower transition for entry) */
	transform: scaleX(1);
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title-animated .word-wrapper {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
	cursor: pointer;
}

.hero-title-animated .word {
	display: inline-block;
	transform: translateY(115%);
	opacity: 0;
	animation: slideUpWord 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Solid Faint Underlay (Default State) */
.hero-title-animated .title-underlay .word {
	color: var(--text-dark);
	opacity: 0.25; /* Elegant faint gray */
	transition: color 0.3s ease, opacity 0.3s ease;
}

/* Turn text white inside the hovered link (contrasts with the sliding black block) */
.hero-title-animated a.hero-link.link-hovered .word {
	color: #ffffff !important;
	opacity: 1 !important;
}

/* Solid Overlay (Spotlight Layer - Soft-edged Mask) */
.hero-title-animated .title-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none; /* Clicks pass through to underlay links */
	z-index: 2;
	
	/* Sharp circle clip path tracking mouse coordinates */
	clip-path: circle(0px at var(--mx, 50%) var(--my, 50%));
	opacity: 0;
	transition: opacity 0.3s ease-out, clip-path 0s 0.3s;
}

.hero-title-animated .title-overlay .word {
	color: #ffffff; /* Solid White when spotlight is over it (high contrast over the revealed photo background!) */
}

/* Hover: reveal text spotlight smoothly and animate the radius continuously */
.hero-section.hovered:not(.over-text) .title-overlay {
	opacity: 1;
	animation: breatheTextSpotlight 4s infinite ease-in-out;
	transition: opacity 0.15s ease-in;
}

/* Exit / Over-Text Hide states: remove animation, fade out */
.hero-section:not(.hovered) .title-overlay,
.hero-section.over-text .title-overlay {
	clip-path: circle(0px at var(--mx, 50%) var(--my, 50%));
	opacity: 0 !important;
	animation: none !important;
	transition: opacity 0.3s ease-out, clip-path 0s 0.3s;
}

@keyframes breatheTextSpotlight {
	0%, 100% {
		clip-path: circle(var(--spot-r, 300px) at var(--mx, 50%) var(--my, 50%));
	}
	50% {
		clip-path: circle(calc(var(--spot-r, 300px) * 1.15) at var(--mx, 50%) var(--my, 50%));
	}
}

@keyframes slideUpWord {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@media (max-width: 768px) {
	.hero-section {
		min-height: 80vh;
		--spot-r: 35dvw;
	}
}

/* ==========================================================================
   7b. HERO EDITORIAL BLOCK (Typographic tagline above animated title)
   ========================================================================== */
.hero-editorial-block {
	margin-bottom: 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	text-align: center;
	position: relative;
	padding: 8px;
    background: #fff;
}
/* ==========================================================================
   HERO ENTRANCE ANIMATIONS — cascade on page load
   ========================================================================== */

/* Shared keyframe — larger translateY so it's clearly visible */
@keyframes heroFadeUp {
	from {
		opacity: 0;
		transform: translateY(60px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* 2. Eyebrow "ile" */
.hero-eyebrow {
	display: none;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
	text-align: center;
	position: relative;
	z-index: 1;
	margin-top: 20px;

	opacity: 0;
	animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}


/* Animatable custom properties for gradient center — keeps red INSIDE element bounds */
@property --grad-x {
	syntax: '<percentage>';
	initial-value: 25%;
	inherits: false;
}

@property --grad-y {
	syntax: '<percentage>';
	initial-value: 15%;
	inherits: false;
}

/* ==========================================================================
   hero-display-title: flex column, each span is its OWN gradient + animation
   opacity works correctly because background-clip:text is ON the animated element
   ========================================================================== */
.hero-display-title {
	display: none;
	flex-direction: column;
	align-items: center;
	margin-bottom: 1.6rem;
	position: relative;
	z-index: 1;
	padding: 0 0.12em;
}

.hero-display-title > span {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(3.5rem, 8.5vw, 7.5rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 0.88;
	text-align: center;

	/* Applied to the single span covering all 3 lines */
	background: radial-gradient(
		circle 320px at var(--grad-x) var(--grad-y),
		#c81d25 0%,
		#8b1018 38%,
		#0e0e10 65%
	);
	background-size: 100% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	padding: 0 0.12em 0.05em;

	opacity: 0;

	/* Roaming animation and entrance slide */
	animation:
		moveGradX 8s ease-in-out infinite,
		moveGradY 8s ease-in-out infinite,
		heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-display-title > span {
	animation-delay: 0s, 0s, 1.05s;
}

@keyframes moveGradX {
	0%   { --grad-x: 25%; }
	20%  { --grad-x: 75%; }
	40%  { --grad-x: 60%; }
	60%  { --grad-x: 20%; }
	80%  { --grad-x: 78%; }
	100% { --grad-x: 25%; }
}

@keyframes moveGradY {
	0%   { --grad-y: 15%; }
	20%  { --grad-y: 10%; }
	40%  { --grad-y: 58%; }
	60%  { --grad-y: 84%; }
	80%  { --grad-y: 68%; }
	100% { --grad-y: 15%; }
}

.hero-display-title span em {
	font-style: italic;
	font-weight: 300;
}


.hero-descriptor {
	font-family: var(--font-body);
	font-size: clamp(0.9rem, 1.5vw, 1.05rem);
	font-weight: 400;
	color: var(--text-muted);
	max-width: 480px;
	line-height: 1.6;
	text-align: center;
	position: relative;
	z-index: 1;
	display: none;

	/* 6. Descriptor — last in the cascade */
	opacity: 0;
	animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.7s forwards;
}

@media (max-width: 768px) {
	.hero-editorial-block {
		margin-bottom: 2.5rem;
	}
	.hero-display-title span {
		font-size: clamp(3rem, 14vw, 5rem);
	}
	.hero-descriptor {
		font-size: 0.9rem;
	}
}

/* Editorial Spotlight: single overlay div covering .hero-display-title */

/* Base display title text — dark, always visible */
.hero-display-title > span {
	display: block;
	color: var(--text-dark);
	position: relative;
	z-index: 1;
}

/* The overlay div mirrors the display title, sits on top via absolute */
.editorial-title-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 2;

	/* Spotlight clip-path, collapsed by default */
	clip-path: circle(0px at var(--mx, 50%) var(--my, 50%));
	opacity: 0;
	transition: opacity 0.3s ease-out, clip-path 0s 0.3s;

	/* Mirror the flex layout of .hero-display-title */
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* Overlay text: white */
.editorial-title-overlay span {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(3.5rem, 8.5vw, 7.5rem);
	font-weight: 900;
	color: #ffffff;
	letter-spacing: -0.03em;
	line-height: 1.0;
	text-align: center;
}

.editorial-title-overlay span em {
	font-style: italic;
	font-weight: 300;
}

/* When hovered — breathe the spotlight open */
.hero-display-title.hovered .editorial-title-overlay {
	opacity: 1;
	animation: breatheEditorialSpotlight 4s infinite ease-in-out;
	transition: opacity 0.15s ease-in;
}

/* Exit: fade and collapse */
.hero-display-title:not(.hovered) .editorial-title-overlay {
	clip-path: circle(0px at var(--mx, 50%) var(--my, 50%));
	opacity: 0;
	animation: none;
	transition: opacity 0.4s ease-out, clip-path 0s 0.4s;
}

@keyframes breatheEditorialSpotlight {
	0%, 100% {
		clip-path: circle(var(--spot-r, 300px) at var(--mx, 50%) var(--my, 50%));
	}
	50% {
		clip-path: circle(calc(var(--spot-r, 300px) * 1.15) at var(--mx, 50%) var(--my, 50%));
	}
}


.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 1.1rem 2.2rem;
	background-color: var(--bg-black);
	color: var(--bg-white);
	border: 1px solid var(--bg-black);
	transition: var(--transition-smooth);
}

.btn-primary i {
	transition: var(--transition-fast);
}

.btn-primary:hover {
	background-color: var(--accent-red);
	border-color: var(--accent-red);
	color: var(--bg-white);
}

.btn-primary:hover i {
	transform: translateY(4px);
}

/* ==========================================================================
   8. ABOUT US SECTION
   ========================================================================== */
.about-section {
	/* Padding controlled by .page-section */
}

.about-grid {
	grid-template-columns: 5fr 7fr;
	align-items: start;
}

@media (max-width: 991px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.about-left .section-title {
	margin-bottom: 0;
	padding-right: 2rem;
}

.about-right .about-text-lead {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--text-dark);
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--border-light);
	padding-bottom: 2rem;
}

.about-right .about-text {
	font-size: 1.05rem;
	color: var(--text-muted);
	margin-bottom: 3rem;
	text-align: justify;
}

/* Stagger entrance animations triggered by section reveal */
.about-section .section-tag,
.about-section .about-left,
.about-section .about-text-lead,
.about-section .about-text,
.about-section .stat-item {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-section.revealed .section-tag {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.about-section.revealed .about-left {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

.about-section.revealed .about-text-lead {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.7s;
}

.about-section.revealed .about-text {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.85s;
}

.about-section.revealed .stat-item {
	opacity: 1;
	transform: translateY(0);
}

/* Stats Styling - Premium Grid Cards */
.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	border-top: 1px solid rgba(14, 14, 16, 0.08);
	padding-top: 3rem;
	margin-top: 3.5rem;
	width: 100%;
}

.stat-item {
	display: flex;
	flex-direction: column;
	background-color: rgba(14, 14, 16, 0.02); /* Soft grey card fill */
	border: 1px solid rgba(14, 14, 16, 0.05);
	border-radius: 12px;
	padding: 2.25rem 1.75rem;
	position: relative;
	overflow: hidden;
	transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: default;
}

/* Left accent red bar on hover */
.stat-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background-color: var(--accent-red);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effects */
.stat-item:hover {
	transform: translateY(-8px) !important;
	background-color: #ffffff;
	border-color: rgba(224, 32, 32, 0.15);
	box-shadow: 0 15px 35px rgba(224, 32, 32, 0.06);
}

.stat-item:hover::before {
	transform: scaleY(1);
	transform-origin: top;
}

.stat-number {
	font-family: var(--font-display);
	font-size: 3.8rem;
	font-weight: 800;
	line-height: 0.95;
	color: var(--text-dark);
	margin-bottom: 0.8rem;
	letter-spacing: -0.04em;
	transition: color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: inline-block;
	transform-origin: left;
}

.stat-item:hover .stat-number {
	color: var(--accent-red);
	transform: scale(1.03);
}

.stat-label {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	line-height: 1.4;
	transition: color 0.4s ease;
}

.stat-item:hover .stat-label {
	color: var(--text-dark);
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.about-stats {
		gap: 1.5rem;
		padding-top: 2rem;
		margin-top: 2.5rem;
	}
	
	.stat-number {
		font-size: 3.2rem;
	}
}

@media (max-width: 768px) {
	.about-stats {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
	
	.stat-item {
		padding: 1.75rem 1.5rem;
	}
}

/* ==========================================================================
   9. SERVICES OVERVIEW (Hizmetlerimiz Grid)
   ========================================================================== */
.services-section {
	position: relative;
	background-color: #0e0e10;
	overflow: hidden;
}

/* Background Reveal spotlight layers */
.services-bg-reveal {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 1;
	pointer-events: none;
}

.services-bg-reveal.bg-m {
	background: radial-gradient(circle at 15% 50%, rgba(224, 32, 32, 0.22), transparent 50%);
}

.services-bg-reveal.bg-p {
	background: radial-gradient(circle at 40% 50%, rgba(79, 70, 229, 0.22), transparent 50%);
}

.services-bg-reveal.bg-o {
	background: radial-gradient(circle at 65% 50%, rgba(6, 182, 212, 0.22), transparent 50%);
}

.services-bg-reveal.bg-y {
	background: radial-gradient(circle at 90% 50%, rgba(249, 115, 22, 0.22), transparent 50%);
}

/* Parent :has() hover switches for background spotlights */
.services-section:has(.card-m:hover) .bg-m { opacity: 1; }
.services-section:has(.card-p:hover) .bg-p { opacity: 1; }
.services-section:has(.card-o:hover) .bg-o { opacity: 1; }
.services-section:has(.card-y:hover) .bg-y { opacity: 1; }

.services-container-inner {
	position: relative;
	z-index: 2;
}

/* M-P-R-Y Grid layout */
.services-grid-mpry {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	margin-top: 4rem;
	width: 100%;
}

/* Asymmetric Masonry layout for desktop screens */
@media (min-width: 992px) {
	.services-grid-mpry .mpry-card:nth-child(even) {
		margin-top: 3.5rem;
	}
}

.mpry-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	position: relative;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.015);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 16px;
	padding: 3rem 2rem 2.5rem 2rem;
	transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.mpry-letter {
	font-family: var(--font-display);
	font-size: clamp(4rem, 6vw, 6.5rem);
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35); /* Transparent fill with outline stroke */
	line-height: 1;
	margin-bottom: 1.5rem;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	transform-origin: left;
	display: inline-block;
}

.mpry-title {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
	transition: color 0.4s ease;
}

.mpry-desc {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.6;
	transition: color 0.4s ease;
}

/* Card Hover Styles */
.mpry-card:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.mpry-card:hover .mpry-letter {
	transform: scale(1.06);
}

/* Outline letters fill in with colors and text shadow glow on hover */
.card-m:hover .mpry-letter { 
	color: rgba(224, 32, 32, 0.9); 
	-webkit-text-stroke-color: var(--accent-red); 
	text-shadow: 0 0 20px rgba(224, 32, 32, 0.3);
}
.card-p:hover .mpry-letter { 
	color: rgba(129, 140, 248, 0.9); 
	-webkit-text-stroke-color: #818cf8; 
	text-shadow: 0 0 20px rgba(129, 140, 248, 0.3);
}
.card-o:hover .mpry-letter { 
	color: rgba(6, 182, 212, 0.9); 
	-webkit-text-stroke-color: #06b6d4; 
	text-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}
.card-y:hover .mpry-letter { 
	color: rgba(249, 115, 22, 0.9); 
	-webkit-text-stroke-color: #f97316; 
	text-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.mpry-card:hover .mpry-title {
	color: #ffffff;
}

.mpry-card:hover .mpry-desc {
	color: rgba(255, 255, 255, 0.8);
}

/* Stagger entrance animations triggered by section reveal */
.services-section .section-tag,
.services-section .section-title-large,
.services-section .mpry-card {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-section.revealed .section-tag {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.services-section.revealed .section-title-large {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

.services-section.revealed .mpry-card {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.services-grid-mpry {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem;
	}
	
	.mpry-letter {
		font-size: 5.5rem;
	}
}

@media (max-width: 576px) {
	.services-grid-mpry {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.mpry-letter {
		font-size: 4.5rem;
		margin-bottom: 1rem;
	}
}

/* ==========================================================================
   10. SERVICE DETAILS (Menajerlik & Organizasyon)
   ========================================================================== */
.service-detail-section {
	/* Padding controlled by .page-section */
}

.detail-grid {
	grid-template-columns: 5fr 7fr;
	align-items: start;
}

@media (max-width: 991px) {
	.detail-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.detail-grid.layout-reverse {
		display: flex;
		flex-direction: column;
	}
}

@media (min-width: 992px) {
	.detail-left {
		position: sticky;
		top: calc(var(--header-height, 90px) + 3rem);
		align-self: start;
	}
}

.detail-left .detail-number {
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: var(--accent-red);
	display: inline-block;
	border: 1px solid rgba(224, 32, 32, 0.3);
	padding: 0.25rem 0.8rem;
	border-radius: 20px;
	margin-bottom: 2rem;
	background-color: rgba(224, 32, 32, 0.03);
}

.detail-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin-bottom: 2rem;
}

.detail-lead {
	font-size: 1.15rem;
	color: var(--text-muted);
}

.detail-right {
	padding-left: 2rem;
}

@media (max-width: 991px) {
	.detail-right {
		padding-left: 0;
	}
}

.detail-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Asymmetric card layout: last card spans full width if total count is odd */
.detail-list li:last-child:nth-child(odd) {
	grid-column: span 2;
}

.detail-list li {
	background: #ffffff;
	border: 1px solid rgba(14, 14, 16, 0.08);
	border-radius: 16px;
	padding: 2.5rem 2rem 2rem 2rem;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 0.5rem;
	transition: background-color 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

/* Card Hover effects */
.detail-list li:hover {
	border-color: var(--accent-red);
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(224, 32, 32, 0.04);
}

.list-num {
	position: absolute;
	right: 1.75rem;
	top: 1.75rem;
	font-family: var(--font-display);
	font-size: 3.5rem;
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(14, 14, 16, 0.08);
	line-height: 1;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
}

.detail-list li:hover .list-num {
	color: rgba(224, 32, 32, 0.04);
	-webkit-text-stroke-color: var(--accent-red);
	transform: scale(1.08);
}

.list-content h4 {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
	padding-right: 3.5rem; /* Avoid overlap with absolute number */
}

.list-content p {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* Responsive Grid overrides */
@media (max-width: 768px) {
	.detail-list {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
	
	.detail-list li:last-child:nth-child(odd) {
		grid-column: span 1;
	}
	
	.list-num {
		font-size: 2.75rem;
	}
}

/* Stagger entrance animations for Service Details on scroll reveal */
.service-detail-section .detail-left,
.service-detail-section .detail-list li {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-section.revealed .detail-left {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.service-detail-section.revealed .detail-list li {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   11. OUR ARTISTS SECTION
   ========================================================================== */
.artists-section {
	padding-top: 10rem;
	padding-bottom: 10rem;
	overflow: hidden;
	display: flex;
	gap: 40px;

	@media (max-width: 1024px) {
		flex-direction: column;
		gap: 20px;
		padding-inline: 12px;
	}

	.container{
		@media (min-width: 1280px) {
			width: 700px !important;
			padding-left: 130px;
			flex-shrink: 0;
		}
		@media (max-width: 1280px) {
			width: 600px !important;
			flex-shrink: 0;
			padding-left: 100px;
		}
		@media(max-width:1024px){
			width: 100% !important;
			padding-left: 20px;
		}
	}
}

/* Scroll reveal animations for Artists Section */
.artists-section .container,
.artists-section .artists-carousel-wrapper {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.artists-section.revealed .container {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.15s;
}

.artists-section.revealed .artists-carousel-wrapper {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.bg-dark-theme {
	background-color: var(--bg-black);
	color: var(--bg-white);
}

.artists-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 4rem;
	@media(max-width:640px){
		flex-direction: column;
		margin-bottom: 2rem;
	}
}

.carousel-nav {
	display: flex;
	gap: 1rem;
}

.carousel-btn {
	width: 55px;
	height: 55px;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bg-white);
	transition: var(--transition-smooth);
}

.carousel-btn:hover {
	background-color: var(--bg-white);
	border-color: var(--bg-white);
	color: var(--bg-black);
}

/* Horizontal Drag Container */
.artists-carousel-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
	@media(max-width:768px){
		padding-inline: 12px;
	}
}

.artists-carousel-wrapper::-webkit-scrollbar {
	display: none; /* Hide Chrome/Safari scrollbar */
}

.artists-carousel-track {
	display: flex;
	gap: 2.5rem;
	padding-left: max(5rem, calc((100vw - 1320px) / 2 + 7.5rem));
	padding-right: max(5rem, calc((100vw - 1320px) / 2 + 7.5rem));
	width: 100%;

}

.artists-carousel-wrapper.dragging {
	scroll-behavior: auto !important;
}

.artist-slide {
	scroll-snap-align: start;
	transition: var(--transition-smooth);
	flex-shrink: 0;
}

/* Responsive configurations for Artists Section */
@media (max-width: 991px) {
	.artists-carousel-track {
		padding-left: 2rem;
		padding-right: 2rem;
		gap: 1.75rem;
	}
	.artist-slide {
		width: 290px; /* Scaled down for tablets */
	}
}

@media (max-width: 576px) {
	.artists-carousel-track {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
		gap: 1.25rem;
	}
	.artist-slide {
		width: 240px; /* Compact portrait size for mobile phones */
	}
}

.artist-img-box {
	width: 100%;
	aspect-ratio: 3 / 4; /* Steep portrait aspect ratio */
	position: relative;
	overflow: hidden;
	background-color: var(--bg-dark-gray);
	margin-bottom: 1.5rem;
	border-radius: 12px; /* Cohesive rounded edges */
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.artist-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
	            filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 60%, rgba(10,10,12,0.8) 100%);
	opacity: 0.4;
	transition: opacity 0.4s;
}

.artist-info {
	padding-left: 0.5rem;
}

.artist-name {
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	color: var(--bg-white);
	position: relative;
	display: inline-block;
	transition: color 0.4s ease;
}

/* Expanding red line under the name on hover */
.artist-name::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background-color: var(--accent-red);
	transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-role {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--accent-red);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: transform 0.4s ease;
}

/* Hover States for Artist Cards */
.artist-slide:hover .artist-img-box {
	border-color: rgba(224, 32, 32, 0.25);
	box-shadow: 0 15px 35px rgba(224, 32, 32, 0.08);
}

.artist-slide:hover .artist-img {
	transform: scale(1.1);
	filter: grayscale(0%);
}

.artist-slide:hover .artist-overlay {
	opacity: 0.8;
}

.artist-slide:hover .artist-name {
	color: var(--accent-red);
}

.artist-slide:hover .artist-name::after {
	width: 100%;
}

/* ==========================================================================
   12. FEATURED PROJECTS SECTION
   ========================================================================== */


/* Projects Section Dark Theme Overrides */
.projects-section.bg-dark-theme {
	background-color: var(--bg-black);
	color: var(--bg-white);
}

.projects-section.bg-dark-theme .project-title {
	color: #ffffff;
}

.projects-section.bg-dark-theme .project-desc {
	color: #a0a0a8;
}

.projects-section.bg-dark-theme .project-img-box {
	background-color: #121214;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scroll reveal animations for Projects Section */
.projects-section .section-tag,
.projects-section .section-title,
.projects-section .project-card {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.projects-section.revealed .section-tag {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.15s;
}

.projects-section.revealed .section-title {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.projects-section.revealed .project-card {
	opacity: 1;
	transform: translateY(0);
}

.projects-section.revealed .projects-grid .project-card:nth-child(1) {
	transition-delay: 0.45s;
}

.projects-section.revealed .projects-grid .project-card:nth-child(2) {
	transition-delay: 0.6s;
}

.projects-section.revealed .projects-grid .project-card:nth-child(3) {
	transition-delay: 0.75s;
}

.projects-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

@media (max-width: 991px) {
	.projects-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.projects-grid {
		grid-template-columns: 1fr;
	}
}

.project-card {
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	overflow: hidden;
}

.project-img-box {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4; /* Steep portrait aspect ratio */
	overflow: hidden;
	background-color: #121214;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: border-color 0.4s ease, box-shadow 0.4s ease;
	margin-bottom: 1.5rem;
}

.project-placeholder-img {
	width: 100%;
	height: 100%;
	img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
		filter: grayscale(100%);
		object-position: bottom;
	}
}

/* Stylized placeholder gradients since no direct project images exist */
.img-proj-1 {
	background-image: linear-gradient(135deg, #1f1f23 0%, #3e3e44 100%);
}

.img-proj-2 {
	background-image: linear-gradient(135deg, #323238 0%, #151518 100%);
}

.img-proj-3 {
	background-image: linear-gradient(135deg, #242429 0%, #4c4c54 100%);
}

.project-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(224, 32, 32, 0.4); /* Solid red tint overlay */
	opacity: 0;
	mix-blend-mode: multiply;
	transition: opacity 0.4s ease;
}

.project-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 0.5rem;
}

.project-category {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent-red);
	margin-top: 0;
	margin-bottom: 0.75rem;
}

.project-title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.3;
	color: #ffffff;
	transition: color 0.3s ease;
	margin-bottom: 0;
}

/* Project Card Hover Animations */
.project-card:hover .project-img-box {
	border-color: rgba(224, 32, 32, 0.25);
	box-shadow: 0 15px 35px rgba(224, 32, 32, 0.08);
}

.project-card:hover .project-placeholder-img img {
	transform: scale(1.08);
	filter: grayscale(0%);
}

.project-card:hover .project-overlay {
	opacity: 0.9;
}

.project-card:hover .project-title {
	color: var(--accent-red);
}

/* ==========================================================================
   13. TESTIMONIALS / EDITORIAL QUOTE
   ========================================================================== */
.quote-section {
	padding-top: 10rem;
	padding-bottom: 10rem;
	text-align: center;
}

/* Scroll reveal animations for Quote Section */
.quote-section.scroll-reveal {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

.quote-section .quote-symbol,
.quote-section .editorial-quote,
.quote-section .quote-author {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-section.revealed .quote-symbol {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.15s;
}

.quote-section.revealed .editorial-quote {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.quote-section.revealed .quote-author {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

.quote-container {
	max-width: 960px;
}

.quote-symbol {
	font-size: 3rem;
	color: var(--accent-red);
	margin-bottom: 2rem;
	svg{
		opacity: 1;
	}
}

.editorial-quote {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.2vw, 2.75rem);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--text-dark);
	margin-bottom: 2.5rem;
}

.quote-author {
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	display: block;
}

/* ==========================================================================
   14. BRANDS & PRESS MARQUEE
   ========================================================================== */
.marquee-section {
	background-color: var(--bg-black);
	border-top: 1px solid var(--border-dark);
	border-bottom: 1px solid var(--border-dark);
	padding: 2.5rem 0;
	overflow: hidden;
}

/* Scroll reveal animations for Marquee Section */
.marquee-section.scroll-reveal {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

.marquee-section .marquee-wrapper {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-section.revealed .marquee-wrapper {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.15s;
}

.marquee-wrapper {
	display: flex;
	width: 100%;
}

.marquee-track {
	display: flex;
	align-items: center;
	gap: 5.5rem;
	white-space: nowrap;
	animation: marquee 24s linear infinite;
	padding-left: 2.75rem;
}

.marquee-track span {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	color: rgba(255, 255, 255, 0.15);
	transition: color 0.3s;
}

.marquee-track span:hover {
	color: var(--accent-red);
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* ==========================================================================
   15. BRUTALIST CONTACT FORM SECTION
   ========================================================================== */
.contact-section {
	padding-top: 10rem;
	padding-bottom: 10rem;
}

/* Scroll reveal animations for Contact Section */
.contact-section .section-tag,
.contact-section .section-title,
.contact-section .contact-left .contact-info-block,
.contact-section .contact-right {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-section.revealed .section-tag {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.15s;
}

.contact-section.revealed .section-title {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.contact-section.revealed .contact-left .contact-info-block:nth-child(1) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.45s;
}

.contact-section.revealed .contact-left .contact-info-block:nth-child(2) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.6s;
}

.contact-section.revealed .contact-left .contact-info-block:nth-child(3) {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.75s;
}

.contact-section.revealed .contact-right {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.9s;
}

.contact-grid {
	grid-template-columns: 5fr 7fr;
	gap: 6rem;
	align-items: stretch;
}

@media (max-width: 991px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 4rem;
	}
}

.contact-left {
	display: flex;
	flex-direction: column;
	gap: 3.5rem;
}

.contact-map-wrapper {
	width: 100%;
	height: 100%;
	min-height: 480px;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(14, 14, 16, 0.08);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
	background-color: #f7f7f8;
}

.contact-map-wrapper iframe {
	width: 100%;
	height: 100%;
	display: block;
}

/* Form Styles */
.brutalist-form {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

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

@media (max-width: 576px) {
	.form-row {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

.form-group {
	position: relative;
	width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem 0;
	border-bottom: 2px solid var(--border-light);
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--text-dark);
	background: transparent;
	transition: var(--transition-fast);
}

.form-group select {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e0e10' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 16px;
	padding-right: 1.5rem;
}

.form-group select:invalid {
	color: var(--text-muted);
}

.form-group label {
	position: absolute;
	left: 0;
	top: 0.75rem;
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--text-muted);
	pointer-events: none;
	transition: var(--transition-fast);
}

/* Floating labels effect */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
	top: -1.2rem;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--accent-red);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-bottom-color: var(--accent-red);
}

.form-submit {
	margin-top: 1rem;
	align-self: flex-start;
}

.btn-submit {
	display: inline-flex;
	align-items: center;
	gap: 1.25rem;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--bg-white);
	background-color: var(--text-dark);
	padding: 1.2rem 2.6rem;
	border: 1px solid var(--text-dark);
	transition: var(--transition-smooth);
	cursor: pointer;
}

.btn-submit .btn-icon {
	transition: var(--transition-fast);
}

.btn-submit:hover {
	background-color: var(--accent-red);
	border-color: var(--accent-red);
}

.btn-submit:hover .btn-icon {
	transform: translateX(6px);
}

/* Form success message */
.form-status-msg {
	margin-top: 1.5rem;
	font-weight: 600;
	font-size: 0.95rem;
}

.status-sending {
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.status-success {
	color: #1b8a5a;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Contact Info Details */
.contact-right {
	display: flex;
	flex-direction: column;
	gap: 3.5rem;
}

.contact-info-block h3 {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-dark);
	position: relative;
	padding-bottom: 0.5rem;
}

.contact-info-block h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	background-color: var(--accent-red);
}

.contact-link {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--text-dark);
	transition: var(--transition-fast);
}

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

.contact-muted-desc {
	font-size: 0.95rem;
	color: var(--text-muted);
	margin-bottom: 0.75rem;
}

.contact-address {
	font-size: 1.1rem;
	color: var(--text-dark);
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

.btn-text-link {
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-dark);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: var(--transition-fast);
}

.btn-text-link:hover {
	color: var(--accent-red);
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.main-footer {
	background-color: var(--bg-white);
	border-top: 1px solid var(--border-light);
	padding-top: 6rem;
	padding-bottom: 3rem;
	color: var(--text-dark);
}

.footer-container {
	display: flex;
	flex-direction: column;
	gap: 4.5rem;
}

.footer-top {
	display: grid;
	grid-template-columns: 5fr 4fr 3fr;
	gap: 4rem;
}

@media (max-width: 991px) {
	.footer-top {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

.footer-brand {
	max-width: 400px;
}

.footer-desc {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

.footer-links ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.footer-links a {
	font-size: 0.95rem;
	color: var(--text-muted);
}

.footer-links a:hover {
	color: var(--accent-red);
	padding-left: 4px;
}

.footer-social-icons {
	display: flex;
	gap: 1.25rem;
}

.footer-social-icons a {
	width: 45px;
	height: 45px;
	border: 1px solid var(--border-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-dark);
	font-size: 1.05rem;
	transition: var(--transition-smooth);
}

.footer-social-icons a:hover {
	background-color: var(--text-dark);
	color: var(--bg-white);
	border-color: var(--text-dark);
	transform: translateY(-4px);
}

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

.footer-bottom a {
	font-weight: 600;
	color: var(--text-dark);
}

.footer-bottom a:hover {
	color: var(--accent-red);
}

@media (max-width: 768px) {
	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}

/* ==========================================================================
   17. INTERACTIVE SCROLL REVEALS
   ========================================================================== */
.scroll-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Spinner Animation for SVG icons */
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.icon {
	display: inline-block;
	vertical-align: middle;
}

.icon-spin {
	animation: spin 1s linear infinite;
}

/* Margin and spacing adjustments for inline SVGs */
.service-card-link svg {
	margin-left: 6px;
}

.btn-text-link svg {
	margin-left: 6px;
}

.status-sending svg,
.status-success svg {
	margin-right: 6px;
}

/* ==========================================================================
   18. FIXED SIDE DOT NAVIGATION
   ========================================================================== */
.side-dot-nav {
	position: fixed;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	z-index: 1000;
	transition: opacity 0.3s ease;
}

.dot-nav-item {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	position: relative;
	width: 32px;
	height: 32px;
	outline: none;
}

.dot-circle {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--text-dark);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	border: 1px solid transparent;
	cursor: pointer;
}

.dot-label {
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-dark);
	position: absolute;
	right: 36px; /* Moved closer horizontally (from 42px to 36px) */
	top: 50%;
	transform: translateY(-50%) translateX(10px);
	opacity: 0;
	pointer-events: none; /* Ignore pointer events to prevent hover trigger */
	transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
	            transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
	            color 0.3s ease;
	white-space: nowrap;
}

/* Hover States - Triggered comfortable on the 32px hit area */
.dot-nav-item:hover .dot-circle {
	background-color: var(--accent-red);
	transform: scale(1.3);
}

.dot-nav-item:hover .dot-label {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
	color: var(--text-dark);
}

/* Active State */
.dot-nav-item.active .dot-circle {
	background-color: var(--accent-red);
	transform: scale(1.4);
	box-shadow: 0 0 0 4px rgba(224, 32, 32, 0.2);
}

.dot-nav-item.active .dot-label {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
	color: var(--accent-red);
	font-weight: 700;
}

/* Hide fixed dot nav when fullscreen menu is open */
body.menu-open .side-dot-nav {
	opacity: 0;
	pointer-events: none;
}

/* ON-DARK THEME FOR DARK SECTIONS */
.side-dot-nav.on-dark .dot-circle {
	background-color: var(--bg-white);
}

.side-dot-nav.on-dark .dot-label {
	color: var(--bg-white);
}

.side-dot-nav.on-dark .dot-nav-item:hover .dot-circle {
	background-color: var(--accent-red);
}

.side-dot-nav.on-dark .dot-nav-item:hover .dot-label {
	color: var(--bg-white);
}

.side-dot-nav.on-dark .dot-nav-item.active .dot-circle {
	background-color: var(--accent-red);
	box-shadow: 0 0 0 4px rgba(224, 32, 32, 0.4);
}

.side-dot-nav.on-dark .dot-nav-item.active .dot-label {
	color: var(--accent-red);
}

/* Hide on mobile/tablet viewports to keep layouts clean */
@media (max-width: 991px) {
	.side-dot-nav {
		display: none !important;
	}
}

/* ==========================================================================
   19. HERO SCROLL DOWN INDICATOR
   ========================================================================== */
.hero-scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	z-index: 10;
	text-decoration: none;
	color: var(--text-dark);
	transition: opacity 0.3s ease, color 0.3s ease;
}

.hero-scroll-indicator:hover {
	color: var(--accent-red);
}

.mouse-icon {
	width: 22px;
	height: 36px;
	border: 2px solid currentColor;
	border-radius: 12px;
	position: relative;
}

.mouse-wheel {
	width: 4px;
	height: 8px;
	background-color: currentColor;
	border-radius: 2px;
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	animation: scrollWheel 1.6s infinite ease-in-out;
}

.scroll-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	animation: arrowSlide 1.6s infinite ease-in-out;
}

/* Scroll wheel roll down keyframes */
@keyframes scrollWheel {
	0% {
		opacity: 0;
		top: 6px;
	}
	20% {
		opacity: 1;
	}
	80% {
		opacity: 0;
		top: 18px;
	}
	100% {
		opacity: 0;
		top: 6px;
	}
}

/* Down arrow glide keyframes */
@keyframes arrowSlide {
	0%, 100% {
		transform: translateY(0);
		opacity: 0.6;
	}
	50% {
		transform: translateY(4px);
		opacity: 1;
	}
}

/* ==========================================================================
   20. UNIFIED FULLSCREEN SECTION RULES
   ========================================================================== */
.page-section {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center; /* Vertically center content */
	justify-content: center; /* Horizontally center content */
	position: relative;
	padding-top: var(--header-height, 90px) !important;
	padding-bottom: 2rem !important;
	box-sizing: border-box;
}

.page-section > .container {
	width: 100%;
}

/* Prevent fullscreen section level layout shifts and block fades */
.page-section.scroll-reveal {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

/* Responsive adjustments for vertical paddings on medium screens */
@media (max-width: 991px) {
	.page-section {
		padding-top: calc(var(--header-height) + 20px) !important;
		padding-bottom: 1.5rem !important;
	}
}

/* Responsive adjustments for small mobile viewports */
@media (max-width: 768px) {
	.page-section {
		padding-top: calc(var(--header-height) + 20px) !important;
		padding-bottom: 6rem !important;
		min-height: auto;
	}
}
.instagram-profile-card {
  margin-top: 28px;
  max-width: 500px;
  padding: 24px;
  border: 1px solid #efefef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.04);
}

.ig-card-top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ig-avatar {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #ff2d2d, #ff8a00, #c13584);
}

.ig-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
}

.ig-info .ig-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #e53935;
  text-transform: uppercase;
}

.ig-info h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.1;
  color: #09090b;
}

.ig-info p {
  margin: 0;
  max-width: 330px;
  font-size: 15px;
  line-height: 1.6;
  color: #707078;
}

.ig-button {
  margin-top: 22px;
  height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: #09090b;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.ig-button:hover {
  transform: translateY(-2px);
  background: #e53935;
}

.ig-button span {
  font-size: 17px;
}

@media (max-width: 768px) {
  .instagram-profile-card {
    padding: 20px;
  }

  .ig-card-top {
    align-items: flex-start;
  }

  .ig-avatar {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .ig-info h3 {
    font-size: 20px;
  }
}

/* ==========================================================================
   14. ARTIST DETAIL POPUP (FULLSCREEN MODAL)
   ========================================================================== */
.artist-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #0c0c0e;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
	overflow-y: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.artist-popup.active {
	opacity: 1;
	visibility: visible;
}

.popup-container {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 5rem;
	padding: 4rem 2rem;
	align-items: center;
	box-sizing: border-box;
}

.popup-left {
	width: 100%;
}

.popup-image-wrapper {
	width: 100%;
	aspect-ratio: 3 / 4;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 0.15s;
}

.artist-popup.active .popup-image-wrapper {
	opacity: 1;
	transform: translateY(0);
}

.popup-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.popup-right {
	width: 100%;
}

.popup-content {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.popup-content > * {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-popup.active .popup-content > * {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger delays for popup details */
.artist-popup.active .popup-content > .popup-label { transition-delay: 0.25s; }
.artist-popup.active .popup-content > .popup-name { transition-delay: 0.35s; }
.artist-popup.active .popup-content > .popup-divider { transition-delay: 0.45s; }
.artist-popup.active .popup-content > .popup-bio { transition-delay: 0.5s; }
.artist-popup.active .popup-content > .popup-meta-section:nth-of-type(1) { transition-delay: 0.6s; }
.artist-popup.active .popup-content > .popup-meta-section:nth-of-type(2) { transition-delay: 0.7s; }

.popup-label {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--accent-red);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	display: block;
	margin-bottom: 1rem;
}

.popup-name {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.popup-divider {
	width: 60px;
	height: 3px;
	background-color: var(--accent-red);
	margin-bottom: 2rem;
}

.popup-bio {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #a0a0a8;
	margin-bottom: 2.5rem;
}

.popup-meta-section {
	margin-bottom: 2rem;
}

.popup-meta-section:last-child {
	margin-bottom: 0;
}

.meta-title {
	font-size: 0.85rem;
	font-weight: 700;
	color: #606068;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.popup-socials,
.popup-platforms {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.popup-link-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0.75rem 1.5rem;
	border-radius: 99px;
	background-color: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	text-decoration: none;
}

.popup-link-btn:hover {
	background-color: var(--accent-red);
	border-color: var(--accent-red);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(224, 32, 32, 0.25);
}

.popup-link-btn svg {
	width: 18px;
	height: 18px;
}

.popup-close-btn {
	position: absolute;
	top: 2.5rem;
	right: 2.5rem;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background-color: rgba(255, 255, 255, 0.03);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 10000;
}

.popup-close-btn:hover {
	background-color: var(--accent-red);
	border-color: var(--accent-red);
	transform: rotate(90deg);
}

@media (max-width: 991px) {
	.popup-container {
		grid-template-columns: 1fr;
		gap: 3rem;
		padding: 6rem 1.5rem 3rem 1.5rem;
	}
	.popup-image-wrapper {
		max-width: 400px;
		margin: 0 auto;
	}
	.popup-close-btn {
		top: 1.5rem;
		right: 1.5rem;
		width: 44px;
		height: 44px;
	}
	.popup-name {
		font-size: 2.5rem;
	}
}
.projects-section {
	padding-top: 10rem;
	padding-bottom: 10rem !important;
	@media(max-width:1024px){
		padding-bottom: 4rem !important;
	}
}