/*
 * Mono Yapı Sistemleri - Premium Industrial & Architectural Custom CSS
 * Author: Antigravity (Google DeepMind Team)
 * Optimized for full-width Gutenberg templates and pixel-perfect screenshots styling.
 */

:root {
	--primary-yellow: #F5D400;
	--secondary-yellow: #EAC400;
	--dark-charcoal: #1E1F23;
	--graphite: #2B2D31;
	--steel-gray: #5F6368;
	--light-gray: #F5F5F5;
	--white: #FFFFFF;
	--text: #111111;
	--font-headings: 'Inter Tight', 'Manrope', sans-serif;
	--font-body: 'Inter', sans-serif;
	--transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	--grid-gutter: 2rem;
}

/* Gutenberg FSE Full-Width Container Overrides */
.wp-block-group.alignfull, 
main.wp-block-group, 
.entry-content {
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* Override Gutenberg auto max-width on direct section children */
.wp-block-group.alignfull > section,
main.wp-block-group > section,
.entry-content > section,
.wp-block-group.alignfull > div,
main.wp-block-group > div {
	max-width: 100% !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* Global Adjustments */
body {
	font-family: var(--font-body);
	background-color: var(--white);
	color: var(--text);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-headings);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0 0 1.5rem 0;
}

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

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

/* Typography Utilities */
.text-huge {
	font-size: clamp(3.2rem, 7.8vw, 7.8rem);
	line-height: 0.95;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.03em;
}
.text-yellow {
	color: var(--primary-yellow);
}
.text-outline {
	color: transparent;
	-webkit-text-stroke: 1px rgba(17, 17, 17, 0.2);
}
.dark-section .text-outline {
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
}

/* Premium Buttons & Interactive Elements */
.mono-btn {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 2.5rem;
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: var(--transition-smooth);
	cursor: pointer;
	border: 1px solid transparent;
}

.mono-btn-primary {
	background-color: var(--primary-yellow);
	color: var(--dark-charcoal);
}

.mono-btn-primary:hover {
	background-color: var(--secondary-yellow);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(245, 212, 0, 0.25);
}

.mono-btn-outline {
	background-color: transparent;
	border: 1px solid var(--white);
	color: var(--white);
}

.mono-btn-outline:hover {
	background-color: var(--white);
	color: var(--dark-charcoal);
	transform: translateY(-3px);
}

.mono-btn-dark {
	background-color: var(--dark-charcoal);
	color: var(--white);
}

.mono-btn-dark:hover {
	background-color: var(--graphite);
	transform: translateY(-3px);
}

.mono-arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-headings);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	color: var(--primary-yellow);
	position: relative;
	padding-bottom: 2px;
}

.mono-arrow-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--primary-yellow);
	transform: scaleX(0);
	transform-origin: right;
	transition: var(--transition-smooth);
}

.mono-arrow-link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* Sections Base Styling */
.mono-sec {
	padding: 8rem 0;
	position: relative;
	box-sizing: border-box;
}
.mono-sec.dark-section {
	background-color: var(--dark-charcoal);
	color: var(--white);
}

.mono-container {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	box-sizing: border-box;
}

/* --- SECTION 01: HERO --- */
.hero-sec {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 100px;
	background-color: var(--dark-charcoal);
	background-image: radial-gradient(circle at 80% 20%, rgba(245, 212, 0, 0.05) 0%, transparent 50%);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 4rem;
	align-items: center;
}

.hero-subheadline {
	font-size: 1.25rem;
	font-weight: 300;
	color: #a2a5aa;
	margin-top: 1.5rem;
	margin-bottom: 2.5rem;
	max-width: 550px;
	line-height: 1.6;
}

.hero-meta {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #a2a5aa;
	margin-bottom: 1.5rem;
	display: block;
	font-weight: 600;
}

.hero-ctas {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

/* 3D Waterproofing Exploded View Visualizer */
.hero-visualizer-container {
	position: relative;
	width: 100%;
	height: 600px;
	perspective: 1500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.isometric-wrapper {
	position: relative;
	width: 280px;
	height: 380px;
	transform-style: preserve-3d;
	transform: rotateX(56deg) rotateY(0deg) rotateZ(-44deg);
	transition: var(--transition-smooth);
}

.layer-concrete {
	position: absolute;
	width: 100%;
	height: 220px;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	transform-style: preserve-3d;
	transition: transform 0.15s ease-out, box-shadow 0.3s ease;
	cursor: pointer;
}

/* Side faces of 3D blocks */
.layer-concrete::before, .layer-concrete::after {
	content: '';
	position: absolute;
	background-color: inherit;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Left Face */
.layer-concrete::before {
	width: 18px;
	height: 100%;
	transform: rotateY(-90deg);
	transform-origin: left;
	left: 0;
	top: 0;
	filter: brightness(0.65);
}

/* Front Face */
.layer-concrete::after {
	width: 100%;
	height: 18px;
	transform: rotateX(-90deg);
	transform-origin: bottom;
	bottom: 0;
	left: 0;
	filter: brightness(0.8);
}

/* Individual Layer Textures & Depths */
.layer-kaplama {
	background: linear-gradient(135deg, #444, #282828);
	--default-z: 160px;
	transform: translateZ(var(--default-z));
}
.layer-membran {
	background: linear-gradient(135deg, #F5D400, #EAC400);
	border-color: rgba(245, 212, 0, 0.5);
	--default-z: 120px;
	transform: translateZ(var(--default-z));
	box-shadow: 0 0 40px rgba(245, 212, 0, 0.35);
}
.layer-membran::before, .layer-membran::after {
	border-color: rgba(245, 212, 0, 0.5);
}
.layer-astar {
	background: linear-gradient(135deg, #60646a, #44474c);
	--default-z: 80px;
	transform: translateZ(var(--default-z));
}
.layer-egim {
	background: linear-gradient(135deg, #7c8087, #5c5f63);
	--default-z: 40px;
	transform: translateZ(var(--default-z));
}
.layer-concrete-base {
	background: linear-gradient(135deg, #a5a9b0, #83868c);
	--default-z: 0px;
	transform: translateZ(var(--default-z));
}

/* Labels & Callouts for 3D Layers */
.layer-label {
	position: absolute;
	right: -170px;
	color: var(--white);
	padding: 0.3rem 0;
	font-family: var(--font-headings);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	white-space: nowrap;
	transform: rotateZ(44deg) rotateX(-56deg) translateY(-50px) translateX(30px);
	transform-origin: left;
	pointer-events: none;
	opacity: 0.65;
	transition: var(--transition-smooth);
	display: flex;
	align-items: center;
	gap: 12px;
}

.layer-label::before {
	content: '';
	width: 50px;
	height: 1px;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
}

.layer-membran .layer-label {
	color: var(--primary-yellow);
	opacity: 1;
}
.layer-membran .layer-label::before {
	border-bottom-color: var(--primary-yellow);
}

.layer-concrete:hover .layer-label {
	opacity: 1;
	transform: rotateZ(44deg) rotateX(-56deg) translateY(-50px) translateX(40px) scale(1.05);
}

/* Vertical Kaydir Scroll text on the left */
.hero-vertical-scroll {
	position: absolute;
	left: 5%;
	bottom: 12%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	color: #a2a5aa;
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	writing-mode: vertical-lr;
	transform: rotate(180deg);
}

.hero-vertical-scroll::after {
	content: '';
	width: 1px;
	height: 60px;
	background-color: rgba(255, 255, 255, 0.15);
}

/* Scroll indicator circular icon bottom right */
.hero-scroll-btn {
	position: absolute;
	right: 5%;
	bottom: 8%;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	cursor: pointer;
	transition: var(--transition-smooth);
}
.hero-scroll-btn:hover {
	border-color: var(--primary-yellow);
	color: var(--primary-yellow);
	transform: translateY(3px);
}
.hero-scroll-btn svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

/* --- SECTION 02: STATISTICS --- */
/* --- SECTION 02: STATISTICS --- */
.stats-sec {
	background-color: var(--white);
	border-bottom: 1px solid #eaeaea;
	padding: 4.5rem 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	align-items: center;
}

.stat-card {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	padding: 1rem 3rem;
	box-sizing: border-box;
	border-right: 1px solid #eaeaea;
}

.stat-card:last-child {
	border-right: none;
}

.stat-icon-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	flex-shrink: 0;
}

.stat-icon-group svg {
	width: 34px;
	height: 34px;
	color: var(--text);
}

.stat-icon-line {
	width: 22px;
	height: 3px;
	background-color: var(--primary-yellow);
}

.stat-info {
	display: flex;
	flex-direction: column;
}

.stat-info h3 {
	font-size: clamp(2rem, 2.8vw, 2.8rem);
	font-weight: 800;
	margin: 0 0 2px 0;
	line-height: 1;
	color: var(--text);
	display: flex;
	align-items: baseline;
}

.stat-info p {
	font-size: 0.85rem;
	color: var(--steel-gray);
	margin: 0;
	font-weight: 600;
}

/* --- SECTION 03: SERVICES (PREMIUM ARCHITECTURAL SLANTED LAYOUT) --- */
.services-sec {
	padding: 0; /* Remove vertical padding to let rows stack tightly */
	background-color: var(--white);
}

.services-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 460px;
	height: 460px;
	background-color: var(--dark-charcoal);
	color: var(--white);
	overflow: hidden;
	position: relative;
	margin-bottom: 0;
	width: 100%;
}

.services-row:last-child {
	margin-bottom: 0;
}

.services-content {
	padding: 4rem 8%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 5;
	box-sizing: border-box;
}

.services-content h3 {
	max-width: 480px;
}

/* Row 1 & 3 (Text Left): Pad more on the right next to slanted image */
.services-row:not(.alt-row) .services-content {
	padding-right: 9rem;
}

/* Row 2 (Text Right): Pad more on the left next to slanted image to avoid slant overlap */
.services-row.alt-row .services-content {
	padding-left: 11.5rem;
}
@media (min-width: 1200px) {
	.services-row.alt-row .services-content {
		padding-left: 13.5rem;
	}
}

@media (min-width: 1400px) {
	.services-row:not(.alt-row) .services-content {
		padding-left: calc((100vw - 1400px) / 2 + 70px);
		padding-right: 9rem;
	}
	.services-row.alt-row .services-content {
		padding-right: calc((100vw - 1400px) / 2 + 70px);
		padding-left: 13.5rem;
	}
}

.services-num {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--primary-yellow);
	margin-bottom: 0.75rem;
	letter-spacing: 0.15em;
}

.services-content h3 {
	font-size: clamp(1.8rem, 2.5vw, 2.5rem);
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.services-content p {
	font-size: 0.95rem;
	color: #a2a5aa;
	line-height: 1.6;
	margin-bottom: 2rem;
	max-width: 450px;
	margin-top: 0;
}

.services-img-container {
	position: relative;
	overflow: hidden;
	width: calc(100% + 100px);
	height: 100%;
	z-index: 2;
}

/* Row 1 and 3: Image on Right. Slanted on Left of the Image */
.services-row:not(.alt-row) .services-img-container {
	transform: skewX(16deg);
	margin-left: -50px;
	margin-right: -50px;
	border-left: 6px solid var(--primary-yellow);
}
.services-row:not(.alt-row) .services-img-container img {
	transform: skewX(-16deg) scale(1.35);
}
.services-row:not(.alt-row):hover .services-img-container img {
	transform: skewX(-16deg) scale(1.42);
}

/* Row 2: Image on Left. Slanted on Right of the Image */
.services-row.alt-row .services-img-container {
	transform: skewX(-16deg);
	margin-left: -50px;
	margin-right: -50px;
	border-right: 6px solid var(--primary-yellow);
}
.services-row.alt-row .services-img-container img {
	transform: skewX(16deg) scale(1.35);
}
.services-row.alt-row:hover .services-img-container img {
	transform: skewX(16deg) scale(1.42);
}

.services-img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- SECTION 04: SOLUTION FINDER --- */
.finder-sec {
	padding: 5rem 0;
}

.finder-horizontal-bar {
	background-color: var(--white);
	border: 1px solid #eaeaea;
	border-radius: 0;
	box-shadow: 0 15px 40px rgba(0,0,0,0.03);
	display: grid;
	grid-template-columns: 1.2fr 0.9fr 0.9fr 0.8fr 1.2fr;
	align-items: stretch;
	min-height: 110px;
}

.finder-title-col {
	padding: 1.8rem 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-right: 1px solid #eaeaea;
}

.finder-title-col span {
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--steel-gray);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.finder-title-col h3 {
	font-size: 1.15rem;
	font-weight: 800;
	margin: 0;
	line-height: 1.3;
}

.finder-select-col {
	padding: 1.5rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-right: 1px solid #eaeaea;
	position: relative;
}

.finder-select-col label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--steel-gray);
	margin-bottom: 6px;
}

.finder-select-col select,
.finder-select-col input {
	width: 100%;
	border: none;
	background: transparent;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text);
	appearance: none;
	outline: none;
	cursor: pointer;
	padding: 0;
}

/* Adding custom chevron arrows */
.finder-select-col::after {
	content: '';
	position: absolute;
	right: 1.5rem;
	top: 55%;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--steel-gray);
	border-bottom: 2px solid var(--steel-gray);
	transform: translateY(-50%) rotate(45deg);
	pointer-events: none;
}

.finder-select-col.no-arrow::after {
	display: none;
}

.finder-result-button-col {
	background-color: var(--primary-yellow);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1.5rem 2.5rem;
	cursor: pointer;
	transition: var(--transition-smooth);
	border: none;
	text-align: left;
	position: relative;
	color: var(--dark-charcoal);
}

.finder-result-button-col:hover {
	background-color: var(--secondary-yellow);
}

.finder-result-button-col span.label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.8;
	margin-bottom: 4px;
}

.finder-result-button-col span.val {
	font-size: 1.05rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.finder-result-button-col svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}
.finder-result-button-col:hover svg {
	transform: translateX(5px);
}

/* Floating overlay details box below the finder when result is shown */
.finder-result-details-overlay {
	margin-top: 1.5rem;
	padding: 2.5rem;
	background-color: var(--white);
	border: 1px solid #eaeaea;
	border-left: 5px solid var(--primary-yellow);
	display: none;
	box-shadow: 0 20px 40px rgba(0,0,0,0.05);
	animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.finder-result-details-overlay h4 {
	font-size: 1.4rem;
	margin: 0 0 1rem 0;
	font-weight: 800;
}

.finder-result-details-overlay p {
	color: var(--steel-gray);
	margin-bottom: 1.5rem;
	line-height: 1.6;
	margin-top: 0;
}

/* --- SECTION 05: PROJECT SHOWCASE --- */
#showcase {
	padding-top: 4rem !important;
	padding-bottom: 4rem !important;
}

.showcase-sec {
	background-color: var(--white);
}

.showcase-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
}

.showcase-item {
	position: relative;
	height: 320px;
	overflow: hidden;
	transition: var(--transition-smooth);
}

.showcase-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2rem;
	box-sizing: border-box;
	background: linear-gradient(to top, rgba(30, 31, 35, 0.9) 0%, rgba(30, 31, 35, 0.3) 70%, transparent 100%);
	color: var(--white);
	transition: var(--transition-smooth);
}

.showcase-item:hover img {
	transform: scale(1.08);
}

.showcase-cat {
	font-size: 0.7rem;
	color: var(--primary-yellow);
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.15em;
	margin-bottom: 0.5rem;
	display: block;
}

.showcase-title {
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 0.4rem 0;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.showcase-meta {
	font-size: 0.8rem;
	color: #a2a5aa;
	display: block;
}

/* Plus button at bottom right - hidden by default, pops up on hover */
.showcase-plus-btn {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--primary-yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark-charcoal);
	transition: var(--transition-smooth);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	z-index: 5;
	opacity: 0;
	transform: scale(0.8);
}

.showcase-plus-btn svg {
	width: 20px;
	height: 20px;
	transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-plus-btn {
	opacity: 1;
	transform: scale(1);
	background-color: var(--primary-yellow);
}

.showcase-plus-btn:hover {
	background-color: var(--white) !important;
}

.showcase-item:hover .showcase-plus-btn svg {
	transform: rotate(90deg);
}

/* Projects Section Styling Updates (Active Outline, Inactive Light Gray) */
.showcase-filters {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.filter-btn {
	background-color: #F5F5F5;
	border: 1px solid transparent;
	color: var(--text);
	padding: 0.6rem 1.25rem;
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: var(--transition-smooth);
	text-transform: uppercase;
}

.filter-btn:hover {
	background-color: #EAEAEA;
}

.filter-btn.active {
	background-color: transparent;
	border: 1px solid var(--primary-yellow);
	color: var(--primary-yellow);
}

.mono-projects-all-link,
.mono-all-link {
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: var(--transition-smooth);
	padding-bottom: 2px;
	border-bottom: 1.5px solid transparent;
}

.mono-projects-all-link:hover,
.mono-all-link:hover {
	border-bottom-color: var(--primary-yellow);
}

.mono-projects-all-link .arrow,
.mono-all-link .arrow {
	color: var(--primary-yellow);
	transition: var(--transition-smooth);
	font-weight: 700;
}

.mono-projects-all-link:hover .arrow,
.mono-all-link:hover .arrow {
	transform: translateX(4px);
}

/* --- SECTION 06: TECHNOLOGY TIMELINE (2-COLUMN GRID) --- */
.timeline-sec {
	background-color: var(--dark-charcoal);
	color: var(--white);
}

.timeline-container {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 4rem;
	align-items: center;
}

.timeline-left {
	display: flex;
	flex-direction: column;
}

.timeline-cat {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--primary-yellow);
	margin-bottom: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.timeline-main-title {
	font-size: clamp(2rem, 3.2vw, 3.2rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 0;
	color: var(--white);
}

.timeline-right {
	width: 100%;
}

.timeline-steps-row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.8rem;
	position: relative;
}

/* Solid yellow horizontal line connecting centers of 56px circles */
.timeline-steps-row::before {
	content: '';
	position: absolute;
	top: 28px;
	left: 28px;
	right: 28px;
	height: 2px;
	background-color: var(--primary-yellow);
	opacity: 0.8;
	z-index: 1;
}

.timeline-step-card {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
}

/* Circles styled in brand yellow */
.timeline-icon-circle {
	width: 56px;
	height: 56px;
	border: 1.5px solid var(--primary-yellow);
	background-color: var(--dark-charcoal);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-yellow);
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 2;
	transition: var(--transition-smooth);
}

.timeline-step-card:hover .timeline-icon-circle {
	transform: scale(1.15);
	box-shadow: 0 0 25px rgba(245, 212, 0, 0.4);
	background-color: var(--primary-yellow);
	color: var(--dark-charcoal);
}

.timeline-icon-circle svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
}

.timeline-step-num {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--primary-yellow);
	letter-spacing: 0.15em;
	margin-bottom: 0.5rem;
}

.timeline-step-card h3 {
	font-size: 1.15rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	color: var(--white);
}

.timeline-step-card p {
	font-size: 0.85rem;
	color: #a2a5aa;
	line-height: 1.5;
	margin: 0;
}

#products {
	padding-top: 4rem !important;
	padding-bottom: 4rem !important;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1.25rem;
}

.product-card {
	background: var(--white);
	border: 1px solid #eaeaea;
	padding: 1.25rem;
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 270px;
	box-sizing: border-box;
	position: relative;
}

.product-card:hover {
	border-color: var(--primary-yellow);
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
	transform: translateY(-5px);
}

.product-img-wrapper {
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
}

.product-img-wrapper img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.product-card h3 {
	font-size: 0.85rem;
	font-weight: 800;
	margin: 0 0 4px 0;
	line-height: 1.25;
	color: var(--text);
}

.product-card-cat {
	font-size: 0.7rem;
	color: var(--steel-gray);
	font-weight: 500;
}

.product-plus-btn {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	width: auto;
	height: auto;
	border: none;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b0b3b9;
	font-size: 1.2rem;
	font-weight: 400;
	background: transparent;
	transition: var(--transition-smooth);
}
.product-card:hover .product-plus-btn {
	background-color: transparent;
	color: var(--primary-yellow);
	transform: scale(1.2);
}

/* --- SECTION 08: CASE STUDIES --- */
.case-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.case-image {
	height: 520px;
	overflow: hidden;
	position: relative;
}

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

.case-narrative {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.case-metrics {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 2rem;
}

.metric-item h4 {
	font-size: 2.5rem;
	color: var(--primary-yellow);
	font-weight: 800;
	margin: 0 0 4px 0;
}

.metric-item p {
	font-size: 0.85rem;
	color: var(--steel-gray);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 700;
}

.narrative-block {
	display: flex;
	gap: 2rem;
}

.narrative-label {
	font-family: var(--font-headings);
	font-weight: 800;
	color: var(--primary-yellow);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	width: 90px;
	flex-shrink: 0;
	margin-top: 4px;
}

.narrative-text h4 {
	font-size: 1.25rem;
	margin: 0 0 0.5rem 0;
	font-weight: 800;
}

.narrative-text p {
	color: var(--steel-gray);
	margin: 0;
	line-height: 1.6;
}

/* --- SECTION 09: PARTNERS --- */
.marquee-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 2.5rem 0;
	background-color: var(--light-gray);
	border-top: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
}

.marquee-track {
	display: flex;
	width: max-content;
	animation: scrollMarquee 30s linear infinite;
}

.marquee-item {
	width: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2rem;
	box-sizing: border-box;
}

.marquee-item span {
	font-family: var(--font-headings);
	font-weight: 800;
	font-size: 1.6rem;
	letter-spacing: 0.15em;
	color: #b0b3b9;
	transition: var(--transition-smooth);
}
.marquee-item span:hover {
	color: var(--primary-yellow);
}

@keyframes scrollMarquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-33.33%); }
}

/* --- SECTION 10: TESTIMONIALS --- */
.testimonial-box {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.quote-icon {
	font-size: 6rem;
	line-height: 1;
	color: var(--primary-yellow);
	margin-bottom: 1rem;
	font-family: var(--font-headings);
	font-weight: 800;
}

.testimonial-text {
	font-size: clamp(1.4rem, 2.3vw, 2.3rem);
	font-weight: 300;
	line-height: 1.45;
	margin-bottom: 2.5rem;
	letter-spacing: -0.01em;
}

.testimonial-author {
	font-family: var(--font-headings);
}

.author-name {
	font-weight: 700;
	display: block;
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
}

.author-role {
	font-size: 0.8rem;
	color: var(--steel-gray);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
}

/* --- SECTION 08: CTA (2-PART LAYOUT) --- */
.cta-sec {
	padding: 0;
	position: relative;
	overflow: hidden;
}

.cta-grid {
	display: grid;
	grid-template-columns: 1.1fr 1.9fr;
	height: 360px;
	min-height: 360px;
	width: 100%;
}

.cta-left {
	background-color: var(--primary-yellow);
	color: var(--dark-charcoal);
	padding: 4rem 4rem 4rem 8%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 2;
	box-sizing: border-box;
}

.cta-left h2 {
	font-size: clamp(2.2rem, 3vw, 3.2rem);
	line-height: 0.95;
	font-weight: 800;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}

.cta-left-slant {
	position: absolute;
	top: 0;
	right: -40px;
	width: 80px;
	height: 100%;
	background-color: var(--primary-yellow);
	transform: skewX(-12deg);
	z-index: 2;
}

.cta-right {
	position: relative;
	background-color: var(--dark-charcoal);
	background-image: linear-gradient(rgba(30, 31, 35, 0.85), rgba(30, 31, 35, 0.85)), url('../images/cta_building_bg.png');
	background-size: cover;
	background-position: center right;
	color: var(--white);
	padding: 4rem 4rem 4rem 6rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
	box-sizing: border-box;
}

.cta-right p {
	font-size: 1.05rem;
	color: #eaeaea;
	line-height: 1.6;
	margin-top: 0;
	margin-bottom: 2rem;
	max-width: 480px;
}

.cta-buttons-row {
	display: flex;
	gap: 1.5rem;
}

/* Diagonal yellow accent line on the right side of the building background */
.cta-right::after {
	content: '';
	position: absolute;
	top: 15%;
	right: 12%;
	width: 3px;
	height: 70%;
	background-color: var(--primary-yellow);
	transform: skewX(-12deg);
	opacity: 0.85;
	pointer-events: none;
	z-index: 2;
}

/* --- FOOTER --- */
main.wp-block-group {
	margin-bottom: 0 !important;
	margin-block-end: 0 !important;
}

main.wp-block-group + .wp-block-template-part,
.wp-block-template-part-footer,
.site-footer {
	margin-top: 0 !important;
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

.site-footer {
	background-color: var(--dark-charcoal);
	color: var(--white);
	padding: 6rem 0 3rem 0;
	border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr);
	gap: 3.5rem;
	margin-bottom: 4rem;
}

.footer-col h4 {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--primary-yellow);
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.footer-col ul a {
	color: #a2a5aa;
	font-size: 0.9rem;
	transition: var(--transition-smooth);
}

.footer-col ul a:hover {
	color: var(--primary-yellow);
	padding-left: 5px;
}

.footer-info-col p {
	color: #a2a5aa;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	margin-top: 0;
}

.footer-social-links {
	display: flex;
	gap: 1.2rem;
	margin-top: 1.5rem;
}

.footer-social-links a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: var(--transition-smooth);
}

.footer-social-links a:hover {
	background-color: var(--primary-yellow);
	color: var(--dark-charcoal);
	transform: translateY(-3px);
}

.footer-logo {
	max-height: 60px;
	margin-bottom: 1.5rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.05);
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.8rem;
	color: #a2a5aa;
}

/* Header & Navigation Bar Customize */
.mono-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 1.1rem 0;
	background: transparent;
	transition: var(--transition-smooth);
}

.mono-header.scrolled {
	background: rgba(30, 31, 35, 0.95);
	backdrop-filter: blur(15px);
	padding: 0.8rem 0;
	box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.mono-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
}

.mono-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.mono-logo img {
	height: 38px;
	object-fit: contain;
}

.mono-logo-text {
	font-family: 'Inter Tight', sans-serif;
	font-weight: 800;
	font-size: 1.45rem;
	letter-spacing: -0.03em;
	color: var(--white, #ffffff);
	text-transform: uppercase;
	line-height: 1;
}

.mono-logo-text span {
	color: #F5D400; /* Yellow */
}

.mono-nav {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.mono-nav-links {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.mono-nav-links a {
	color: var(--white);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.mono-nav-links a:hover {
	color: var(--primary-yellow);
}

.mono-header-cta {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.mono-phone-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--white);
	font-size: 0.85rem;
	font-weight: 700;
}

.mono-phone-link:hover {
	color: var(--primary-yellow);
}

.cpt-hero {
	padding: 4.2rem 0 1.2rem 0 !important;
	background-color: var(--dark-charcoal);
	background-image: radial-gradient(circle at 80% 20%, rgba(245, 212, 0, 0.03) 0%, transparent 50%);
	color: var(--white);
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cpt-hero h1 {
	font-size: clamp(1.8rem, 2.8vw, 2.5rem) !important;
	margin-bottom: 0.5rem !important;
	line-height: 1.15 !important;
	font-weight: 800 !important;
}

.cpt-hero .services-num {
	margin-bottom: 0.35rem !important;
	font-size: 0.72rem !important;
	display: block;
}

.cpt-meta-bar {
	display: flex;
	gap: 3rem;
	margin-top: 2rem;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 1.5rem;
}

.cpt-meta-item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.cpt-meta-label {
	font-size: 0.75rem;
	color: var(--steel-gray);
	text-transform: uppercase;
}

.cpt-meta-val {
	font-weight: 600;
	font-size: 0.95rem;
}

.cpt-content {
	padding: 6rem 0;
}

.cpt-sidebar-layout {
	display: grid;
	grid-template-columns: 2.5fr 1fr;
	gap: 4rem;
}

.cpt-sidebar-box {
	background-color: var(--light-gray);
	padding: 2.5rem;
	border-radius: 4px;
	margin-bottom: 2rem;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1300px) {
	.products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 1200px) {
	.hero-grid {
		gap: 2rem;
	}
	.services-row {
		gap: 3rem;
	}
	.finder-horizontal-bar {
		grid-template-columns: 1.2fr repeat(3, 1fr);
	}
	.finder-result-button-col {
		grid-column: span 4;
		text-align: center;
	}
}

@media (max-width: 992px) {
	.mono-sec {
		padding: 5rem 0;
	}
	.hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}
	.hero-subheadline {
		margin-left: auto;
		margin-right: auto;
	}
	.hero-ctas {
		justify-content: center;
	}
	.hero-visualizer-container {
		height: 450px;
	}
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.services-row, .services-row.alt-row {
		grid-template-columns: 1fr;
		gap: 0;
		margin-bottom: 0;
		height: auto !important;
		min-height: auto !important;
	}
	.services-img-container, .services-row.alt-row .services-img-container {
		grid-column: 1;
		height: 320px;
		width: 100% !important;
		margin: 0 !important;
		transform: none !important;
		border: none !important;
	}
	.services-img-container img {
		transform: none !important;
		width: 100%;
		height: 100%;
	}
	.services-content, 
	.services-row:not(.alt-row) .services-content, 
	.services-row.alt-row .services-content {
		grid-column: 1;
		padding: 3rem 1.5rem !important;
	}
	.finder-horizontal-bar {
		grid-template-columns: 1fr;
	}
	.finder-title-col, .finder-select-col {
		border-right: none;
		border-bottom: 1px solid #eaeaea;
	}
	.finder-result-button-col {
		grid-column: span 1;
	}
	.showcase-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.timeline-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.timeline-steps-row {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.timeline-steps-row::before {
		display: none;
	}
	.case-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.case-image {
		height: 380px;
	}
	.cta-sec {
		padding: 0 !important;
	}
	.cta-grid {
		grid-template-columns: 1fr;
		min-height: auto;
		height: auto;
	}
	.cta-left-slant {
		display: none;
	}
	.cta-left {
		padding: 4rem 1.5rem !important;
	}
	.cta-right {
		padding: 4rem 1.5rem !important;
		background-position: center center;
	}
	.cta-right::after {
		display: none; /* Hide decorative accent line on mobile */
	}
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-info-col {
		grid-column: span 2;
	}
	.mono-nav-links {
		display: none;
	}
	.cpt-sidebar-layout {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 576px) {
	.stats-grid {
		grid-template-columns: 1fr;
	}
	.showcase-grid {
		grid-template-columns: 1fr;
	}
	.products-grid {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.footer-info-col {
		grid-column: span 1;
	}
	.hero-ctas {
		flex-direction: column;
		width: 100%;
	}
	.hero-ctas .mono-btn {
		width: 100%;
		justify-content: center;
	}
	.cta-buttons-row {
		flex-direction: column;
	}
	.cta-left, .cta-right {
		padding: 3rem 1.5rem !important;
	}
}

/* ==========================================================================
   NEW CUSTOM PAGES CUSTOM STYLES (Awwwards Design & Site Colors)
   ========================================================================== */

/* Page Hero Section */
.page-hero-sec {
	background-color: var(--dark-charcoal);
	padding: 4.2rem 0 1.2rem 0;
	background-image: radial-gradient(circle at 80% 20%, rgba(245, 212, 0, 0.03) 0%, transparent 50%);
	color: var(--white);
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-hero-sec h1 {
	font-size: clamp(1.8rem, 2.8vw, 2.5rem) !important;
	margin-bottom: 0.5rem !important;
	line-height: 1.15 !important;
	font-weight: 800 !important;
}
.page-hero-sec p {
	font-size: 0.95rem !important;
	max-width: 650px !important;
	line-height: 1.55 !important;
	color: #9ca3af !important;
}
.page-hero-sec .services-num {
	margin-bottom: 0.35rem !important;
	font-size: 0.72rem !important;
}

/* 1. Hizmetlerimiz Detail Rows */
.service-detail-row {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 5.5rem;
	align-items: center;
	margin-bottom: 7.5rem;
}

.service-detail-row:last-child {
	margin-bottom: 0;
}

.service-detail-row.alt-row {
	grid-template-columns: 1.1fr 1fr;
}

.service-detail-row.alt-row .service-detail-img {
	order: 2;
}

.service-detail-img {
	position: relative;
	overflow: hidden;
	height: 440px;
	border-left: 6px solid var(--primary-yellow);
	box-shadow: 0 20px 45px rgba(0,0,0,0.05);
}

.service-detail-row.alt-row .service-detail-img {
	border-left: none;
	border-right: 6px solid var(--primary-yellow);
}

.service-detail-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-row:hover .service-detail-img img {
	transform: scale(1.06);
}

.service-detail-content h2 {
	font-size: clamp(1.8rem, 2.5vw, 2.5rem);
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 1.25rem 0;
	letter-spacing: -0.01em;
	color: var(--dark-charcoal);
}

.service-detail-content p {
	color: var(--steel-gray);
	font-size: 0.95rem;
	line-height: 1.65;
	margin-bottom: 2rem;
	margin-top: 0;
}

.service-spec-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.2rem;
	margin-bottom: 2rem;
}

.spec-badge {
	background-color: var(--light-gray);
	padding: 0.85rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	border-left: 3px solid var(--primary-yellow);
}

.spec-badge span {
	font-size: 0.7rem;
	color: var(--steel-gray);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.spec-badge strong {
	font-size: 0.9rem;
	color: var(--dark-charcoal);
	font-weight: 800;
}

.service-features-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.service-features-list li {
	position: relative;
	padding-left: 1.6rem;
	font-size: 0.9rem;
	color: var(--text);
	font-weight: 600;
}

.service-features-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-yellow);
	font-weight: 900;
	font-size: 0.95rem;
}

/* Why Us Block */
.why-us-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.why-card {
	background-color: var(--graphite);
	border: 1px solid rgba(255,255,255,0.04);
	padding: 2.5rem 2rem;
	transition: var(--transition-smooth);
}

.why-card:hover {
	border-color: var(--primary-yellow);
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.why-icon {
	width: 44px;
	height: 44px;
	color: var(--primary-yellow);
	margin-bottom: 1.5rem;
}

.why-icon svg {
	width: 100%;
	height: 100%;
}

.why-card h3 {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.why-card p {
	font-size: 0.85rem;
	color: #a2a5aa;
	line-height: 1.6;
	margin: 0;
}

/* 2. Projelerimiz Page Grid layout */
.page-projects-grid {
	grid-template-columns: repeat(3, 1fr) !important;
}

/* 3. Ürünler Sayfası Catalog Layout */
.catalog-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 3.5rem;
	align-items: flex-start;
}

.catalog-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	position: sticky;
	top: 100px;
}

.sidebar-widget h3 {
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 1.25rem 0;
	border-bottom: 1.5px solid #eaeaea;
	padding-bottom: 0.5rem;
	color: var(--dark-charcoal);
}

.search-box-wrapper {
	position: relative;
}

.sidebar-search-input {
	width: 100%;
	padding: 0.85rem 3rem 0.85rem 1.25rem;
	border: 1px solid #eaeaea;
	outline: none;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.9rem;
	box-sizing: border-box;
	transition: var(--transition-smooth);
}

.sidebar-search-input:focus {
	border-color: var(--primary-yellow);
}

.search-box-wrapper svg {
	position: absolute;
	right: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--steel-gray);
	pointer-events: none;
}

.sidebar-cat-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.cat-link {
	font-family: var(--font-headings);
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--steel-gray);
	transition: var(--transition-smooth);
}

.cat-link:hover, .cat-link.active {
	color: var(--primary-yellow);
}

.cat-link span {
	font-size: 0.75rem;
	color: #b0b3b9;
	font-weight: 500;
}

.help-widget {
	background-color: var(--light-gray);
	padding: 2rem 1.5rem;
	border-left: 4px solid var(--primary-yellow);
}

.help-widget h4 {
	font-size: 0.95rem;
	font-weight: 800;
	margin: 0 0 0.75rem 0;
	text-transform: uppercase;
	color: var(--dark-charcoal);
}

.help-widget p {
	font-size: 0.8rem;
	color: var(--steel-gray);
	line-height: 1.6;
	margin-top: 0;
	margin-bottom: 1.5rem;
}

.catalog-card {
	height: 380px !important;
}

.catalog-card .product-downloads {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	border-top: 1px solid #eaeaea;
	padding-top: 0.75rem;
	margin-top: auto;
}

.download-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--dark-charcoal);
	transition: var(--transition-smooth);
}

.download-link:hover {
	color: var(--primary-yellow);
}

.download-link svg {
	width: 14px;
	height: 14px;
	color: var(--primary-yellow);
}

/* 4. İletişim Sayfası */
.contact-page-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 5.5rem;
	align-items: flex-start;
}

.contact-info-panel h2 {
	font-size: 2rem;
	font-weight: 800;
	margin: 0 0 1rem 0;
	text-transform: uppercase;
	color: var(--dark-charcoal);
}

.contact-details-list {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
	margin-bottom: 3rem;
}

.contact-detail-item {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
}

.contact-detail-item .icon-wrapper {
	width: 46px;
	height: 46px;
	background-color: var(--light-gray);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-yellow);
	flex-shrink: 0;
	border: 1px solid #eaeaea;
}

.contact-detail-item .icon-wrapper svg {
	width: 20px;
	height: 20px;
}

.contact-detail-item .text-wrapper {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.contact-detail-item .text-wrapper span {
	font-size: 0.75rem;
	color: var(--steel-gray);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.contact-detail-item .text-wrapper strong {
	font-size: 0.95rem;
	color: var(--dark-charcoal);
	font-weight: 800;
	line-height: 1.45;
}

.map-placeholder {
	position: relative;
	width: 100%;
	height: 380px;
	border: 1px solid #eaeaea;
	overflow: hidden;
}

.map-placeholder iframe {
	width: 100% !important;
	height: 100% !important;
	border: 0 !important;
	display: block;
}

.marker-pulse {
	position: absolute;
	left: 480px;
	top: 280px;
	width: 36px;
	height: 36px;
	background: rgba(245,212,0,0.3);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: pulseMarker 2s infinite;
	pointer-events: none;
	z-index: 10;
}

@keyframes pulseMarker {
	0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
	100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

.map-tooltip {
	position: absolute;
	left: 480px;
	top: 215px;
	transform: translateX(-50%);
	background: var(--dark-charcoal);
	color: var(--white);
	padding: 0.65rem 1.1rem;
	border-radius: 0;
	box-shadow: 0 15px 35px rgba(0,0,0,0.25);
	display: flex;
	flex-direction: column;
	gap: 2px;
	text-align: center;
	border: 1px solid rgba(245,212,0,0.3);
	z-index: 11;
}

.map-tooltip::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	border-width: 6px 6px 0;
	border-style: solid;
	border-color: var(--dark-charcoal) transparent;
}

.map-tooltip strong {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	color: var(--primary-yellow);
}

.map-tooltip span {
	font-size: 0.7rem;
	color: #a2a5aa;
}

.contact-form-panel {
	background-color: var(--dark-charcoal);
	color: var(--white);
	padding: 4.5rem 3.5rem;
	position: relative;
}

.contact-form-panel h2 {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--white);
	margin: 0 0 0.75rem 0;
	text-transform: uppercase;
}

.form-row {
	width: 100%;
}

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

.form-group {
	position: relative;
	margin-bottom: 1.8rem;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 1rem 0;
	border: none;
	border-bottom: 1px solid rgba(255,255,255,0.15);
	background: transparent;
	color: var(--white);
	outline: none;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.95rem;
	box-sizing: border-box;
	transition: var(--transition-smooth);
}

.form-group textarea {
	resize: none;
}

.form-group select {
	padding-bottom: 0.75rem;
	cursor: pointer;
	color: #a2a5aa;
}

.form-group select option {
	background-color: var(--dark-charcoal);
	color: var(--white);
}

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

.form-group label {
	position: absolute;
	left: 0;
	top: 1rem;
	color: #a2a5aa;
	transition: var(--transition-smooth);
	pointer-events: none;
	font-size: 0.9rem;
}

.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: -0.8rem;
	font-size: 0.75rem;
	color: var(--primary-yellow);
}

/* Success Form Toast Overlay */
.form-success-toast {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--dark-charcoal);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 3rem;
	box-sizing: border-box;
	z-index: 5;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition-smooth);
}

.form-success-toast.active {
	opacity: 1;
	pointer-events: auto;
}

.form-success-toast .success-icon {
	width: 64px;
	height: 64px;
	border: 2.5px solid var(--primary-yellow);
	border-radius: 50%;
	color: var(--primary-yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}

.form-success-toast .success-icon svg {
	width: 30px;
	height: 30px;
}

.form-success-toast h3 {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--white);
	margin: 0 0 1rem 0;
	letter-spacing: 0.05em;
}

.form-success-toast p {
	font-size: 0.9rem;
	color: #a2a5aa;
	line-height: 1.65;
	max-width: 380px;
	margin: 0 0 2rem 0;
}

/* Additional Responsive Media Queries */
@media (max-width: 1200px) {
	.page-projects-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.contact-page-grid {
		gap: 3rem;
	}
}

@media (max-width: 992px) {
	.page-hero-sec {
		padding: 3.2rem 0 1rem 0;
	}
	.service-detail-row,
	.service-detail-row.alt-row {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		margin-bottom: 5rem;
	}
	.service-detail-row.alt-row .service-detail-img {
		order: 0;
	}
	.service-detail-img {
		height: 320px;
		border-left: 6px solid var(--primary-yellow) !important;
		border-right: none !important;
	}
	.why-us-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.catalog-layout {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.catalog-sidebar {
		position: relative;
		top: 0;
	}
	.contact-page-grid {
		grid-template-columns: 1fr;
		gap: 4.5rem;
	}
}

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

@media (max-width: 576px) {
	.service-spec-grid {
		grid-template-columns: 1fr;
	}
	.form-grid-2 {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.contact-form-panel {
		padding: 3rem 1.5rem;
	}
	.marker-pulse, .map-tooltip {
		left: 50%;
	}
	.marker-pulse {
		top: 60%;
	}
	.map-tooltip {
		top: 45%;
	}
}

/* ==========================================================================
   PREMIUM GALLERY & LIGHTBOX STYLES (Awwwards Style)
   ========================================================================== */

.mono-details-gallery-sec {
	margin-top: 4.5rem;
	border-top: 1px solid rgba(0,0,0,0.06);
	padding-top: 3.5rem;
}

.mono-details-gallery-title {
	font-family: var(--font-headings);
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: var(--dark-charcoal);
	margin-bottom: 2rem;
	position: relative;
	display: inline-block;
}

.mono-details-gallery-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 40px;
	height: 3px;
	background: var(--primary-yellow);
}

.mono-premium-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
}

.gallery-thumb-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	cursor: pointer;
	background: #121315;
	transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	aspect-ratio: 4 / 3;
}

.gallery-thumb-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-thumb-item:hover img {
	transform: scale(1.08);
}

.gallery-thumb-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gallery-thumb-item:hover .gallery-thumb-overlay {
	opacity: 1;
}

.gallery-thumb-overlay svg {
	width: 32px;
	height: 32px;
	color: var(--primary-yellow);
	transform: scale(0.6);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-thumb-item:hover .gallery-thumb-overlay svg {
	transform: scale(1);
}

/* Premium Asymmetric Grid Layout on Desktop */
@media (min-width: 768px) {
	.mono-premium-gallery-grid {
		grid-template-columns: repeat(12, 1fr);
		grid-auto-rows: 200px;
	}
	.gallery-thumb-item {
		aspect-ratio: auto;
	}
	.gallery-thumb-item:nth-child(5n+1) {
		grid-column: span 7;
		grid-row: span 2;
	}
	.gallery-thumb-item:nth-child(5n+2) {
		grid-column: span 5;
		grid-row: span 1;
	}
	.gallery-thumb-item:nth-child(5n+3) {
		grid-column: span 5;
		grid-row: span 1;
	}
	.gallery-thumb-item:nth-child(5n+4) {
		grid-column: span 4;
		grid-row: span 1;
	}
	.gallery-thumb-item:nth-child(5n+5) {
		grid-column: span 8;
		grid-row: span 1;
	}
}

/* Lightbox Styles */
.mono-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mono-lightbox.active {
	opacity: 1;
	pointer-events: auto;
}

.mono-lightbox-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 11, 13, 0.96);
	backdrop-filter: blur(10px);
}

.mono-lightbox-content {
	position: relative;
	max-width: 85%;
	max-height: 80%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0.95);
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mono-lightbox.active .mono-lightbox-content {
	transform: scale(1);
}

.mono-lightbox-img {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 30px 60px rgba(0,0,0,0.6);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mono-lightbox-img.loaded {
	opacity: 1;
}

.mono-lightbox-close {
	position: absolute;
	top: 30px;
	right: 30px;
	background: none;
	border: none;
	color: #fff;
	font-size: 48px;
	line-height: 1;
	cursor: pointer;
	z-index: 3;
	opacity: 0.6;
	transition: all 0.3s ease;
	outline: none;
}

.mono-lightbox-close:hover {
	opacity: 1;
	color: var(--primary-yellow);
	transform: scale(1.1);
}

.mono-lightbox-prev, .mono-lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 36px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	outline: none;
}

.mono-lightbox-prev:hover, .mono-lightbox-next:hover {
	background: var(--primary-yellow);
	color: #0f172a;
	border-color: var(--primary-yellow);
	transform: translateY(-50%) scale(1.05);
}

.mono-lightbox-prev {
	left: 40px;
}

.mono-lightbox-next {
	right: 40px;
}

.mono-lightbox-counter {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
	font-weight: 700;
	z-index: 3;
	letter-spacing: 0.2em;
	font-family: var(--font-headings);
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.mono-lightbox-prev {
		left: 20px;
		width: 50px;
		height: 50px;
		font-size: 28px;
	}
	.mono-lightbox-next {
		right: 20px;
		width: 50px;
		height: 50px;
		font-size: 28px;
	}
	.mono-lightbox-close {
		top: 20px;
		right: 20px;
		font-size: 38px;
	}
}

@media (max-width: 576px) {
	.mono-lightbox-prev, .mono-lightbox-next {
		top: auto;
		bottom: 25px;
		transform: none;
		width: 44px;
		height: 44px;
		font-size: 24px;
	}
	.mono-lightbox-prev:hover, .mono-lightbox-next:hover {
		transform: none;
	}
	.mono-lightbox-prev {
		left: 20px;
	}
	.mono-lightbox-next {
		right: 20px;
	}
	.mono-lightbox-counter {
		bottom: 35px;
	}
}

/* WhatsApp Canlı Destek Widget */
.mono-wa-widget {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99999;
	font-family: 'Inter', sans-serif;
}

.mono-wa-button {
	width: 60px;
	height: 60px;
	background-color: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
}

.mono-wa-button:hover {
	transform: scale(1.08);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.mono-wa-button svg {
	width: 32px;
	height: 32px;
	fill: currentColor;
}

/* Pulse animation ring */
.mono-wa-button::after {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	border: 2px solid #25D366;
	border-radius: 50%;
	opacity: 0;
	animation: waPulse 2s infinite;
	pointer-events: none;
}

@keyframes waPulse {
	0% {
		transform: scale(0.95);
		opacity: 0.8;
	}
	100% {
		transform: scale(1.25);
		opacity: 0;
	}
}

.mono-wa-chat-box {
	position: absolute;
	bottom: 80px;
	right: 0;
	width: 330px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	transform: scale(0.8);
	opacity: 0;
	transform-origin: bottom right;
	pointer-events: none;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mono-wa-chat-box.active {
	transform: scale(1);
	opacity: 1;
	pointer-events: auto;
}

.mono-wa-chat-header {
	background: #0f172a;
	padding: 20px;
	color: #fff;
	position: relative;
	border-bottom: 3px solid #F5D400;
}

.mono-wa-chat-header h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	font-family: 'Inter Tight', sans-serif;
	letter-spacing: -0.01em;
	display: flex;
	align-items: center;
	gap: 8px;
}

.mono-wa-chat-header .online-dot {
	width: 8px;
	height: 8px;
	background: #25D366;
	border-radius: 50%;
	display: inline-block;
	animation: waDotPulse 1.5s infinite;
}

@keyframes waDotPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	70% {
		box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

.mono-wa-chat-header p {
	margin: 5px 0 0 0;
	font-size: 11.5px;
	color: #a2a5aa;
	line-height: 1.4;
}

.mono-wa-chat-header .close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	opacity: 0.6;
	transition: opacity 0.2s ease;
}

.mono-wa-chat-header .close-btn:hover {
	opacity: 1;
}

.mono-wa-chat-body {
	padding: 20px;
	background: #f8fafc;
}

.mono-wa-field {
	margin-bottom: 15px;
	position: relative;
}

.mono-wa-field label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	color: #475569;
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.mono-wa-field input, .mono-wa-field textarea {
	width: 100%;
	padding: 10px 12px;
	font-size: 13px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	background: #fff;
	color: #1e293b;
	transition: all 0.2s ease;
	font-family: inherit;
}

.mono-wa-field input:focus, .mono-wa-field textarea:focus {
	outline: none;
	border-color: #25D366;
	box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.mono-wa-submit-btn {
	width: 100%;
	background: #25D366;
	color: #fff;
	border: none;
	padding: 12px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.2s ease;
	box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.mono-wa-submit-btn:hover {
	background: #20ba59;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.mono-wa-submit-btn svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}


