/**
 * Sosyal XL Elementor - Widget Styles
 *
 * @package SosyalXL\Elementor
 * @since   0.1.0
 */

/* ==========================================================================
   SXL Hero Form Widget
   ========================================================================== */

/* Container - Full Width */
.sxl-hero {
	position: relative;
	width: 100vw;
	min-height: 70vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	/* Container'dan çıkıp tam genişlik yapma */
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	/* Navbar'ın arkasına git - tema CSS değişkenlerini kullan */
	--sxl-hero-offset: calc(var(--sxl-header-height, 100px) + var(--sxl-admin-bar-height, 0px));
	margin-top: calc(var(--sxl-hero-offset) * -1);
	padding-top: var(--sxl-hero-offset);
}

/* Background Image */
.sxl-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

/* Background Image (SEO-friendly with alt text) */
.sxl-hero__bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Video Background */
.sxl-hero__bg--video {
	overflow: hidden;
}

.sxl-hero__video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
}

/* Overlay */
.sxl-hero__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 1);
	opacity: 0.15;
	z-index: 1;
}

/* Inner Container */
.sxl-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 60px 40px;
	display: grid;
	grid-template-columns: 55% 45%;
	gap: 40px;
	align-items: center;
}

/* ==========================================================================
   Sol Blok - Metin İçeriği
   ========================================================================== */

.sxl-hero__left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

/* Üst Label/Pill - Outline Stil */
.sxl-hero__label {
	display: inline-block;
	padding: 10px 24px;
	background-color: transparent;
	color: #1a1a1a;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	border: 1.5px solid #1a1a1a;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.sxl-hero__label:hover {
	background-color: #1a1a1a;
	color: #ffffff;
}

/* Ana Başlık - Serif, Italic */
.sxl-hero__title {
	margin: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.15;
	color: #1a2a3a;
	text-shadow: 
		1px 1px 0 rgba(255, 255, 255, 0.6),
		2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Açıklama */
.sxl-hero__desc {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: #2a3a4a;
	max-width: 480px;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Feature Rozetleri Container */
.sxl-hero__features {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

/* Tek Rozet */
.sxl-hero__feature-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background-color: rgba(30, 50, 60, 0.85);
	color: #ffffff;
	font-size: 0.8125rem;
	font-weight: 500;
	border-radius: 6px;
	transition: background-color 0.2s ease;
}

.sxl-hero__feature-pill:hover {
	background-color: rgba(30, 50, 60, 0.95);
}

.sxl-hero__feature-pill i,
.sxl-hero__feature-pill svg {
	font-size: 0.875rem;
	width: 16px;
	height: 16px;
}

/* ==========================================================================
   Sağ Blok - Form Kartı
   ========================================================================== */

.sxl-hero__right {
	display: flex;
	justify-content: flex-end;
}

/* Kart */
.sxl-hero__card {
	width: 100%;
	max-width: 420px;
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 
		0 25px 80px rgba(0, 0, 0, 0.15),
		0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

/* Kart Üst Kısım - Koyu */
.sxl-hero__card-head {
	background-color: #1a3a4a;
	padding: 28px 28px 24px;
	text-align: center;
}

.sxl-hero__card-title {
	margin: 0 0 10px;
	font-size: 1.375rem;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.3;
}

.sxl-hero__card-subtitle {
	margin: 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.5;
}

/* Kart Alt Kısım - Beyaz */
.sxl-hero__card-body {
	padding: 24px 28px 28px;
}

/* Form */
.sxl-hero__form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Input Alanları Container - 3 yan yana */
.sxl-hero__fields {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

/* Tek Input */
.sxl-hero__field {
	width: 100%;
	padding: 14px 16px;
	font-size: 0.9375rem;
	font-family: inherit;
	color: #1a1a1a;
	background: #f8f9fa;
	border: 1px solid #e0e4e8;
	border-radius: 8px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sxl-hero__field::placeholder {
	color: #8a9199;
}

.sxl-hero__field:focus {
	border-color: #1a3a4a;
	box-shadow: 0 0 0 3px rgba(26, 58, 74, 0.1);
	background: #ffffff;
}

/* CTA Buton */
.sxl-hero__button {
	display: block;
	width: 100%;
	padding: 16px 24px;
	font-size: 1rem;
	font-weight: 600;
	font-family: inherit;
	text-align: center;
	text-decoration: none;
	color: #ffffff;
	background-color: #1a3a4a;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.25s ease;
}

.sxl-hero__button:hover {
	background-color: #0f252f;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(26, 58, 74, 0.3);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.sxl-hero__inner {
		grid-template-columns: 50% 50%;
		gap: 30px;
		padding: 50px 30px;
	}

	.sxl-hero__title {
		font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	}

	.sxl-hero__card {
		max-width: 380px;
	}
}

@media (max-width: 768px) {
	.sxl-hero {
		min-height: auto;
		flex-direction: column;
		align-items: stretch;
	}

	.sxl-hero__inner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 50px 20px 30px;
	}

	.sxl-hero__left {
		align-items: center;
		text-align: center;
	}

	.sxl-hero__title {
		font-size: 2rem;
	}

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

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

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

	.sxl-hero__card {
		max-width: 100%;
	}

	.sxl-hero__fields {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.sxl-hero__inner {
		padding: 40px 16px;
	}

	.sxl-hero__label {
		font-size: 0.6875rem;
		padding: 8px 14px;
	}

	.sxl-hero__title {
		font-size: 1.625rem;
	}

	.sxl-hero__feature-pill {
		font-size: 0.75rem;
		padding: 8px 12px;
	}

	.sxl-hero__card-head {
		padding: 22px 20px 18px;
	}

	.sxl-hero__card-title {
		font-size: 1.125rem;
	}

	.sxl-hero__card-body {
		padding: 20px;
	}

	.sxl-hero__field {
		padding: 12px 14px;
		font-size: 0.875rem;
	}

	.sxl-hero__button {
		padding: 14px 20px;
		font-size: 0.9375rem;
	}
}

/* ==========================================================================
   Sosyal Medya Çubuğu
   ========================================================================== */

.sxl-social-sidebar {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 8px;
	/* Navbar ile aynı glassmorphism efekti */
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.45));
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 16px;
	z-index: 10;
	box-shadow: 
		0 10px 40px rgba(0, 0, 0, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.sxl-social-sidebar--right {
	right: 20px;
}

.sxl-social-sidebar--left {
	left: 20px;
}

.sxl-social-sidebar__item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.sxl-social-sidebar__item:hover {
	transform: scale(1.1);
}

.sxl-social-sidebar__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1a1a1a; /* Cam arka plan için koyu renk */
}

.sxl-social-sidebar__icon i,
.sxl-social-sidebar__icon svg {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

/* Label/Tooltip */
.sxl-social-sidebar__label {
	position: absolute;
	white-space: nowrap;
	padding: 8px 16px;
	background-color: #3b82f6;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, transform 0.25s ease;
	pointer-events: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Label position for right sidebar */
.sxl-social-sidebar--right .sxl-social-sidebar__label {
	right: 100%;
	margin-right: 12px;
	transform: translateX(10px);
}

/* Label position for left sidebar */
.sxl-social-sidebar--left .sxl-social-sidebar__label {
	left: 100%;
	margin-left: 12px;
	transform: translateX(-10px);
}

/* Arrow for label */
.sxl-social-sidebar__label::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: 6px solid transparent;
}

.sxl-social-sidebar--right .sxl-social-sidebar__label::after {
	left: 100%;
	border-left-color: inherit;
}

.sxl-social-sidebar--left .sxl-social-sidebar__label::after {
	right: 100%;
	border-right-color: inherit;
}

/* Show label on hover */
.sxl-social-sidebar__item:hover .sxl-social-sidebar__label {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* Responsive - Mobilde form kartının altında ortada */
@media (max-width: 768px) {
	.sxl-social-sidebar {
		position: relative;
		top: auto;
		left: auto !important;
		right: auto !important;
		bottom: auto;
		transform: none !important;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 4px;
		margin: 0 auto 30px;
		z-index: 2;
	}

	.sxl-social-sidebar__item {
		width: 40px;
		height: 40px;
	}

	.sxl-social-sidebar__label {
		display: none;
	}
}

/* ==========================================================================
   SXL Before After Widget
   ========================================================================== */

.sxl-ba {
	padding: 60px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Header */
.sxl-ba__header {
	text-align: center;
	margin-bottom: 50px;
}

.sxl-ba__badge {
	display: inline-block;
	padding: 10px 24px;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #1a1a1a;
	background-color: transparent;
	border: 1.5px solid #1a1a1a;
	border-radius: 50px;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.sxl-ba__title {
	margin: 0 0 16px;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
}

.sxl-ba__desc {
	margin: 0;
	font-size: 1.0625rem;
	color: #6b7280;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

/* Cards Grid */
.sxl-ba__grid {
	display: grid;
	gap: 24px;
	margin-bottom: 50px;
}

.sxl-ba__grid--2 {
	grid-template-columns: repeat(2, 1fr);
}

.sxl-ba__grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.sxl-ba__grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

/* Single Card */
.sxl-ba__card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	border: 2px solid #1a1a1a;
	background: #ffffff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sxl-ba__card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.sxl-ba__card-inner {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

/* Before/After Images */
.sxl-ba__before,
.sxl-ba__after {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.sxl-ba__before img,
.sxl-ba__after img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sxl-ba__after {
	clip-path: inset(0 0 0 50%);
	transition: clip-path 0.1s ease-out;
}

/* Labels */
.sxl-ba__label {
	position: absolute;
	top: 16px;
	padding: 8px 16px;
	font-size: 0.6875rem;
	font-weight: 700;
	color: #ffffff;
	background-color: #1a1a1a;
	border-radius: 8px;
	z-index: 5;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.sxl-ba__label--before {
	left: 16px;
	background-color: rgba(0, 0, 0, 0.6);
}

.sxl-ba__label--after {
	right: 16px;
	background-color: #1a1a1a;
}

/* Slider Line & Handle */
.sxl-ba__slider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	background-color: #1a1a1a;
	transform: translateX(-50%);
	z-index: 10;
	cursor: ew-resize;
	transition: left 0.1s ease-out;
}

.sxl-ba__handle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	background-color: #1a1a1a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sxl-ba__card:hover .sxl-ba__handle {
	transform: translate(-50%, -50%) scale(1.1);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Overlay */
.sxl-ba__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 20;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	padding: 20px;
}

.sxl-ba__overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

/* Overlay - Always visible */
.sxl-ba__overlay[data-trigger="always"] {
	opacity: 1;
	visibility: visible;
}

/* Overlay - On Hover */
.sxl-ba__card:hover .sxl-ba__overlay[data-trigger="on_hover"] {
	opacity: 1;
	visibility: visible;
}

.sxl-ba__overlay-content {
	text-align: center;
	max-width: 260px;
	padding: 20px;
}

.sxl-ba__overlay-icon {
	width: 56px;
	height: 56px;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 1.5rem;
	color: #1a1a1a;
}

.sxl-ba__overlay-title {
	margin: 0 0 12px;
	font-size: 1.125rem;
	font-weight: 700;
	color: #1a1a1a;
}

.sxl-ba__overlay-text {
	margin: 0 0 24px;
	font-size: 0.875rem;
	color: #6b7280;
	line-height: 1.6;
}

.sxl-ba__overlay-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #ffffff;
	background-color: #25d366;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.sxl-ba__overlay-btn:hover {
	background-color: #1fb855;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.sxl-ba__overlay-btn i,
.sxl-ba__overlay-btn svg {
	font-size: 1.125rem;
	line-height: 1;
}

/* CTA Section */
.sxl-ba__cta {
	text-align: center;
	padding-top: 20px;
}

.sxl-ba__cta-text {
	margin: 0 0 24px;
	font-size: 1.0625rem;
	color: #6b7280;
}

.sxl-ba__cta-btn {
	display: inline-block;
	padding: 16px 40px;
	font-size: 1rem;
	font-weight: 600;
	color: #1a1a1a;
	background-color: transparent;
	border: 2px solid #1a1a1a;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.sxl-ba__cta-btn:hover {
	background-color: #1a1a1a;
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Animation States */
.sxl-ba__card.is-animating .sxl-ba__slider,
.sxl-ba__card.is-animating .sxl-ba__after {
	transition: none;
}

/* Responsive */
@media (max-width: 1024px) {
	.sxl-ba__grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.sxl-ba__grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.sxl-ba {
		padding: 40px 16px;
	}

	.sxl-ba__header {
		margin-bottom: 30px;
	}

	.sxl-ba__grid--2,
	.sxl-ba__grid--3,
	.sxl-ba__grid--4 {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

	.sxl-ba__card-inner {
		aspect-ratio: 1 / 1.2;
	}

	.sxl-ba__overlay-content {
		max-width: 240px;
	}

	.sxl-ba__cta-btn {
		padding: 14px 32px;
	}
}

/* ==========================================================================
   SXL Content Steps Widget
   ========================================================================== */

.sxl-cs {
	padding: 80px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.sxl-cs__inner {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

/* Sol Kolon */
.sxl-cs__left {
	flex: 0 0 50%;
}

.sxl-cs__subtitle {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #1a1a1a;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.sxl-cs__title {
	margin: 0 0 24px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.2;
	color: #1a1a1a;
}

.sxl-cs__content {
	font-size: 1rem;
	line-height: 1.8;
	color: #4b5563;
}

.sxl-cs__content p {
	margin: 0 0 16px;
}

.sxl-cs__content p:last-child {
	margin-bottom: 0;
}

.sxl-cs__content strong {
	font-weight: 600;
	color: #1a1a1a;
}

.sxl-cs__content .sxl-highlight {
	color: #1a1a1a;
	font-weight: 600;
}

.sxl-cs__image {
	margin-top: 40px;
	border-radius: 16px;
	overflow: hidden;
}

.sxl-cs__image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Sağ Kolon - Adımlar */
.sxl-cs__right {
	flex: 0 0 50%;
}

.sxl-cs__steps {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.sxl-cs__step {
	display: flex;
	gap: 20px;
	padding: 24px;
	background-color: #ffffff;
	border-radius: 12px;
	border-left: 4px solid #1a1a1a;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sxl-cs__step:hover {
	transform: translateX(5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.sxl-cs__step-number {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: 600;
	color: #1a1a1a;
	border: 2px solid #1a1a1a;
	border-radius: 50%;
	background: transparent;
}

.sxl-cs__step-content {
	flex: 1;
}

.sxl-cs__step-title {
	margin: 0 0 8px;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.3;
}

.sxl-cs__step-desc {
	margin: 0;
	font-size: 0.9375rem;
	color: #6b7280;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
	.sxl-cs__inner {
		gap: 40px;
	}

	.sxl-cs__left,
	.sxl-cs__right {
		flex: 0 0 50%;
	}
}

@media (max-width: 768px) {
	.sxl-cs {
		padding: 50px 16px;
	}

	.sxl-cs__inner {
		flex-direction: column;
		gap: 40px;
	}

	.sxl-cs__left,
	.sxl-cs__right {
		flex: 0 0 100%;
		width: 100%;
	}

	.sxl-cs__title {
		font-size: 1.875rem;
	}

	.sxl-cs__step {
		padding: 20px;
		gap: 16px;
	}

	.sxl-cs__step-number {
		width: 32px;
		height: 32px;
		font-size: 0.875rem;
	}
}

/* ==========================================================================
   SXL Content Gallery Widget
   ========================================================================== */

.sxl-cg {
	padding: 80px 20px;
	background-color: transparent;
}

.sxl-cg__inner {
	display: flex;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

/* Sol Kolon */
.sxl-cg__left {
	flex: 0 0 55%;
}

.sxl-cg__subtitle {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #1a1a1a;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.sxl-cg__title {
	margin: 0 0 24px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.2;
	color: #1a1a1a;
}

.sxl-cg__content {
	font-size: 1rem;
	line-height: 1.8;
	color: #4b5563;
	margin-bottom: 24px;
}

.sxl-cg__content p {
	margin: 0 0 16px;
}

.sxl-cg__content p:last-child {
	margin-bottom: 0;
}

/* Özellik Rozetleri */
.sxl-cg__features {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.sxl-cg__feature {
	display: inline-block;
	padding: 12px 24px;
	font-size: 0.875rem;
	color: #1a1a1a;
	background-color: transparent;
	border: 1.5px solid #1a1a1a;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.sxl-cg__feature:hover {
	background-color: #1a1a1a;
	color: #ffffff !important;
}

.sxl-cg__feature:hover strong {
	color: #ffffff !important;
}

.sxl-cg__feature strong {
	font-weight: 700;
	color: #1a1a1a;
	transition: color 0.3s ease;
}

.sxl-cg__bottom-text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
	color: #4b5563;
	font-style: italic;
}

/* Sağ Kolon - Görseller */
.sxl-cg__right {
	flex: 0 0 45%;
}

.sxl-cg__images {
	position: relative;
}

.sxl-cg__main-image {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.sxl-cg__main-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Ödül Görseli */
.sxl-cg__award {
	position: absolute;
	width: 180px;
	padding: 12px;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	z-index: 5;
}

.sxl-cg__award img {
	width: 100%;
	height: auto;
	display: block;
}

/* Ödül Konumları */
.sxl-cg__award--top-left {
	top: -30px;
	left: -30px;
}

.sxl-cg__award--top-right {
	top: -30px;
	right: -30px;
}

.sxl-cg__award--bottom-left {
	bottom: -30px;
	left: -30px;
}

.sxl-cg__award--bottom-right {
	bottom: -30px;
	right: -30px;
}

/* Expandable Ödül */
.sxl-cg__award--expandable {
	cursor: pointer;
}

.sxl-cg__award--expandable:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.sxl-cg__award-hint {
	position: absolute;
	bottom: 8px;
	right: 8px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.6);
	color: #ffffff;
	border-radius: 50%;
	font-size: 0.75rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.sxl-cg__award--expandable:hover .sxl-cg__award-hint {
	opacity: 1;
}

/* Lightbox */
.sxl-cg__lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sxl-cg__lightbox.is-active {
	opacity: 1;
	visibility: visible;
}

.sxl-cg__lightbox-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.9);
}

.sxl-cg__lightbox-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.sxl-cg__lightbox.is-active .sxl-cg__lightbox-content {
	transform: scale(1);
}

.sxl-cg__lightbox-content img {
	max-width: 100%;
	max-height: 90vh;
	display: block;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sxl-cg__lightbox-close {
	position: absolute;
	top: -50px;
	right: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 1.5rem;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.sxl-cg__lightbox-close:hover {
	transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
	.sxl-cg__inner {
		gap: 40px;
	}

	.sxl-cg__left {
		flex: 0 0 50%;
	}

	.sxl-cg__right {
		flex: 0 0 50%;
	}

	.sxl-cg__award {
		width: 140px;
	}
}

@media (max-width: 768px) {
	.sxl-cg {
		padding: 50px 16px;
	}

	.sxl-cg__inner {
		flex-direction: column;
		gap: 40px;
	}

	.sxl-cg__left,
	.sxl-cg__right {
		flex: 0 0 100%;
		width: 100%;
	}

	.sxl-cg__title {
		font-size: 1.875rem;
	}

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

	.sxl-cg__feature {
		padding: 10px 18px;
		font-size: 0.8125rem;
	}

	.sxl-cg__images {
		max-width: 400px;
		margin: 0 auto;
	}

	.sxl-cg__award {
		width: 120px;
	}

	.sxl-cg__award--top-left,
	.sxl-cg__award--bottom-left {
		left: -10px;
	}

	.sxl-cg__award--top-right,
	.sxl-cg__award--bottom-right {
		right: -10px;
	}
}

/* ==========================================================================
   SXL Process Cards Widget
   ========================================================================== */

.sxl-pc {
	padding: 80px 20px;
	background-color: transparent;
}

.sxl-pc__inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* Header */
.sxl-pc__header {
	text-align: center;
	margin-bottom: 50px;
}

.sxl-pc__subtitle {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #1a1a1a;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.sxl-pc__title {
	margin: 0 0 20px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.2;
	color: #1a1a1a;
}

.sxl-pc__desc {
	margin: 0;
	font-size: 1.0625rem;
	color: #6b7280;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

/* Cards Grid */
.sxl-pc__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 50px;
}

/* Single Card */
.sxl-pc__card {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.4s ease;
}

.sxl-pc__card:hover {
	background-color: #1a1a1a;
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.sxl-pc__card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.sxl-pc__number {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1a1a1a;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: 50%;
	transition: all 0.4s ease;
}

.sxl-pc__card:hover .sxl-pc__number {
	background-color: #ffffff !important;
	color: #1a1a1a !important;
}

.sxl-pc__card-title {
	margin: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.5rem;
	font-weight: 400;
	font-style: italic;
	color: #1a1a1a;
	transition: color 0.4s ease;
}

.sxl-pc__card:hover .sxl-pc__card-title {
	color: #ffffff !important;
}

/* Card Icon */
.sxl-pc__card-icon {
	margin-bottom: 20px;
	height: 80px;
	display: flex;
	align-items: center;
}

.sxl-pc__card-icon img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: filter 0.4s ease;
}

.sxl-pc__card:hover .sxl-pc__card-icon img {
	filter: brightness(0) invert(1);
}

/* Card Description */
.sxl-pc__card-desc {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #6b7280;
	transition: color 0.4s ease;
}

.sxl-pc__card:hover .sxl-pc__card-desc {
	color: rgba(255, 255, 255, 0.8) !important;
}

/* CTA Button */
.sxl-pc__cta {
	text-align: center;
}

.sxl-pc__cta-btn {
	display: inline-block;
	padding: 16px 40px;
	font-size: 1rem;
	font-weight: 600;
	color: #1a1a1a;
	background-color: transparent;
	border: 2px solid #1a1a1a;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.sxl-pc__cta-btn:hover {
	background-color: #1a1a1a !important;
	color: #ffffff !important;
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
	.sxl-pc__cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.sxl-pc {
		padding: 50px 16px;
	}

	.sxl-pc__header {
		margin-bottom: 30px;
	}

	.sxl-pc__cards {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
	}

	.sxl-pc__card {
		padding: 24px;
	}

	.sxl-pc__card-title {
		font-size: 1.25rem;
	}

	.sxl-pc__cta-btn {
		padding: 14px 32px;
	}
}

/* ==========================================================================
   SXL Gallery Showcase Widget
   ========================================================================== */

.sxl-gs {
	padding: 80px 20px;
}

.sxl-gs__inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* Header */
.sxl-gs__header {
	text-align: center;
	margin-bottom: 50px;
}

.sxl-gs__badge {
	display: inline-block;
	padding: 10px 24px;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #1a1a1a;
	background-color: transparent;
	border: 1.5px solid #1a1a1a;
	border-radius: 50px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.sxl-gs__title {
	margin: 0 0 16px;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
}

.sxl-gs__desc {
	margin: 0;
	font-size: 1.0625rem;
	color: #6b7280;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

/* Gallery Layout */
.sxl-gs__gallery {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 16px;
	align-items: stretch;
}

/* Main Image */
.sxl-gs__main {
	position: relative;
}

.sxl-gs__main-image {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #f0f0f0;
}

.sxl-gs__main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.3s ease;
}

/* Caption */
.sxl-gs__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 60px 24px 24px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 600;
}

/* Expand Button */
.sxl-gs__expand {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 8px;
	color: #1a1a1a;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
	z-index: 5;
}

.sxl-gs__expand:hover {
	background: #ffffff;
	transform: scale(1.05);
}

/* Navigation Buttons */
.sxl-gs__nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	border-radius: 50%;
	color: #ffffff;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
	z-index: 5;
}

.sxl-gs__nav-btn:hover {
	background: rgba(0, 0, 0, 0.8);
}

.sxl-gs__nav-btn--prev {
	left: 16px;
}

.sxl-gs__nav-btn--next {
	right: 16px;
}

/* Thumbnails */
.sxl-gs__thumbs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr 1fr;
	gap: 10px;
	height: 100%;
}

.sxl-gs__thumb {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	border: 3px solid transparent;
	transition: all 0.3s ease;
	background: #f0f0f0;
}

.sxl-gs__thumb:hover {
	transform: scale(1.02);
}

.sxl-gs__thumb.is-active {
	border-color: #1a1a1a;
}

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

/* Lightbox */
.sxl-gs__lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sxl-gs__lightbox.is-active {
	opacity: 1;
	visibility: visible;
}

.sxl-gs__lightbox-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
}

.sxl-gs__lightbox-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.sxl-gs__lightbox-content img {
	max-width: 100%;
	max-height: 80vh;
	border-radius: 12px;
	object-fit: contain;
}

.sxl-gs__lightbox-close {
	position: absolute;
	top: -50px;
	right: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 1.5rem;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.sxl-gs__lightbox-close:hover {
	transform: scale(1.1);
}

.sxl-gs__lightbox-prev,
.sxl-gs__lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	color: #ffffff;
	font-size: 1.25rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.sxl-gs__lightbox-prev:hover,
.sxl-gs__lightbox-next:hover {
	background: rgba(255, 255, 255, 0.2);
}

.sxl-gs__lightbox-prev {
	left: -80px;
}

.sxl-gs__lightbox-next {
	right: -80px;
}

.sxl-gs__lightbox-caption {
	margin-top: 16px;
	color: #ffffff;
	font-size: 1rem;
	text-align: center;
}

/* CTA Button */
.sxl-gs__cta {
	text-align: center;
	margin-top: 40px;
}

.sxl-gs__cta-btn {
	display: inline-block;
	padding: 16px 40px;
	font-size: 1rem;
	font-weight: 600;
	color: #1a1a1a;
	background-color: transparent;
	border: 2px solid #1a1a1a;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.sxl-gs__cta-btn:hover {
	background-color: #1a1a1a !important;
	color: #ffffff !important;
}

/* Responsive */
@media (max-width: 1024px) {
	.sxl-gs__lightbox-prev {
		left: 16px;
	}

	.sxl-gs__lightbox-next {
		right: 16px;
	}
}

@media (max-width: 768px) {
	.sxl-gs {
		padding: 50px 16px;
	}

	.sxl-gs__gallery {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.sxl-gs__thumbs {
		grid-template-columns: repeat(4, 1fr);
		gap: 8px;
	}

	.sxl-gs__thumb {
		aspect-ratio: 1;
	}

	.sxl-gs__nav-btn {
		width: 36px;
		height: 36px;
		font-size: 0.875rem;
	}

	.sxl-gs__expand {
		width: 36px;
		height: 36px;
	}
}

/* ==========================================================================
   SXL Info Cards Widget
   ========================================================================== */

.sxl-ic {
	padding: 80px 20px;
}

.sxl-ic__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.sxl-ic__header {
	text-align: center;
	margin-bottom: 40px;
}

.sxl-ic__subtitle {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #1a1a1a;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.sxl-ic__title {
	margin: 0 0 16px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.2;
	color: #1a1a1a;
}

.sxl-ic__desc {
	margin: 0;
	font-size: 1rem;
	color: #6b7280;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.sxl-ic__row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-bottom: 24px;
}

.sxl-ic__card {
	background: #ffffff;
	border-radius: 16px;
	padding: 30px;
	border: 1px solid #1a1a1a;
}

.sxl-ic__card-title {
	margin: 0 0 16px;
	font-size: 1.25rem;
	font-weight: 700;
	color: #1a1a1a;
}

.sxl-ic__card-content {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #6b7280;
}

.sxl-ic__card-content p {
	margin: 0;
}

.sxl-ic__quote {
	background-color: #1a1a1a;
	border-radius: 50px;
	padding: 24px 40px;
	margin-bottom: 24px;
	text-align: center;
}

.sxl-ic__quote p {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #ffffff;
	font-style: italic;
	line-height: 1.6;
}

.sxl-ic__cta {
	text-align: center;
	margin-top: 40px;
}

.sxl-ic__cta-btn {
	display: inline-block;
	padding: 16px 40px;
	font-size: 1rem;
	font-weight: 600;
	color: #1a1a1a;
	background-color: transparent;
	border: 2px solid #1a1a1a;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.sxl-ic__cta-btn:hover {
	background-color: #1a1a1a !important;
	color: #ffffff !important;
}

@media (max-width: 768px) {
	.sxl-ic {
		padding: 50px 16px;
	}

	.sxl-ic__row {
		grid-template-columns: 1fr;
	}

	.sxl-ic__quote {
		border-radius: 20px;
		padding: 20px 24px;
	}
}

/* ==========================================================================
   SXL Two Column Text Widget
   ========================================================================== */

.sxl-tct {
	padding: 80px 20px;
}

.sxl-tct__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.sxl-tct__header {
	text-align: center;
	margin-bottom: 50px;
}

.sxl-tct__subtitle {
	display: block;
	font-size: 0.9375rem;
	color: #6b7280;
	margin-bottom: 16px;
	font-style: italic;
}

.sxl-tct__title {
	margin: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.2;
	color: #1a1a1a;
}

.sxl-tct__columns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
}

.sxl-tct__column {
	font-size: 0.9375rem;
	line-height: 1.8;
	color: #4b5563;
}

.sxl-tct__column p {
	margin: 0 0 16px;
}

.sxl-tct__column p:last-child {
	margin-bottom: 0;
}

.sxl-tct__column strong {
	color: #1a1a1a;
	font-weight: 600;
}

.sxl-tct__column u {
	text-decoration: underline;
	text-decoration-color: #1a1a1a;
}

.sxl-tct__cta {
	text-align: center;
	margin-top: 50px;
}

.sxl-tct__cta-btn {
	display: inline-block;
	padding: 16px 40px;
	font-size: 1rem;
	font-weight: 600;
	color: #1a1a1a;
	background-color: transparent;
	border: 2px solid #1a1a1a;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.sxl-tct__cta-btn:hover {
	background-color: #1a1a1a !important;
	color: #ffffff !important;
}

@media (max-width: 768px) {
	.sxl-tct {
		padding: 50px 16px;
	}

	.sxl-tct__columns {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

/* ==========================================================================
   SXL FAQ Widget
   ========================================================================== */

.sxl-faq {
	padding: 80px 20px;
}

.sxl-faq__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.sxl-faq__header {
	text-align: center;
	margin-bottom: 50px;
}

.sxl-faq__title {
	margin: 0 0 16px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.2;
	color: #1a1a1a;
}

.sxl-faq__desc {
	margin: 0;
	font-size: 0.9375rem;
	color: #6b7280;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.sxl-faq__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 30px;
}

.sxl-faq__column {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sxl-faq__item {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.sxl-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 18px 20px;
	background: transparent;
	border: none;
	text-align: left;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #1a1a1a;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.sxl-faq__question:hover {
	background-color: rgba(0, 0, 0, 0.02);
}

.sxl-faq__question span:first-child {
	flex: 1;
	padding-right: 16px;
}

.sxl-faq__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	color: #1a1a1a;
	transition: transform 0.3s ease;
}

.sxl-faq__item.is-open .sxl-faq__icon {
	transform: rotate(45deg);
}

.sxl-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.sxl-faq__item.is-open .sxl-faq__answer {
	max-height: 500px;
	padding: 0 20px 20px;
}

.sxl-faq__answer p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.7;
	color: #6b7280;
}

.sxl-faq__cta {
	text-align: center;
	margin-top: 50px;
}

.sxl-faq__cta-btn {
	display: inline-block;
	padding: 16px 40px;
	font-size: 1rem;
	font-weight: 600;
	color: #1a1a1a;
	background-color: transparent;
	border: 2px solid #1a1a1a;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.sxl-faq__cta-btn:hover {
	background-color: #1a1a1a !important;
	color: #ffffff !important;
}

@media (max-width: 768px) {
	.sxl-faq {
		padding: 50px 16px;
	}

	.sxl-faq__grid {
		grid-template-columns: 1fr;
	}

	.sxl-faq__question {
		padding: 16px;
		font-size: 0.875rem;
	}
}

/* ==========================================================================
   SXL CTA Banner Widget
   ========================================================================== */

.sxl-ctab {
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.sxl-ctab__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.sxl-ctab__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.sxl-ctab__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 40px;
	display: flex;
}

.sxl-ctab__inner--left {
	justify-content: flex-start;
}

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

.sxl-ctab__inner--right {
	justify-content: flex-end;
}

.sxl-ctab__card {
	max-width: 500px;
	padding: 40px;
	background-color: rgba(50, 70, 80, 0.75);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.sxl-ctab__subtitle {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 16px;
	text-transform: uppercase;
}

.sxl-ctab__title {
	margin: 0 0 16px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.25;
	color: #ffffff;
}

.sxl-ctab__desc {
	margin: 0 0 24px;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

.sxl-ctab__btn {
	display: inline-block;
	padding: 14px 32px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #ffffff;
	background-color: #1a3a4a;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-bottom: 16px;
}

.sxl-ctab__btn:hover {
	background-color: #0f252f;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sxl-ctab__note {
	display: block;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.7);
	font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
	.sxl-ctab {
		min-height: 350px;
	}

	.sxl-ctab__inner {
		padding: 40px 20px;
		justify-content: center !important;
	}

	.sxl-ctab__card {
		max-width: 100%;
		padding: 30px 24px;
		text-align: center;
	}

	.sxl-ctab__title {
		font-size: 1.5rem;
	}
}

/* ========================================
   SXL Service Grid Widget
   ======================================== */

.sxl-sg {
	width: 100%;
}

.sxl-sg__grid {
	display: grid;
	grid-template-columns: 1.2fr 1.2fr 0.8fr;
	gap: 20px;
}

.sxl-sg__card {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sxl-sg__card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sxl-sg__card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 70%);
	pointer-events: none;
	z-index: 1;
}

.sxl-sg__card--large {
	min-height: 450px;
}

.sxl-sg__card--small {
	min-height: 215px;
}

.sxl-sg__right {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.sxl-sg__content {
	position: relative;
	z-index: 2;
	padding: 30px;
	width: 100%;
}

.sxl-sg__category {
	display: block;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 6px;
	font-weight: 400;
}

.sxl-sg__title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 16px 0;
	line-height: 1.2;
}

.sxl-sg__card--small .sxl-sg__title {
	font-size: 1.5rem;
	margin-bottom: 12px;
}

.sxl-sg__btn {
	display: inline-block;
	padding: 8px 18px;
	background-color: #1a1a1a;
	color: #ffffff !important;
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 500;
	border-radius: 6px;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.sxl-sg__btn:hover {
	background-color: #333333 !important;
	color: #ffffff !important;
	transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1024px) {
	.sxl-sg__grid {
		grid-template-columns: 1fr 1fr;
	}

	.sxl-sg__right {
		grid-column: span 2;
		flex-direction: row;
	}

	.sxl-sg__card--small {
		flex: 1;
		min-height: 280px;
	}
}

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

	.sxl-sg__right {
		grid-column: span 1;
		flex-direction: column;
	}

	.sxl-sg__card--large {
		min-height: 350px;
	}

	.sxl-sg__card--small {
		min-height: 280px;
	}

	.sxl-sg__content {
		padding: 24px;
	}

	.sxl-sg__title {
		font-size: 1.5rem;
	}

	.sxl-sg__card--small .sxl-sg__title {
		font-size: 1.35rem;
	}
}

/* ========================================
   SXL Page Header Widget
   ======================================== */

.sxl-ph {
	position: relative;
	width: 100%;
	min-height: 350px;
	background-color: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* Extend under navbar */
.sxl-ph--extend {
	margin-top: calc(-1 * (var(--sxl-header-height, 100px) + var(--sxl-admin-bar-height, 0px)));
}

.sxl-ph--extend .sxl-ph__content {
	padding-top: calc(var(--sxl-header-height, 100px) + var(--sxl-admin-bar-height, 0px) + 40px);
}

.sxl-ph--has-bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Slider */
.sxl-ph__slider {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.sxl-ph__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	overflow: hidden;
}

.sxl-ph__slide--active {
	opacity: 1;
}

.sxl-ph__slide-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Slider Dots */
.sxl-ph__dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 10px;
}

.sxl-ph__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	padding: 0;
}

.sxl-ph__dot:hover {
	background-color: rgba(255, 255, 255, 0.7);
	transform: scale(1.1);
}

.sxl-ph__dot--active {
	background-color: #ffffff;
	transform: scale(1.1);
}

/* Static Background Image (SEO-friendly with alt text) */
.sxl-ph__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.sxl-ph__bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Overlay */
.sxl-ph__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
	pointer-events: none;
	z-index: 1;
}

/* Content */
.sxl-ph__content {
	position: relative;
	z-index: 5;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 80px 20px;
	text-align: center;
}

.sxl-ph__title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	line-height: 1.2;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sxl-ph:not(.sxl-ph--has-bg) .sxl-ph__title {
	color: #1a1a1a;
	text-shadow: none;
}

.sxl-ph__breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.8);
}

.sxl-ph:not(.sxl-ph--has-bg) .sxl-ph__breadcrumb {
	color: #6b7280;
}

.sxl-ph__breadcrumb a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.sxl-ph:not(.sxl-ph--has-bg) .sxl-ph__breadcrumb a {
	color: #1a1a1a;
}

.sxl-ph__breadcrumb a:hover {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: underline;
}

.sxl-ph:not(.sxl-ph--has-bg) .sxl-ph__breadcrumb a:hover {
	color: #333333;
}

.sxl-ph__breadcrumb span {
	color: inherit;
}

.sxl-ph__separator {
	opacity: 0.6;
	font-size: 0.8em;
}

/* Responsive */
@media (max-width: 768px) {
	.sxl-ph {
		min-height: 280px;
	}

	.sxl-ph--extend {
		margin-top: -80px;
	}

	.sxl-ph--extend .sxl-ph__content {
		padding-top: 110px;
	}

	.sxl-ph__content {
		padding: 60px 16px;
	}

	.sxl-ph__title {
		font-size: 1.75rem;
	}

	.sxl-ph__breadcrumb {
		font-size: 0.875rem;
		gap: 6px;
	}

	.sxl-ph__dots {
		bottom: 16px;
	}

	.sxl-ph__dot {
		width: 10px;
		height: 10px;
	}
}

/* ========================================
   SXL Contact Section Widget
   ======================================== */

.sxl-contact {
	width: 100%;
	padding: 80px 0;
}

.sxl-contact__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.sxl-contact__header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 50px;
}

.sxl-contact__subtitle {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #1a1a1a;
	margin-bottom: 12px;
}

.sxl-contact__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 16px;
	line-height: 1.2;
}

.sxl-contact__desc {
	font-size: 1rem;
	color: #6b7280;
	margin: 0;
	line-height: 1.6;
}

/* Grid Layout */
.sxl-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start;
}

/* Left Column */
.sxl-contact__left {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Info Cards Grid */
.sxl-contact__info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.sxl-contact__info-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 20px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.sxl-contact__info-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border-color: #d1d5db;
}

.sxl-contact__info-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1a1a1a;
	color: #ffffff;
	border-radius: 10px;
	font-size: 1rem;
	flex-shrink: 0;
}

.sxl-contact__info-content h4 {
	font-size: 0.8rem;
	font-weight: 600;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0 4px;
}

.sxl-contact__info-content p {
	font-size: 0.95rem;
	color: #1a1a1a;
	margin: 0;
	line-height: 1.4;
}

.sxl-contact__info-content a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.2s ease;
}

.sxl-contact__info-content a:hover {
	color: #4b5563;
}

/* WhatsApp Button */
.sxl-contact__whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	background-color: #25d366;
	color: #ffffff !important;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 10px;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.sxl-contact__whatsapp:hover {
	background-color: #20ba5a;
	color: #ffffff !important;
	transform: translateY(-2px);
}

.sxl-contact__whatsapp i {
	font-size: 1.25rem;
}

/* Map */
.sxl-contact__map {
	width: 100%;
	height: 300px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
}

.sxl-contact__map iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Right Column - Form */
.sxl-contact__right {
	position: sticky;
	top: 120px;
}

.sxl-contact__form-card {
	background-color: #f8f9fa;
	border-radius: 20px;
	padding: 36px;
	border: 1px solid #e5e7eb;
}

.sxl-contact__form-header {
	text-align: center;
	margin-bottom: 28px;
}

.sxl-contact__form-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 8px;
}

.sxl-contact__form-subtitle {
	font-size: 0.95rem;
	color: #6b7280;
	margin: 0;
}

/* Form */
.sxl-contact__form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.sxl-contact__form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.sxl-contact__form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.sxl-contact__form-group label {
	font-size: 0.875rem;
	font-weight: 500;
	color: #374151;
}

.sxl-contact__form-group input,
.sxl-contact__form-group select,
.sxl-contact__form-group textarea {
	width: 100%;
	padding: 12px 16px;
	font-size: 0.95rem;
	color: #1a1a1a;
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	font-family: inherit;
}

.sxl-contact__form-group input::placeholder,
.sxl-contact__form-group textarea::placeholder {
	color: #9ca3af;
}

.sxl-contact__form-group input:focus,
.sxl-contact__form-group select:focus,
.sxl-contact__form-group textarea:focus {
	outline: none;
	border-color: #1a1a1a;
	box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.sxl-contact__form-group select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
}

.sxl-contact__form-group textarea {
	resize: none;
	height: 120px;
}

/* Submit Button */
.sxl-contact__form-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 14px 28px;
	background-color: #1a1a1a;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	margin-top: 8px;
}

.sxl-contact__form-btn:hover {
	background-color: #333333;
	transform: translateY(-2px);
}

.sxl-contact__form-btn i {
	font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
	.sxl-contact__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.sxl-contact__right {
		position: static;
	}
}

@media (max-width: 768px) {
	.sxl-contact {
		padding: 60px 0;
	}

	.sxl-contact__header {
		margin-bottom: 40px;
	}

	.sxl-contact__info-grid {
		grid-template-columns: 1fr;
	}

	.sxl-contact__form-row {
		grid-template-columns: 1fr;
	}

	.sxl-contact__form-card {
		padding: 28px 20px;
	}

	.sxl-contact__map {
		height: 250px;
	}
}

/* ==========================================================================
   SXL Services Cards Widget
   ========================================================================== */

.sxl-svc {
	width: 100%;
}

/* Header */
.sxl-svc__header {
	text-align: center;
	margin-bottom: 3rem;
}

.sxl-svc__subtitle {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #1a1a1a;
	margin-bottom: 0.75rem;
}

.sxl-svc__heading {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 1rem 0;
	line-height: 1.2;
}

.sxl-svc__header-desc {
	font-size: 1.0625rem;
	color: #6b7280;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Grid */
.sxl-svc__grid {
	display: grid;
	gap: 20px;
}

.sxl-svc__grid--cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.sxl-svc__grid--cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.sxl-svc__grid--cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* Card */
.sxl-svc__card {
	position: relative;
	display: block;
	height: 350px;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	cursor: pointer;
}

.sxl-svc__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.sxl-svc__card:hover .sxl-svc__bg {
	transform: scale(1.08);
}

/* Overlay - always visible gradient at bottom */
.sxl-svc__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
	transition: background 0.4s ease;
}

.sxl-svc__card:hover .sxl-svc__overlay {
	background: rgba(0, 0, 0, 0.7);
}

/* Content */
.sxl-svc__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	z-index: 2;
}

.sxl-svc__title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #ffffff;
	margin: 0;
	line-height: 1.3;
	transition: transform 0.4s ease;
}

.sxl-svc__card:hover .sxl-svc__title {
	transform: translateY(-10px);
}

.sxl-svc__desc {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
	margin: 0;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
}

.sxl-svc__card:hover .sxl-svc__desc {
	max-height: 150px;
	opacity: 1;
	margin-top: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
	.sxl-svc__grid--cols-4 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.sxl-svc__grid--cols-3,
	.sxl-svc__grid--cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.sxl-svc__header {
		margin-bottom: 2rem;
	}

	.sxl-svc__card {
		height: 280px;
	}

	.sxl-svc__content {
		padding: 1.25rem;
	}

	.sxl-svc__title {
		font-size: 1.125rem;
	}

	.sxl-svc__desc {
		font-size: 0.875rem;
	}
}

@media (max-width: 480px) {
	.sxl-svc__grid--cols-2,
	.sxl-svc__grid--cols-3,
	.sxl-svc__grid--cols-4 {
		grid-template-columns: 1fr;
	}

	.sxl-svc__card {
		height: 260px;
	}
}

/* ==========================================================================
   SXL Blog Posts Widget
   ========================================================================== */

.sxl-blog-posts {
	width: 100%;
}

/* Grid */
.sxl-blog-posts__grid {
	display: grid;
	gap: 30px;
}

.sxl-blog-posts__grid--cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.sxl-blog-posts__grid--cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.sxl-blog-posts__grid--cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* Card */
.sxl-blog-posts__card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.sxl-blog-posts__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Card with Image */
.sxl-blog-posts__image-link {
	display: block;
	overflow: hidden;
}

.sxl-blog-posts__image {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.sxl-blog-posts__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.sxl-blog-posts__card:hover .sxl-blog-posts__img {
	transform: scale(1.08);
}

/* Card without Image */
.sxl-blog-posts__card--no-image {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border: 1px solid #e5e5e5;
}

.sxl-blog-posts__card--no-image .sxl-blog-posts__content {
	padding-top: 2rem;
}

/* Card Content */
.sxl-blog-posts__content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.sxl-blog-posts__category {
	margin-bottom: 0.75rem;
}

.sxl-blog-posts__category a {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #1a1a1a;
	background: #f3f4f6;
	padding: 4px 10px;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.sxl-blog-posts__category a:hover {
	background: #1a1a1a;
	color: #ffffff;
}

.sxl-blog-posts__title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 0.75rem 0;
}

.sxl-blog-posts__title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.2s ease;
}

.sxl-blog-posts__title a:hover {
	color: #4b5563;
}

.sxl-blog-posts__excerpt {
	font-size: 0.9375rem;
	color: #6b7280;
	line-height: 1.6;
	margin: 0 0 1rem 0;
	flex: 1;
}

.sxl-blog-posts__meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.8125rem;
	color: #9ca3af;
	margin-bottom: 1rem;
}

.sxl-blog-posts__meta i {
	margin-right: 4px;
}

.sxl-blog-posts__date,
.sxl-blog-posts__read-time {
	display: flex;
	align-items: center;
}

.sxl-blog-posts__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #1a1a1a;
	text-decoration: none;
	transition: gap 0.2s ease;
}

.sxl-blog-posts__link:hover {
	gap: 12px;
}

.sxl-blog-posts__link i {
	font-size: 0.75rem;
	transition: transform 0.2s ease;
}

.sxl-blog-posts__card:hover .sxl-blog-posts__link i {
	transform: translateX(4px);
}

/* No Results */
.sxl-blog-posts__no-results {
	text-align: center;
	padding: 4rem 2rem;
	color: #9ca3af;
}

.sxl-blog-posts__no-results i {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: block;
}

.sxl-blog-posts__no-results p {
	font-size: 1rem;
	margin: 0;
}

/* Pagination */
.sxl-blog-posts__pagination {
	margin-top: 3rem;
	text-align: center;
}

.sxl-blog-posts__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 8px;
	margin: 0 4px;
	transition: background-color 0.2s ease, color 0.2s ease;
	color: #1a1a1a;
	background: #f3f4f6;
}

.sxl-blog-posts__pagination .page-numbers:hover {
	background: #1a1a1a;
	color: #ffffff;
}

.sxl-blog-posts__pagination .page-numbers.current {
	background: #1a1a1a;
	color: #ffffff;
}

.sxl-blog-posts__pagination .page-numbers.dots {
	background: transparent;
	color: #9ca3af;
}

/* Blog Posts Responsive */
@media (max-width: 1024px) {
	.sxl-blog-posts__grid--cols-4 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.sxl-blog-posts__grid--cols-3,
	.sxl-blog-posts__grid--cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.sxl-blog-posts__card {
		border-radius: 12px;
	}

	.sxl-blog-posts__image {
		height: 180px;
	}

	.sxl-blog-posts__content {
		padding: 1.25rem;
	}

	.sxl-blog-posts__title {
		font-size: 1.125rem;
	}

	.sxl-blog-posts__meta {
		flex-wrap: wrap;
		gap: 0.5rem;
	}
}

@media (max-width: 480px) {
	.sxl-blog-posts__grid--cols-2,
	.sxl-blog-posts__grid--cols-3,
	.sxl-blog-posts__grid--cols-4 {
		grid-template-columns: 1fr;
	}

	.sxl-blog-posts__image {
		height: 200px;
	}

	.sxl-blog-posts__pagination .page-numbers {
		min-width: 40px;
		height: 40px;
		padding: 0 10px;
		font-size: 0.875rem;
		margin: 0 2px;
	}
}

/* ==========================================================================
   Recent Services Widget (SXL Son Hizmetler)
   ========================================================================== */

.sxl-recent-services-widget__title {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin: 0 0 2.5rem 0;
	color: #1a1a1a;
}

.sxl-services-grid {
	display: grid;
	gap: 2rem;
}

.sxl-services-grid--cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.sxl-services-grid--cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.sxl-services-grid--cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.sxl-service-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.sxl-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.sxl-service-card__image-link {
	display: block;
}

.sxl-service-card__image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.sxl-service-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.sxl-service-card:hover .sxl-service-card__img {
	transform: scale(1.05);
}

.sxl-service-card__content {
	padding: 1.5rem;
}

.sxl-service-card__category {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #6b7280;
	background: #f3f4f6;
	padding: 4px 10px;
	border-radius: 4px;
	margin-bottom: 0.75rem;
}

.sxl-service-card__title {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 0.75rem 0;
}

.sxl-service-card__title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.2s ease;
}

.sxl-service-card__title a:hover {
	color: #4b5563;
}

.sxl-service-card__excerpt {
	font-size: 0.9rem;
	color: #6b7280;
	line-height: 1.6;
	margin: 0 0 1rem 0;
}

.sxl-service-card__btn {
	display: inline-block;
	padding: 0.625rem 1.25rem;
	background: #1a1a1a;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 6px;
	transition: background 0.2s ease;
}

.sxl-service-card__btn:hover {
	background: #333;
	color: #fff;
}

/* Services Grid Responsive */
@media (max-width: 1024px) {
	.sxl-services-grid--cols-4 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.sxl-services-grid--cols-3,
	.sxl-services-grid--cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.sxl-services-grid--cols-2,
	.sxl-services-grid--cols-3,
	.sxl-services-grid--cols-4 {
		grid-template-columns: 1fr;
	}

	.sxl-service-card__image {
		height: 180px;
	}
}

/* ==========================================================================
   SXL Table of Contents Widget
   ========================================================================== */

.sxl-toc {
	background-color: #f8f9fa;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 24px 28px;
	max-width: 400px;
}

.sxl-toc__title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 16px 0;
	padding-bottom: 12px;
	border-bottom: 1px solid #e0e0e0;
}

.sxl-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: toc-counter;
}

.sxl-toc__item {
	margin-bottom: 10px;
}

.sxl-toc__item:last-child {
	margin-bottom: 0;
}

.sxl-toc__link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #4a4a4a;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.4;
	transition: color 0.2s ease;
}

.sxl-toc__link:hover {
	color: #1a1a1a;
}

.sxl-toc__number {
	font-weight: 600;
	color: #1a1a1a;
	min-width: 20px;
}

.sxl-toc__text {
	flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
	.sxl-toc {
		max-width: 100%;
		padding: 20px;
	}
}
