/* Smooth scrolling for anchor links */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

body {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
}

/* Başlık stilleri - Inter 700 */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
}

.main-wrapper {
	background-color: #121169;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

/* Navbar Container - Prevents white flash */
#navbar-container {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	z-index: 1000;
	background-color: #01004c;
	min-height: 80px;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
	box-sizing: border-box;
}

/* Site Header / Navbar Styles */
.site-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 100%;
	padding: 3px 48px;
	background-color: #01004c;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	color: #f5f5f1;
	height: auto;
	min-height: 80px;
	box-sizing: border-box;
}

/* Main content padding to account for fixed navbar */
main {
	padding-top: 140px;
	background-color: #121169;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
}

/* Products and Request Quote pages main background */
main.products-main,
main.quote-main {
	background-color: #ecf6ff;
}

.branding {
	display: flex;
	align-items: center;
}

.logo img {
	display: block;
	width: 130px;
	height: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 24px;
}

.site-nav ul {
	display: flex;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav a {
	position: relative;
	font-size: 18px;
	text-transform: none;
	letter-spacing: 0.08em;
	color: #f5f5f1;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
}

.site-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 1px;
	background-color: rgba(245, 245, 241, 0.6);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
	transform: scaleX(1);
}

.site-nav .nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 30px;
	border: 1px solid #f5f5f1;
	border-radius: 999px;
	font-size: 14px;
	letter-spacing: 0.04em;
	font-weight: 400;
	text-transform: none;
	color: #f5f5f1;
	transition: background-color 0.3s ease, color 0.3s ease;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
	background-color: #f5f5f1;
	color: #0f2f24;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: transparent;
	border-radius: 999px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background-color: #f5f5f1;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
	transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
	transform: translateY(-4px) rotate(-45deg);
}

.navbar-error {
	width: 100%;
	padding: 16px 24px;
	background-color: #4b1f1f;
	color: #f5f5f1;
	text-align: center;
	font-size: 14px;
}

/* Mobile Navbar Styles */
@media (max-width: 768px) {
	#navbar-container {
		min-height: 100px;
	}

	.site-header {
		padding: 36px 36px;
		min-height: 100px;
	}

	main {
		padding-top: 160px;
	}

	.site-nav {
		position: fixed;
		inset: 0;
		top: 140px;
		background-color: #01004c;
		padding: 120px 32px 40px;
		transform: translateX(100%);
		transition: transform 0.4s ease;
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}

	.site-nav.open {
		transform: translateX(0);
	}

	.site-nav ul {
		flex-direction: column;
		gap: 12px;
	}

	.site-nav .nav-cta {
		align-self: stretch;
		justify-content: center;
	}

	body.nav-open {
		overflow: hidden;
	}

	.nav-toggle {
		display: flex;
	}
}

@media (max-width: 480px) {
	#navbar-container {
		min-height: 90px;
	}

	.site-header {
		padding: 30px 24px;
		min-height: 90px;
	}

	main {
		padding-top: 150px;
	}

	.logo img {
		width: 100px;
	}
}

/* Text Gradient */
.text-gradient {
	background: linear-gradient(135deg, #ea543b 0%, #01004c 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Category content transitions */
.category-content {
	transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
	opacity: 1;
	transform: translateY(0);
}

.category-content.hidden {
	display: none !important;
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	height: 0 !important;
	min-height: 0 !important;
	max-height: 0 !important;
	overflow: hidden;
}

.category-empty-message.hidden {
	display: none !important;
	height: 0 !important;
	min-height: 0 !important;
	max-height: 0 !important;
	overflow: hidden;
}

.category-empty-message {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
	min-height: auto;
}

.category-empty-message > div {
	width: 100%;
	max-width: 100%;
	height: auto;
	min-height: auto;
}

/* PRODUCT CATEGORIES Navigation Styles */
:root {
	/* Color Variables */
	--nav-bg: rgba(234, 84, 59, 0.1);
	--active-text: #ea543b;
	--inactive-text: #374151;
	--transition-duration: 0.25s;
	--border-radius: 10px;
	--shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.product-categories-nav {
	display: flex;
	justify-content: center;
	width: 100%;
}

.categories-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	background-color: transparent;
	border-radius: 14px;
	padding-block: 14px;
	padding-inline: clamp(32px, 12.5vw, 96px);
	max-width: 100%;
}

.category-tab {
	/* Base styles for all tabs */
	border: none;
	background: transparent;
	padding: 12px 24px;
	border-radius: 999px;
	font-family: inherit;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.1px;
	color: #000000;
	cursor: pointer;
	transition: color 0.25s ease, background-color 0.25s ease;
	white-space: nowrap;
	min-height: 44px;
	/* Maintain consistent height */
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
}

.category-tab-text {
	flex: 1;
}

.category-dropdown-icon {
	display: none;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.category-tab:hover {
	color: #000000;
}

.category-tab.active {
	background: #ea543b;
	color: #000000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.product-categories-nav {
		position: relative;
		z-index: 100;
	}

	.categories-container {
		padding-block: 0;
		padding-inline: clamp(24px, 10vw, 64px);
		gap: 0;
		flex-direction: column;
		align-items: stretch;
		position: relative;
		z-index: 10;
		margin-bottom: 0;
	}

	.category-tab {
		padding: 16px 20px;
		font-size: 16px;
		font-weight: 600;
		min-height: 56px;
		width: 100%;
		max-width: 100%;
		justify-content: space-between;
		align-items: center;
		border: 2px solid rgba(234, 84, 59, 0.3);
		border-radius: 12px;
		background-color: #ffffff;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		position: relative;
		z-index: 2;
		margin: 0;
		box-sizing: border-box;
	}

	.category-tab:not(.active) {
		display: none;
		opacity: 0;
		transform: translateY(-10px);
		max-height: 0;
		overflow: hidden;
		padding: 0 20px;
		margin: 0;
		border: none;
		border-radius: 0;
		box-shadow: none;
		background-color: #ffffff;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
		position: absolute;
	}

	.categories-container.open {
		background-color: transparent;
		border-radius: 0;
		box-shadow: none;
		overflow: visible;
		border: none;
		position: relative;
		z-index: 1000;
	}

	@keyframes slideDown {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}


	.categories-container.open {
		position: relative;
		overflow: visible;
	}

	.categories-container.open::after {
		content: '';
		display: block;
		position: absolute;
		top: 56px;
		left: 0;
		right: 0;
		background-color: #ffffff;
		border: 2px solid rgba(234, 84, 59, 0.4);
		border-top: none;
		border-radius: 0 0 12px 12px;
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
		z-index: 999;
		pointer-events: none;
		opacity: 0;
		transition: opacity 0.3s;
	}

	.categories-container.open {
		display: flex;
		flex-direction: column;
	}

	.categories-container.open .category-tab.active {
		position: relative;
		z-index: 1001;
	}

	.categories-container.open .category-tab:not(.active) {
		display: flex;
		opacity: 1;
		transform: translateY(0);
		padding: 14px 20px;
		margin: 0;
		width: 100%;
		border: none;
		border-radius: 0;
		box-shadow: none;
		background-color: #ffffff;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
		min-height: 52px;
		font-size: 15px;
		position: relative;
		z-index: 1000;
		box-sizing: border-box;
	}

	.categories-container.open .category-tab.active + .category-tab:not(.active) {
		border-top: 2px solid rgba(234, 84, 59, 0.4);
	}

	.categories-container.open .category-tab:not(.active):last-of-type {
		border-bottom: 2px solid rgba(234, 84, 59, 0.4);
		border-radius: 0 0 12px 12px;
	}

	.categories-container.open .category-tab:last-child {
		border-bottom: none;
	}

	.categories-container.open .category-tab.active {
		background-color: #ea543b;
		color: #000000;
		font-weight: 700;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
		z-index: 3;
	}

	.categories-container.open .category-tab.active:hover {
		background-color: #ea543b;
	}

	.categories-container.open .category-tab:not(.active):hover {
		background-color: #f8f8f8;
	}

	.categories-container.open .category-tab.active .category-dropdown-icon {
		transform: rotate(180deg);
	}

	.category-tab.active {
		background: linear-gradient(135deg, #ea543b 0%, #e8442e 100%);
		border-color: #ea543b;
		color: #000000;
		box-shadow: 0 4px 12px rgba(234, 84, 59, 0.25);
	}

	.category-tab.active:hover {
		background: linear-gradient(135deg, #ea543b 0%, #e8442e 100%);
		box-shadow: 0 6px 16px rgba(234, 84, 59, 0.3);
		transform: translateY(-1px);
	}

	.category-dropdown-icon {
		display: block;
		width: 18px;
		height: 18px;
		flex-shrink: 0;
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.category-tab-text {
		text-align: left;
		flex: 1;
	}
}


@media (max-width: 480px) {
	.categories-container {
		padding-inline: clamp(20px, 8vw, 48px);
	}

	.category-tab {
		padding: 14px 18px;
		font-size: 15px;
	}

	.categories-container.open .category-tab {
		padding: 12px 18px;
		font-size: 14px;
	}
}

/* Floating animation for Trusted by card */
@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-8px);
	}
}

.floating-card {
	animation: float 3s ease-in-out infinite;
}

/* Section Dark */
.section-dark {
	background-color: #01004c;
	color: #f5f5f1;
}

/* Footer Styles */
.footer-error {
	width: 100%;
	padding: 32px 24px;
	background-color: #4b1f1f;
	color: #f5f5f1;
	text-align: center;
}

.footer-shell {
	width: 100%;
	max-width: 100%;
	padding: 70px 60px 40px;
	background-color: #01004c;
	color: #f5f5f1;
	display: flex;
	flex-direction: column;
	gap: 50px;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

.footer-inner {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 1.2fr);
	gap: 120px;
	align-items: start;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.footer-left {
	margin-left: 2rem;
}

.footer-left h2 {
	margin: 0 0 20px;
	font-size: 48px;
	letter-spacing: -0.02em;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
}

.footer-left p {
	margin: 0 0 32px;
	font-size: 18px;
	line-height: 1.7;
}

.footer-form {
	display: flex;
	gap: 12px;
	align-items: center;
}

.footer-form input {
	flex: 0 0 62.5%;
	max-width: 450px;
	padding: 18px 26px;
	border-radius: 12px;
	border: 1px solid rgba(245, 245, 241, 0.4);
	background-color: #ffffff;
	color: #121212;
	font-size: 16px;
	transition: border-color 0.3s ease, background-color 0.3s ease;
}

.footer-form input::placeholder {
	color: rgba(18, 18, 18, 0.45);
}

.footer-form input:focus {
	outline: none;
	border-color: rgba(18, 18, 18, 0.5);
	background-color: #ffffff;
}

.footer-form button {
	padding: 18px 34px;
	border-radius: 999px;
	border: 1px solid rgba(245, 245, 241, 0.8);
	background-color: transparent;
	color: #f5f5f1;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: none;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-form button:hover,
.footer-form button:focus-visible {
	background-color: #f5f5f1;
	color: #01004c;
}

.footer-right {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.footer-hours h3 {
	margin: 0 0 16px;
	font-size: 18px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
}

.footer-hours dl {
	margin: 0;
	display: grid;
	gap: 20px;
}

.hours-row {
	display: grid;
	gap: 6px;
}

.hours-row dt {
	font-size: 16px;
	font-weight: 600;
}

.hours-row dd {
	margin: 0;
	font-size: 16px;
	color: rgba(245, 245, 241, 0.7);
}

.footer-social {
	display: flex;
	gap: 18px;
}

.footer-social a {
	display: inline-flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
}

.footer-social svg {
	width: 20px;
	height: 20px;
	fill: #f5f5f1;
	transition: fill 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover svg,
.footer-social a:focus-visible svg {
	fill: rgba(234, 84, 59, 0.8);
	transform: translateY(-2px);
}

.footer-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-top: 10px;
}

.footer-meta a {
	border-bottom: 1px solid currentColor;
	padding-bottom: 4px;
	text-decoration: none;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Footer Responsive */
@media (max-width: 1024px) {
	.footer-shell {
		padding: 60px 40px 32px;
		gap: 40px;
	}

	.footer-inner {
		gap: 80px;
	}
}

@media (max-width: 768px) {
	.footer-shell {
		padding: 50px 28px 30px;
		gap: 32px;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.footer-form {
		flex-direction: column;
		align-items: stretch;
	}

	.footer-form input {
		flex-basis: 100%;
		max-width: none;
	}

	.footer-form button {
		width: 100%;
		text-align: center;
	}

	.footer-meta {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
}

@media (max-width: 560px) {
	.footer-shell {
		padding: 40px 20px 24px;
	}

	.footer-left h2 {
		font-size: 36px;
	}
}

/* Request Quote Button Hover */
.request-quote-btn:hover {
	background-color: #d1452e !important;
}

/* Ready to Get Started Section */
.request-section {
	background-color: #e4f1fc;
	width: 100%;
	max-width: 100vw;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

.request-cta-wrap {
	width: 100%;
	max-width: 100vw;
	display: flex;
	justify-content: center;
	padding: 48px 0 54px;
	box-sizing: border-box;
}

.request-quote-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 36px 80px;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.8);
	font-size: 18px;
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.1em;
	text-transform: none;
	color: #000000;
	background-color: transparent;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
	text-decoration: none;
}

.request-quote-button:hover,
.request-quote-button:focus-visible {
	background-color: #00044a;
	color: #ffffff;
	transform: translateY(-2px);
}

@media (max-width: 560px) {
	.request-cta-wrap {
		padding: 32px 0 64px;
	}

	.request-quote-button {
		width: calc(100% - 48px);
		max-width: 320px;
		padding: 18px 0;
		font-size: 16px;
	}
}

/* Contact Section Styles */
.contact-section {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	padding: 60px clamp(1rem, 3.5vw, 3.5rem);
	background-color: #ecf6ff;
	color: #000000;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
	.contact-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

.contact-inner {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: start;
	box-sizing: border-box;
	padding: 0 clamp(1rem, 2vw, 2rem);
}

@media (min-width: 1024px) {
	.contact-inner {
		grid-template-columns: 1fr 1fr;
		gap: 80px;
	}
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 32px;
	text-align: center;
	align-items: center;
}

.contact-heading {
	margin: 0;
	font-size: 0;
	display: flex;
	justify-content: center;
}

.contact-heading-line {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	font-size: 62px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #000000;
	font-family: 'Inter', sans-serif;
}

.contact-heading-line svg {
	width: 100%;
	height: 0.6em;
	position: absolute;
	left: 0;
	bottom: -0.26em;
	pointer-events: none;
}

.contact-heading-curve,
.contact-heading-tail {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.contact-heading-curve {
	stroke-width: 0.3em;
}

.contact-heading-tail {
	stroke-width: 0.34em;
}

/* Sustainability Heading Styles */
.sustainability-heading {
	margin: 0;
	font-size: 0;
	display: flex;
	justify-content: center;
}

.sustainability-heading-line {
	position: relative;
	display: inline-block;
	white-space: nowrap;
	font-size: 62px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #000000;
	font-family: 'Inter', sans-serif;
}

.sustainability-heading-line svg {
	width: 100%;
	height: 0.6em;
	position: absolute;
	left: 0;
	bottom: -0.26em;
	pointer-events: none;
}

.sustainability-heading-curve,
.sustainability-heading-tail {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sustainability-heading-curve {
	stroke-width: 0.3em;
}

.sustainability-heading-tail {
	stroke-width: 0.34em;
}

/* Product Range Heading Styles */
.product-range-heading {
	margin: 0;
	font-size: 0;
	display: flex;
	justify-content: center;
}

.product-range-heading-line {
	position: relative;
	display: inline-block;
	white-space: nowrap;
	font-size: 62px;
	font-weight: 700;
	letter-spacing: -0.02em;
	font-family: 'Inter', sans-serif;
}

.product-range-heading-line svg {
	width: 100%;
	height: 0.6em;
	position: absolute;
	left: 0;
	bottom: -0.26em;
	pointer-events: none;
}

.product-word {
	position: relative;
	display: inline-block;
}

.product-word svg {
	width: 100%;
	height: 0.6em;
	position: absolute;
	left: 0;
	bottom: -0.1em;
	pointer-events: none;
}

.product-range-heading-curve,
.product-range-heading-tail {
	fill: none;
	stroke: #000000;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.product-range-heading-curve {
	stroke-width: 0.3em;
}

.product-range-heading-tail {
	stroke-width: 0.34em;
}

/* Home Heading Styles */
.home-heading {
	margin: 0;
	font-size: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5em;
	text-align: center;
}

.home-heading-line svg {
	width: 100%;
	height: 0.6em;
	position: absolute;
	left: 0;
	bottom: -0.26em;
	pointer-events: none;
	overflow: hidden;
}

.home-heading-curve,
.home-heading-tail {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-heading-curve {
	stroke-width: 0.3em;
}

.home-heading-tail {
	stroke-width: 0.34em;
}

.contact-intro {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	color: #000000;
	line-height: 1.6;
	text-align: center;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.contact-detail {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	color: #000000;
	line-height: 1.6;
	text-align: center;
}

.contact-details p {
	font-size: 18px;
	line-height: 1.8;
	margin: 0 0 18px;
}

.contact-label {
	font-weight: 400;
}

.contact-link {
	color: #000000;
	text-decoration: underline;
	transition: opacity 0.2s ease;
}

.contact-link:hover {
	opacity: 0.7;
}

.contact-value {
	color: #000000;
}

.contact-form-wrapper {
	width: 100%;
}

.contact-form {
	display: flex;
	flex-direction: column;
	align-items: flex-start;

  }

.contact-form label {
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	width: 100%;
}

@media (min-width: 768px) {
	.form-row {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 4px;
  }

.form-label {
	font-size: 18px;
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	color: #000000;
	margin: 0;
}

.form-label .required-note {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.7);
	font-weight: 300;
}

.required-note {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.7);
	font-weight: 300;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 0 0 4px 0;
	border: none;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	border-radius: 0;
	font-size: 18px;
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	background: transparent;
	color: #000000;
	transition: border-bottom-color 0.2s ease;
	margin: 0;
	line-height: 1.5;
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: rgba(0, 0, 0, 0.5);
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.7);
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(0, 0, 0, 0.7);
	border-top: none;
	border-left: none;
	border-right: none;
}

.form-textarea {
	resize: vertical;
	min-height: 100px;
	overflow: auto;
	padding: 0 0 4px 0;
}

.contact-submit-button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	align-self: flex-start !important;
	padding: 20px 15px !important;
	border-radius: 999px !important;
	border: 1px solid rgba(0, 0, 0, 0.8) !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	font-family: 'Inter', sans-serif !important;
	letter-spacing: 0.1em !important;
	text-transform: none !important;
	background-color: transparent !important;
	color: #000000 !important;
	cursor: pointer !important;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease !important;
}

.contact-submit-button:hover,
.contact-submit-button:focus-visible {
	background-color: #00044a !important;
	color: #ffffff !important;
	transform: translateY(-2px) !important;
	border-color: rgba(0, 0, 0, 0.8) !important;
}

.contact-map-wrapper {
	width: 100%;
	max-width: 1600px;
	margin: 60px auto 0;
	padding: 0 clamp(1rem, 3vw, 3rem);
	box-sizing: border-box;
}

.contact-map {
	width: 100%;
	height: 495px;
	border: none;
	border-radius: 12px;
	display: block;
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
}

@media (max-width: 768px) {
	.contact-map-wrapper {
		margin-top: 40px;
		padding: 0 clamp(1rem, 4vw, 2rem);
	}

	.contact-map {
		height: 350px;
	}
}

@media (max-width: 480px) {
	.contact-map {
		height: 300px;
		border-radius: 8px;
	}
}

/* Contact Section Responsive */
@media (min-width: 769px) and (max-width: 1023px) {
	.contact-section {
		padding: 80px clamp(1rem, 3vw, 2rem);
	}

	.contact-inner {
		gap: 60px;
	}

	.contact-heading-line {
		font-size: 54px;
	}

	.sustainability-heading-line {
		font-size: 54px;
	}

	.product-range-heading-line {
		font-size: 54px;
	}
}

@media (max-width: 768px) {
	.contact-section {
		padding: 60px clamp(1rem, 4vw, 2rem);
	}

	.contact-inner {
		gap: 48px;
	}

	.contact-heading-line,
	.sustainability-heading-line,
	.product-range-heading-line {
		font-size: clamp(1.75rem, 7vw, 2.5rem);
	}

	.contact-heading-curve,
	.sustainability-heading-curve,
	.product-range-heading-curve {
		stroke-width: 0.3em;
	}

	.contact-heading-tail,
	.sustainability-heading-tail,
	.product-range-heading-tail {
		stroke-width: 0.34em;
	}

	.contact-intro,
	.contact-detail {
		font-size: 16px;
	}

	.contact-details p {
		font-size: 16px;
	}

	.form-label {
		font-size: 16px;
	}

	.form-input,
	.form-textarea {
		font-size: 16px;
	}

	.contact-submit-button {
		font-size: 16px;
		padding: 18px 14px;
		letter-spacing: 0.1em;
		font-weight: 400;
	}
}

@media (max-width: 560px) {
	.contact-section {
		padding: 32px clamp(1rem, 4vw, 1.25rem);
	}

	.contact-inner {
		gap: 40px;
	}

	.contact-heading-line,
	.sustainability-heading-line,
	.product-range-heading-line {
		font-size: clamp(1.5rem, 6vw, 2rem);
	}

	.contact-heading-curve,
	.sustainability-heading-curve,
	.product-range-heading-curve {
		stroke-width: 0.45em;
	}

	.contact-heading-tail,
	.sustainability-heading-tail,
	.product-range-heading-tail {
		stroke-width: 0.5em;
	}

	.contact-intro,
	.contact-detail {
		font-size: 14px;
	}

	.contact-details p {
		font-size: 16px;
	}

	.form-label {
		font-size: 14px;
	}

	.form-input,
	.form-textarea {
		font-size: 14px;
	}

	.contact-submit-button {
		font-size: 14px;
		padding: 16px 12px;
		letter-spacing: 0.1em;
		font-weight: 400;
		width: auto;
	}
}

/* Responsive Utilities - Consolidated */
.home-heading-line {
	position: relative;
	display: inline-block;
	white-space: nowrap;
	font-size: clamp(1.8rem, 5vw, 3.5rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.2;
	width: fit-content;
	max-width: 100%;
	box-sizing: border-box;
	text-align: center;
}

@media (min-width: 768px) {
	.home-heading-line {
		font-size: clamp(3rem, 4vw, 4.5rem);
	}
}

@media (min-width: 1200px) {
	.home-heading-line {
		font-size: 66px;
	}
}

/* Responsive Utilities */
.responsive-section-padding {
	width: 100%;
	max-width: 100%;
	padding-left: clamp(1rem, 3vw, 3%);
	padding-right: clamp(1rem, 3vw, 3%);
	box-sizing: border-box;
}

.responsive-grid-cols-5 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
	grid-auto-rows: min-content;
	align-items: start;
	height: auto;
	min-height: auto;
}

@media (max-width: 480px) {
	.responsive-grid-cols-5 {
		gap: 0.375rem;
	}
}

@media (min-width: 640px) {
	.responsive-grid-cols-5 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.5rem;
	}
}

@media (min-width: 1024px) {
	.responsive-grid-cols-5 {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 0.5rem;
	}
}

@media (min-width: 1400px) {
	.responsive-grid-cols-5 {
		gap: 0.625rem;
	}
}

/* Specific Section Overrides */
.sustainability-padding,
.products-padding {
	width: 100%;
	max-width: 100%;
	padding-left: clamp(1rem, 3vw, 3%);
	padding-right: clamp(1rem, 3vw, 3%);
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.sustainability-padding {
		padding-left: clamp(1.5rem, 4vw, 4%);
		padding-right: clamp(1.5rem, 4vw, 4%);
	}

	.products-padding {
		padding-left: clamp(1.5rem, 5vw, 5%);
		padding-right: clamp(1.5rem, 5vw, 5%);
	}
}

@media (min-width: 1024px) {
	.sustainability-padding {
		padding-left: clamp(2rem, 6vw, 6%);
		padding-right: clamp(2rem, 6vw, 6%);
	}

	.products-padding {
		padding-left: clamp(2rem, 8vw, 8%);
		padding-right: clamp(2rem, 8vw, 8%);
	}
}

/* Mobile Typography & Layout Tweaks */
@media (max-width: 480px) {
	/* Adjust floating card to prevent cutoff */
	.floating-card {
		right: 0.75rem !important;
		bottom: -70px !important;
		width: 140px !important;
		height: 140px !important;
		padding: 1rem !important;
	}

	.floating-card .text-3xl {
		font-size: 1.5rem;
	}
}

/* Feature Icons Grid Styles */
.feature-icons-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 1.5rem;
	width: 100%;
}

.feature-icon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.feature-icon-box {
	width: 3.6rem; /* 48px * 1.2 = 57.6px ≈ 3.6rem */
	height: 3.6rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(234, 84, 59, 0.1);
}

.feature-icon-box svg {
	width: 1.8rem; /* 24px * 1.2 = 28.8px ≈ 1.8rem */
	height: 1.8rem;
	color: #ea543b;
}

.feature-text {
	width: 100%;
	margin-top: 0.75rem;
}

.feature-title {
	font-size: 1.05rem; /* font-semibold base (~0.875rem) * 1.2 = 1.05rem */
	font-weight: 600;
	color: #000000;
	margin-top: 0.75rem;
	margin-bottom: 0.25rem;
}

.feature-subtitle {
	font-size: 1.05rem; /* text-sm (0.875rem) * 1.2 = 1.05rem */
	color: #000000;
	margin: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.feature-icons-grid {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 1rem;
	}
	
	.feature-icon-box {
		width: 3.2rem; /* Mobilde biraz küçük */
		height: 3.2rem;
	}
	
	.feature-icon-box svg {
		width: 1.6rem;
		height: 1.6rem;
	}
	
	.feature-title {
		font-size: 0.95rem;
	}
	
	.feature-subtitle {
		font-size: 0.8rem;
	}
}

@media (max-width: 480px) {
	.feature-icons-grid {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 0.5rem;
	}
	
	.feature-icon-box {
		width: 2.8rem;
		height: 2.8rem;
	}
	
	.feature-icon-box svg {
		width: 1.4rem;
		height: 1.4rem;
	}
	
	.feature-title {
		font-size: 0.85rem;
		margin-top: 0.5rem;
	}
	
	.feature-subtitle {
		font-size: 0.75rem;
	}
}

/* Section Base Styles */
section {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
	position: relative;
}

.home-section {
	background-color: #ecf6ff;
	padding-bottom: 8rem;
	padding-top: 2rem;
}

@media (max-width: 768px) {
	.home-section {
		padding-bottom: 4rem;
		padding-top: 1.5rem;
	}
}

/* Sustainability Section */
.sustainability-section {
	background-color: #e4f1fc;
	color: #000000;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding-top: 5rem;
	padding-bottom: 5rem;
	font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
	.sustainability-section {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
}

#sustainability img {
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	display: block;
}

#sustainability .relative {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

/* Sustainability 4-column grid */
#sustainability .grid.gap-8.mt-12 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
	#sustainability .grid.gap-8.mt-12 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	#sustainability .grid.gap-8.mt-12 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* Utility Classes */
.min-h-screen {
	min-height: 100vh;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.inset-0 {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.opacity-10 {
	opacity: 0.1;
}

.rounded-full {
	border-radius: 9999px;
}

.blur-3xl {
	filter: blur(64px);
}

.z-10 {
	z-index: 10;
}

.grid {
	display: grid;
}

.gap-12 {
	gap: 3rem;
}

.items-center {
	align-items: center;
}

.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.mb-8 {
	margin-bottom: 2rem;
}

.leading-relaxed {
	line-height: 1.625;
}

.flex {
	display: flex;
}

.flex-wrap {
	flex-wrap: wrap;
}

.gap-4 {
	gap: 1rem;
}

.mb-12 {
	margin-bottom: 3rem;
}

.grid-cols-3 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1rem;
}

/* Feature icons grid için her zaman 3 sütun */
.feature-icons-grid.grid-cols-3 {
	grid-template-columns: repeat(3, 1fr) !important;
}

@media (min-width: 640px) {
	.grid-cols-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
	.feature-icons-grid.grid-cols-3 {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (min-width: 1024px) {
	.grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	
	.feature-icons-grid.grid-cols-3 {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

.gap-6 {
	gap: 1.5rem;
}

.space-x-3 {
	gap: 0.75rem;
}

.w-12 {
	width: 3rem;
}

.h-12 {
	height: 3rem;
}

.rounded-lg {
	border-radius: 0.5rem;
}

.items-center {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

.font-semibold {
	font-weight: 600;
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.rounded-2xl {
	border-radius: 1rem;
}

.overflow-hidden {
	overflow: hidden;
}

.shadow-2xl {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.w-full {
	width: 100%;
}

.h-auto {
	height: auto;
}

.bg-gradient-to-t {
	background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-\[#01004c\]\/20 {
	--tw-gradient-from: rgba(1, 0, 76, 0.2);
	--tw-gradient-to: rgba(1, 0, 76, 0);
	--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-transparent {
	--tw-gradient-to: transparent;
}

.-bottom-6 {
	bottom: -1.5rem;
}

.-right-6 {
	right: 0;
}

@media (min-width: 640px) {
	.-right-6 {
		right: -1.5rem;
	}
}

.bg-white {
	background-color: #fff;
}

.shadow-xl {
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.p-6 {
	padding: 1.5rem;
}

.max-w-xs {
	max-width: 20rem;
}

.text-gray-600 {
	color: #4b5563;
}

.text-3xl {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.font-bold {
	font-weight: 700;
}

.text-gray-700 {
	color: #374151;
}

.py-20 {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.overflow-hidden {
	overflow: hidden;
}

.text-center {
	text-align: center;
}

.mb-16 {
	margin-bottom: 4rem;
}

.p-8 {
	padding: 2rem;
}

.md\:p-12 {
	padding: 3rem;
}

.md\:grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-8 {
	gap: 2rem;
}

.lg\:gap-12 {
	gap: 2rem;
}

@media (min-width: 1024px) {
	.lg\:gap-12 {
		gap: 3rem;
	}
}

.text-3xl {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.mb-6 {
	margin-bottom: 1.5rem;
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.space-y-6 {
	gap: 1.5rem;
}

.space-x-4 {
	gap: 1rem;
}

.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.rounded-xl {
	border-radius: 0.75rem;
}

.mt-12 {
	margin-top: 3rem;
}

.lg\:grid-cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.w-8 {
	width: 2rem;
}

.h-8 {
	height: 2rem;
}

.rounded-xl {
	border-radius: 0.75rem;
}

.flex-shrink-0 {
	flex-shrink: 0;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-0 {
	margin-bottom: 0;
}

.leading-relaxed {
	line-height: 1.625;
}

.py-16 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.md\:py-20 {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.mb-10 {
	margin-bottom: 2.5rem;
}

.md\:mb-12 {
	margin-bottom: 3rem;
}

.w-full {
	width: 100%;
}

.mb-8 {
	margin-bottom: 2rem;
}

.mt-4 {
	margin-top: 1rem;
}

.gap-4 {
	gap: 1rem;
}

.md\:gap-6 {
	gap: 1.5rem;
}

.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.w-16 {
	width: 4rem;
}

.h-16 {
	height: 4rem;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.py-20 {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.container {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	overflow-x: hidden;
	box-sizing: border-box;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.text-4xl {
	font-size: 2.25rem;
	line-height: 2.5rem;
}

.md\:text-5xl {
	font-size: 3rem;
	line-height: 1;
}

.pt-8 {
	padding-top: 2rem;
}

.pb-20 {
	padding-bottom: 5rem;
}

@media (min-width: 768px) {
	.md\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.md\:p-12 {
		padding: 3rem;
	}
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
	.sm\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.lg\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* Products Page Specific Styles */
/* Main content padding for products page */
main.products-main {
	padding-top: 140px;
	background-color: #ecf6ff;
	color: #000000;
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
	font-family: 'Inter', sans-serif;
}

/* Aspect Square Utility */
.aspect-square {
	aspect-ratio: 1 / 1;
}

/* Product Card Styles */
.product-grid .group {
	display: flex;
	flex-direction: column;
	height: auto;
}

.product-grid .group > a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.product-grid .group > a p {
	text-decoration: none;
	border: none;
}

.product-grid .group > a > div:first-child {
	flex-shrink: 0;
	aspect-ratio: 1 / 1;
	width: 100%;
}

.product-grid .group > a > div:last-child {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: auto;
	padding: 0.125rem 0;
}

.product-grid .group > div:last-child {
	margin-top: 0.125rem;
	flex-shrink: 0;
}

.product-grid .group {
	max-height: none;
}

.product-grid {
	height: auto !important;
	min-height: auto !important;
	max-height: none !important;
}

.category-content {
	height: auto !important;
	min-height: auto !important;
	max-height: none !important;
}

#products {
	height: auto !important;
	min-height: auto !important;
	max-height: none !important;
	font-family: 'Inter', sans-serif;
}

.products-section {
	background-color: #ecf6ff;
	color: #000000;
	padding-top: 5rem;
	padding-bottom: 2rem;
}

@media (max-width: 768px) {
	.products-section {
		padding-top: 3rem;
		padding-bottom: 1.5rem;
	}
}

/* Catalogs Section Styles */
.catalogs-section {
	width: 100%;
	max-width: 100vw;
	padding: 80px 80px;
	background-color: #e4f1fc;
	color: #000000;
	box-sizing: border-box;
}

.catalogs-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 64px;
	width: 100%;
}

.catalogs-heading {
	margin: 0;
	font-size: 0;
	display: flex;
	justify-content: center;
}

.catalogs-heading-line {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	font-size: 62px;
	font-weight: 700;
	letter-spacing: -0.02em;
	font-family: 'Inter', sans-serif;
	color: #000000;
}

.catalogs-heading-line svg {
	width: 100%;
	height: 0.6em;
	position: absolute;
	left: 0;
	bottom: -0.26em;
	pointer-events: none;
}

.catalogs-heading-curve,
.catalogs-heading-tail {
	fill: none;
	stroke: #000000;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.catalogs-heading-curve {
	stroke-width: 0.3em;
}

.catalogs-heading-tail {
	stroke-width: 0.34em;
}

.catalogs-intro {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	color: rgba(0, 0, 0, 0.86);
	line-height: 1.6;
	text-align: center;
	max-width: 700px;
}

.catalogs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	justify-items: center;
}

.catalog-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	width: fit-content;
}

.catalog-image-link {
	display: block;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.3s ease;
	width: 200px;
}

.catalog-image-link:hover {
	transform: scale(1.05);
}

.catalog-image-wrapper {
	width: 200px;
	height: 285px;
	display: block;
}

.catalog-image {
	width: 200px;
	height: 285px;
	object-fit: contain;
	display: block;
}

.catalog-description {
	margin: 0;
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.9);
	text-align: center;
}

.catalog-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 36px;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.8);
	font-size: 16px;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.08em;
	text-transform: none;
	color: #000000;
	background-color: transparent;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
	text-decoration: none;
}

.catalog-button:hover,
.catalog-button:focus-visible {
	background-color: #00044a;
	color: #ffffff;
	transform: translateY(-2px);
}

.catalogs-empty-state {
	width: 100%;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.9);
	margin: 12px 0 4px;
}

#products section {
	height: auto !important;
	min-height: auto !important;
}

[data-category-container] {
	height: auto !important;
	min-height: auto !important;
	max-height: none !important;
}

/* Ürün tab navigasyonu */
.product-tabs-nav {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

.product-tabs-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	background: transparent;
	padding: 6px 0;
	justify-content: center;
}

#specifications th p strong {
	font-size: 1.35rem;
	letter-spacing: 0.05em;
}

#specifications .spec-key {
	font-size: 0.9rem;
	font-weight: 600;
}

#specifications .spec-value {
	font-size: 0.9rem;
}

#specifications table tr:not(:last-child) td,
#specifications table tr:not(:last-child) th {
	border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.product-tab-button {
	border: none;
	background: transparent;
	color: #000000;
	padding: 12px 26px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.04em;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
	white-space: nowrap;
}

.product-tab-button svg {
	flex-shrink: 0;
}

.product-tab-button:hover {
	color: #000000;
	transform: translateY(-1px);
}

.product-tab-button.active {
	background: #ea543b;
	color: #000000;
	box-shadow: 0 12px 30px rgba(234, 84, 59, 0.28);
}

@media (max-width: 768px) {
	.product-tab-button {
		padding: 10px 18px;
		font-size: 15px;
	}
}

@media (max-width: 540px) {
	.product-tabs-container {
		width: 100%;
		flex-direction: column;
	}

	.product-tab-button {
		width: 100%;
		justify-content: center;
	}
}

/* Tab panel içerikleri */
.tab-panel {
	display: block;
}

.tab-panel.hidden {
	display: none;
}

main .tab-panel,
main .tab-panel p,
main .tab-panel strong,
main .tab-panel li {
	color: #000000 !important;
	text-align: center;
}

main .tab-panel .border {
	margin-left: auto;
	margin-right: auto;
}

main .tab-panel table {
	margin-left: auto;
	margin-right: auto;
}

.horizontal-scroll-chips {
	display: flex;
	justify-content: center;
	width: 100%;
	gap: 0.5rem;
}

.horizontal-scroll-chips button {
	flex: 0 0 auto;
	border: 2px solid transparent;
	transition: border-color 0.2s ease, opacity 0.2s ease;
	padding: 0;
}

.horizontal-scroll-chips button img {
	width: 100%;
	height: 100%;
	object-fit: fill;
	display: block;
	margin: 0;
	padding: 0;
}

.horizontal-scroll-chips button.active-thumbnail {
	border: 2px solid #ea543b;
	opacity: 1;
	box-shadow: 0 0 0 2px rgba(234, 84, 59, 0.2);
}

/* Quote Form Section */
.quote-form-section {
	padding-top: 5rem;
	padding-bottom: 5rem;
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.quote-form-container {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	padding-left: clamp(1rem, 3vw, 2rem);
	padding-right: clamp(1rem, 3vw, 2rem);
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 480px) {
	.quote-form-container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

.quote-form-header {
	text-align: center;
	margin-bottom: 2rem;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.quote-card-wrapper {
	width: 100%;
	max-width: 900px;
	overflow-x: hidden;
	background-color: #f8fbfe;
	border-radius: 1rem;
	padding: clamp(1rem, 2vw, 2rem);
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
}

.quote-form {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
}

.quote-form * {
	box-sizing: border-box;
}

.quote-card {
	width: 100% !important;
	max-width: 100% !important;
	overflow-x: hidden !important;
	box-sizing: border-box !important;
}

.quote-card,
.quote-card * {
	color: #1f2937 !important;
	box-sizing: border-box;
}

.quote-card .text-gray-600 {
	color: #4b5563 !important;
}

.quote-card .text-gray-500 {
	color: #6b7280 !important;
}

.quote-card label {
	color: #374151 !important;
}

/* Form Elements */
.form-group {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1.5rem;
	box-sizing: border-box;
}

.form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	color: #374151;
	margin-bottom: 0.5rem;
	width: 100%;
	max-width: 100%;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.form-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

.quote-form input[type="text"],
.quote-form input[type="number"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form select,
.quote-form textarea {
	width: 100%;
	max-width: 100%;
	padding: 0.75rem;
	border: 2px solid #e5e7eb;
	border-radius: 0.375rem;
	font-size: 0.875rem;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	background-color: #ffffff;
	color: #1f2937;
	box-sizing: border-box;
	display: block;
}

.quote-form input[type="text"]:focus,
.quote-form input[type="number"]:focus,
.quote-form input[type="email"]:focus,
.quote-form input[type="tel"]:focus,
.quote-form select:focus,
.quote-form textarea:focus {
	border-color: #ea543b;
	outline: none;
	box-shadow: none;
}

.quote-form textarea {
	min-height: 80px;
	resize: vertical;
}

.quote-form input[readonly] {
	background-color: #f3f4f6;
	cursor: not-allowed;
}

.file-upload-area {
	border: 2px dashed #d1d5db;
	border-radius: 0.375rem;
	padding: 2rem;
	text-align: center;
	cursor: pointer;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	position: relative;
}

.file-upload-area svg {
	width: 3rem;
	height: 3rem;
	color: #9ca3af;
	margin: 0 auto 0.5rem;
	display: block;
}

.file-upload-area input[type="file"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.file-upload-area p {
	margin: 0.5rem 0;
	font-size: 0.875rem;
	color: #4b5563;
}

.file-hint {
	font-size: 0.75rem;
	color: #6b7280;
}

.consent-group {
	margin-top: 1.5rem;
}

.consent-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	font-size: 0.875rem;
	color: #4b5563;
	font-weight: normal;
}

.consent-label input[type="checkbox"] {
	width: auto;
	margin: 0;
	cursor: pointer;
}

.quote-card input,
.quote-card select,
.quote-card textarea {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus {
	border-color: #ea543b !important;
	box-shadow: none !important;
	outline: none !important;
}

.quote-form .request-quote-btn {
	width: 100%;
	max-width: 100%;
	padding: 18px 30px;
	border-radius: 999px;
	border: 1px solid #ea543b;
	font-size: 18px;
	letter-spacing: 0.04em;
	font-weight: 600;
	color: #ea543b;
	background-color: transparent;
	transition: background-color 0.3s ease, color 0.3s ease;
	cursor: pointer;
	box-sizing: border-box;
	display: block;
	margin-top: 1.5rem;
}

.quote-form .request-quote-btn:hover,
.quote-form .request-quote-btn:focus-visible {
	background-color: #ea543b;
	color: #ffffff;
	border-color: #ea543b;
}

.quote-card .request-quote-btn {
	color: #ea543b !important;
	border-color: #ea543b !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

.quote-card .request-quote-btn:hover,
.quote-card .request-quote-btn:focus-visible {
	color: #ffffff !important;
	background-color: #ea543b !important;
	border-color: #ea543b !important;
}

.quote-heading {
	margin: 0;
	font-size: 0;
	display: flex;
	justify-content: center;
}

.quote-heading-line {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	font-size: clamp(2.5rem, 6vw, 3.5rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #000000;
	font-family: 'Inter', sans-serif;
}

.quote-heading-line svg {
	width: 100%;
	height: 0.6em;
	position: absolute;
	left: 0;
	bottom: -0.3em;
	pointer-events: none;
}

.quote-heading-curve,
.quote-heading-tail {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.quote-heading-curve {
	stroke-width: 0.3em;
}

.quote-heading-tail {
	stroke-width: 0.34em;
}

.quote-subtext {
	margin-top: 1.5rem;
	font-family: 'Inter', sans-serif;
}

.request-quote-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 18px 30px;
	border-radius: 999px;
	border: 1px solid #ea543b;
	font-size: 18px;
	letter-spacing: 0.04em;
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	color: #ea543b;
	background-color: transparent;
	transition: background-color 0.3s ease, color 0.3s ease;
	cursor: pointer;
}

.request-quote-btn:hover,
.request-quote-btn:focus-visible {
	background-color: #ea543b;
	color: #ffffff;
}

#consent {
	border-color: #ea543b;
	color: #ea543b;
}

#consent.checked-consent {
	background-color: #ea543b;
	border-color: #ea543b;
	color: #ffffff;
}

/* Product Heading Styles */
.product-heading {
	margin: 0;
	font-size: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5em;
}

.product-heading-line {
	position: relative;
	display: inline-block;
	white-space: nowrap;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.6;
	width: fit-content;
	font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
	.product-heading-line {
		font-size: 48px;
	}
}

@media (min-width: 1024px) {
	.product-heading-line {
		font-size: 56px;
	}
}

.product-heading-line svg {
	width: 100%;
	height: 0.6em;
	position: absolute;
	left: 0;
	bottom: -0.15em;
	pointer-events: none;
	overflow: hidden;
}

.product-heading-curve,
.product-heading-tail {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.product-heading-curve {
	stroke-width: 0.3em;
}

.product-heading-tail {
	stroke-width: 0.34em;
}

/* Products page main background override */
body.products-page main {
	background-color: #ecf6ff;
}

.product-page-container {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	padding-left: clamp(1rem, 3vw, 10rem);
	padding-right: clamp(1rem, 3vw, 10rem);
	padding-top: 5rem;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.product-page-container {
		padding-left: clamp(1rem, 4vw, 2rem);
		padding-right: clamp(1rem, 4vw, 2rem);
		padding-top: 3rem;
	}
}

@media (max-width: 480px) {
	.product-page-container {
		padding-left: 1rem;
		padding-right: 1rem;
		padding-top: 2rem;
	}
}

/* Request Quote Page Styles */
.quote-main {
	padding-top: 140px;
	background-color: #ecf6ff;
	color: #000000;
	font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
	.quote-main {
		padding-top: 110px;
	}
}

.has-fixed-nav {
	padding-top: 0;
}

.bg-white {
	background-color: #ffffff;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.md\:py-16 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.max-w-4xl {
	max-width: 56rem;
	width: 100%;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.max-w-4xl {
		max-width: 100%;
		width: 100%;
	}
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.rounded-2xl {
	border-radius: 1rem;
}

.shadow-xl {
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.p-8 {
	padding: 2rem;
}

.space-y-6 > * + * {
	margin-top: 1.5rem;
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.font-semibold {
	font-weight: 600;
}

.text-gray-700 {
	color: #374151;
}

.mb-2 {
	margin-bottom: 0.5rem;
}

.h-10 {
	height: 2.5rem;
}

.w-full {
	width: 100%;
}

.rounded-md {
	border-radius: 0.375rem;
}

.border-2 {
	border-width: 2px;
}

.border-input {
	border-color: #e5e7eb;
}

.bg-white {
	background-color: #ffffff;
}

.px-3 {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.transition-colors {
	transition-property: color, background-color, border-color;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.grid {
	display: grid;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

/* Grid columns for product page */
.lg\:grid-cols-12 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 1024px) {
	.lg\:grid-cols-12 {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}
}

.lg\:col-span-4 {
	grid-column: span 1 / span 1;
}

.lg\:col-span-5 {
	grid-column: span 1 / span 1;
}

.lg\:col-span-7 {
	grid-column: span 1 / span 1;
}

.lg\:col-span-8 {
	grid-column: span 1 / span 1;
}

@media (min-width: 1024px) {
	.lg\:col-span-4 {
		grid-column: span 4 / span 4;
	}
	
	.lg\:col-span-5 {
		grid-column: span 5 / span 5;
	}
	
	.lg\:col-span-7 {
		grid-column: span 7 / span 7;
	}
	
	.lg\:col-span-8 {
		grid-column: span 8 / span 8;
	}
}

/* Order utilities for product page */
.order-1 {
	order: 1;
}

.order-2 {
	order: 2;
}

@media (min-width: 1024px) {
	.lg\:order-1 {
		order: 1;
	}
	
	.lg\:order-2 {
		order: 2;
	}
}

.items-start {
	align-items: start;
}

.md\:grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

.quote-card .grid {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

.gap-6 {
	gap: 1.5rem;
}

.min-h-\[80px\] {
	min-height: 80px;
}

.border-t {
	border-top-width: 1px;
}

.border-gray-200 {
	border-color: #e5e7eb;
}

.pt-6 {
	padding-top: 1.5rem;
}

.mt-2 {
	margin-top: 0.5rem;
}

.flex {
	display: flex;
}

.justify-center {
	justify-content: center;
}

.border-dashed {
	border-style: dashed;
}

.rounded-md {
	border-radius: 0.375rem;
}

.cursor-pointer {
	cursor: pointer;
}

.space-y-1 > * + * {
	margin-top: 0.25rem;
}

.text-center {
	text-align: center;
}

.text-xs {
	font-size: 0.75rem;
	line-height: 1rem;
}

.text-gray-500 {
	color: #6b7280;
}

.items-center {
	align-items: center;
}

.space-x-2 > * + * {
	margin-left: 0.5rem;
}

.ml-2 {
	margin-left: 0.5rem;
}

/* Story Section Styles */
.story-section {
	width: 100%;
	max-width: 100vw;
	padding: 20px 40px;
	background-color: #ecf6ff;
	color: #000000;
	display: flex;
	flex-direction: column;
	gap: 64px;
	box-sizing: border-box;
}

.story-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 72px;
	align-items: stretch;
	margin-top: 40px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.story-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-top: 48px;
}

.story-content p {
	margin: 0 0 36px;
	font-size: 16px;
	line-height: 1.8;
	color: rgba(0, 0, 0, 0.9);
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	text-align: center;
}

.story-media img {
	width: 100%;
	height: auto;
	border-radius: 28px;
	display: block;
	object-fit: cover;
}

.story-cta {
	display: flex;
	justify-content: center;
	margin-top: -40px;
}

.swoosh-heading {
	margin: 48px 0 80px;
	font-size: 0;
	display: flex;
	justify-content: center;
}

.swoosh-line {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	font-size: 72px;
	font-weight: 700;
	letter-spacing: -0.02em;
	font-family: 'Inter', sans-serif;
	color: #000000;
}

.swoosh-line svg {
	width: 100%;
	height: 0.6em;
	position: absolute;
	left: 0%;
	bottom: -0.26em;
	pointer-events: none;
}

.swoosh-curve,
.swoosh-tail {
	fill: none;
	stroke: #000000;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.swoosh-curve {
	stroke-width: 0.3em;
}

.swoosh-tail {
	stroke-width: 0.34em;
}

.pill-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 36px 80px;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.8);
	font-size: 18px;
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.1em;
	text-transform: none;
	color: #000000;
	background-color: transparent;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
	text-decoration: none;
}

.pill-button:hover,
.pill-button:focus-visible {
	background-color: #00044a;
	color: #ffffff;
	transform: translateY(-2px);
}

/* Reveal Animation */
.reveal {
	opacity: 1;
	transform: none;
	transition: none;
}

.reveal.in {
	opacity: 1;
	transform: none;
}

@media (max-width: 1279px) {
	.catalogs-section {
		padding: 70px 60px;
	}

	.catalogs-heading-line {
		font-size: 54px;
	}

	.catalogs-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}

	.catalog-image-link {
		width: 180px;
	}

	.catalog-image-wrapper {
		width: 180px;
		height: 256px;
	}

	.catalog-image {
		width: 180px;
		height: 256px;
	}

	.story-section {
		padding: 50px 60px;
	}

	.story-inner {
		gap: 48px;
	}

	.swoosh-line {
		font-size: 58px;
	}
}

@media (max-width: 920px) {
	.catalogs-section {
		padding: 60px 32px;
		overflow-x: hidden;
	}

	.catalogs-heading-line {
		font-size: 46px;
	}

	.catalogs-intro {
		font-size: 16px;
	}

	.catalogs-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
		max-width: 800px;
	}

	.catalog-image-link {
		width: 160px;
	}

	.catalog-image-wrapper {
		width: 160px;
		height: 228px;
	}

	.catalog-image {
		width: 160px;
		height: 228px;
	}

	.catalog-description {
		font-size: 15px;
	}

	.story-section {
		padding: 40px 32px;
		gap: 48px;
		overflow-x: hidden;
	}

	.story-inner {
		grid-template-columns: 1fr;
		gap: 40px;
		margin-top: 16px;
		width: 100%;
		padding: 0;
	}

	.story-media img {
		border-radius: 24px;
	}

	.story-content {
		margin-top: 0;
	}

	.story-content p {
		font-size: 16px;
	}

	.swoosh-line {
		font-size: 48px;
	}
}

@media (max-width: 560px) {
	.catalogs-section {
		padding: 60px 32px;
		overflow-x: hidden;
	}

	.catalogs-heading-line {
		font-size: 38px;
	}

	.catalogs-intro {
		font-size: 15px;
	}

	.catalogs-grid {
		grid-template-columns: 1fr;
		gap: 28px;
		max-width: 400px;
	}

	.catalog-item {
		gap: 20px;
	}

	.catalog-image-link {
		width: 140px;
	}

	.catalog-image-wrapper {
		width: 140px;
		height: 199px;
	}

	.catalog-image {
		width: 140px;
		height: 199px;
	}

	.catalog-description {
		font-size: 14px;
	}

	.catalog-button {
		padding: 14px 32px;
		font-size: 14px;
	}

	.story-section {
		padding: 32px 20px;
		gap: 40px;
		overflow-x: hidden;
	}

	.story-inner {
		gap: 32px;
	}

	.story-content p {
		font-size: 15px;
		text-align: left;
	}

	.story-cta {
		padding-bottom: 8px;
	}

	.swoosh-line {
		font-size: 38px;
	}

	.pill-button {
		width: calc(100% - 48px);
		max-width: 320px;
		padding: 18px 0;
		font-size: 16px;
	}
}

/* Team Page Styles */
.team-page {
	background-color: #ecf6ff;
	color: #000000;
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden;
}

.team-page main {
	padding: 140px 80px 100px;
	display: flex;
	flex-direction: column;
	gap: 60px;
	background-color: #ecf6ff;
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden;
	box-sizing: border-box;
}

.team-hero {
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
	overflow: visible;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

.team-swoosh-heading {
	margin: 0;
	font-size: 0;
	display: flex;
	justify-content: center;
	width: 100%;
	overflow: visible;
}

.team-swoosh-line {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	font-size: 70px;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: #000000;
	font-family: 'Inter', sans-serif;
	width: auto;
	max-width: 100%;
	box-sizing: border-box;
	overflow: visible;
}

.team-swoosh-line svg {
	width: 100%;
	max-width: 100%;
	height: 0.55em;
	position: absolute;
	left: 0;
	bottom: -0.24em;
	pointer-events: none;
	overflow: visible;
}

.team-swoosh-curve,
.team-swoosh-tail {
	fill: none;
	stroke: #000000;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.team-swoosh-curve {
	stroke-width: 0.32em;
}

.team-swoosh-tail {
	stroke-width: 0.32em;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 60px;
}

.team-grid--single {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	justify-items: center;
}

.team-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	max-width: 450px;
	margin: 0 auto;
	text-align: center;
}

.team-card--single {
	max-width: 450px;
	margin: 0 auto;
	grid-column: 1;
}

.team-photo {
	margin: 0;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 3 / 4;
}

.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.team-card-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
}

.team-card-body h2 {
	margin: 0;
	font-size: 20px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	color: #000000;
}

.team-role {
	margin: 0;
	font-size: 14px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.7);
	font-family: 'Inter', sans-serif;
	font-weight: 400;
}

.team-card-body p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.82);
	font-family: 'Inter', sans-serif;
	font-weight: 400;
}

.team-cta {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.team-cta .pill-button {
	border-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 1279px) {
	.team-page main {
		padding: 160px 60px 80px;
		overflow-x: hidden;
	}

	.team-grid {
		gap: 40px;
	}
}

@media (max-width: 920px) {
	.team-page main {
		padding: 150px 32px 64px;
		overflow-x: hidden;
	}

	.team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px;
	}

	.team-grid--single {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.team-card {
		max-width: none;
	}

	.team-card--single {
		grid-column: 1;
		margin: 0 auto;
	}

	.team-swoosh-line {
		font-size: 48px;
		overflow: hidden;
		max-width: 100%;
	}
}

@media (max-width: 560px) {
	.team-page main {
		padding: 180px 20px 56px;
		gap: 40px;
		overflow-x: hidden;
	}

	.team-swoosh-line {
		font-size: 38px;
		overflow: visible;
		max-width: 100%;
	}
	
	.team-hero {
		margin-top: 0;
	}

	.team-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.team-grid--single {
		grid-template-columns: 1fr;
	}

	.team-card {
		gap: 20px;
	}

	.team-card--single {
		margin: 0 auto;
		grid-column: 1;
	}
}

@media (max-width: 767px) {
	.md\:grid-cols-2 {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	
	.quote-form .form-row {
		grid-template-columns: 1fr;
	}
}

