/*
Theme Name: Nextist
Theme URI: https://obiziz.com.tr/
Author: Obiziz Dijital İletişim
Author URI: https://obiziz.com.tr/
Description: Nextist kurumsal tema (slider, hizmetler, iletişim, Elementor uyumlu)
Version: 1.0.7
Text Domain: nextist
*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #2a2b62;
	--accent: #e30613;
	--button-primary: #e30613;
	--button-hover: #c1050f;
	--white: #ffffff;
	--gray-50: #fafafa;
	--gray-100: #f5f5f5;
	--gray-400: #a1a1aa;
	--gray-600: #52525b;
	--gray-900: #18181b;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: var(--gray-900);
	background: var(--white);
}

body.no-scroll {
    overflow: hidden;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(30px);
	border-bottom: 2px solid rgba(42, 43, 98, 0.15);
	z-index: 1000;
	transition: var(--transition);
	box-shadow: 0 2px 20px rgba(42, 43, 98, 0.1);
}

@media (max-width: 768px) {
	.header {
		overflow: visible;
	}
    .about-text
    {
        text-align: center;
    }
.nav{
padding:0 10px!important}
}

.nav {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 120px;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: var(--transition);
}

.logo p
{
	color: #000;
}

.logo:hover {
	transform: scale(1.05);
}

.logo img,
.logo-image {
	height: 70px;
	width: auto;
	object-fit: contain;
	filter: brightness(1.1);
}

/* ============================================
   NAV MENU - TEMİZ YAPILANDIRMA
   ============================================ */

/* Nav menu container (div wrapper) */
#nav-menu {
	display: flex;
	align-items: center;
}

/* Nav menu list (ul) - Ana menü */
#nav-menu > ul,
.nav-menu {
	display: flex;
	list-style: none;
	gap: 2.5rem;
	margin: 0;
	padding: 0;
	align-items: center;
}

/* Nav menu items */
#nav-menu > ul > li,
.nav-menu > li {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Nav links - Ana menü linkleri */
.nav-link {
	color: var(--gray-600);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: var(--transition);
	position: relative;
	padding: 0.5rem 0;
	letter-spacing: 0.02em;
	display: inline-block;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.3s ease;
}

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

.nav-link:hover::after {
	width: 100%;
}

/* Dropdown menu container */
.nav-dropdown {
	position: relative;
}

/* Dropdown menu - Alt menü */
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(30, 41, 59, 0.1);
	border-radius: 8px;
	min-width: 220px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-5px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1000;
	box-shadow: 0 10px 30px rgba(30, 41, 59, 0.15);
	margin: 0;
	padding: 8px 0;
	list-style: none;
	pointer-events: none;
	margin-top: 0;
}

/* Ana menü öğesi ile dropdown arasındaki boşluğu kapat - gap sorununu çöz */
.nav-dropdown > .nav-link {
	position: relative;
}

.nav-dropdown > .nav-link::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	height: 10px;
	background: transparent;
	z-index: 1001;
}

/* Dropdown menu - Hover durumunda görünür */
.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown > .dropdown-menu:hover {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

/* Alt menü açıkken parent dropdown'ı da açık tut */
.dropdown-menu:hover {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0) !important;
	pointer-events: auto !important;
}

/* Alt menü içindeki alt menüler için özel stiller */
.dropdown-menu .nav-dropdown {
	position: relative;
}

.dropdown-menu .dropdown-menu {
	top: 0;
	left: 100%;
	margin-left: 0;
	padding-left: 5px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-5px);
	pointer-events: none;
}

/* Dropdown link ile alt menü arasındaki gap'i kapat */
.dropdown-menu .nav-dropdown > .dropdown-link {
	position: relative;
}

.dropdown-menu .nav-dropdown > .dropdown-link::after {
	content: '';
	position: absolute;
	top: 0;
	right: -5px;
	width: 5px;
	height: 100%;
	background: transparent;
	z-index: 1002;
}

.dropdown-menu .nav-dropdown:hover > .dropdown-menu,
.dropdown-menu .nav-dropdown > .dropdown-menu:hover {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	pointer-events: auto;
}

/* Dropdown menu items */
.dropdown-menu li {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
}

/* Dropdown links - Alt menü linkleri */
.dropdown-link {
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	color: var(--gray-600);
	text-decoration: none;
	transition: all 0.2s ease;
	border-bottom: 1px solid rgba(30, 41, 59, 0.05);
}

.dropdown-link:hover {
	background: rgba(227, 6, 19, 0.05);
	color: var(--accent);
	padding-left: 25px;
}

.dropdown-menu li:last-child .dropdown-link {
	border-bottom: none;
}

/* Dropdown icon - Ana menü */
.nav-link i {
	margin-left: 6px;
	font-size: 11px;
	transition: transform 0.3s ease;
	display: inline-block;
}

.nav-dropdown:hover .nav-link i {
	transform: rotate(180deg);
}

/* Dropdown icon - Alt menü içindeki alt menüler */
.dropdown-link i {
	margin-left: 6px;
	font-size: 11px;
	transition: transform 0.3s ease;
	display: inline-block;
}

.dropdown-menu .nav-dropdown:hover .dropdown-link i {
	transform: rotate(-90deg);
}

/* Mobile responsive - Yukarıdaki @media içinde tanımlı */

.mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--gray-600);
	cursor: pointer;
	padding: 0.5rem;
	transition: var(--transition);
	z-index: 1002;
	position: relative;
}

.mobile-toggle:hover {
	color: var(--accent);
	transform: scale(1.1);
}

.mobile-toggle:focus {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

.mobile-toggle i {
	pointer-events: none;
}

/* Hero Swiper */
.hero-swiper {
	height: 100vh;
	position: relative;
}

.hero-slide {
	height: 100vh;
	display: flex;
	align-items: end;
	justify-content: start;
	text-align: left;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
	z-index: 1;
}

/* Video Slide Styles */
.hero-slide-video {
	position: relative;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 0;
}

.hero-slide-video::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
	z-index: 1;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="300" r="200" fill="url(%23a)"/><circle cx="400" cy="700" r="250" fill="url(%23a)"/></svg>');
	opacity: 0.3;
	animation: float 20s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
	max-width: 800px;
	padding: 10rem;
	background: transparent;
	position: absolute;
	top:50px;
	z-index: 10;
	animation: slideUp 1s ease-out;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Swiper Navigation - Bottom Right */
.swiper-button-next,
.swiper-button-prev {
	color: var(--white) !important;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 0;
	width: 50px !important;
	height: 50px !important;
	margin: 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	position: absolute !important;
	bottom: 30px !important;
	right: 30px !important;
	top: auto !important;
	left: auto !important;
}

.swiper-button-prev {
	right: 90px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: var(--button-primary);
	transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 18px !important;
	font-weight: bold;
}

/* Swiper Pagination - Vertical Right Side */
.swiper-pagination {
	position: absolute !important;
	right: 20px !important;
	left: auto !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: auto !important;
	height: auto !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 15px !important;
	z-index: 10 !important;
}

.swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.3) !important;
	opacity: 1 !important;
	width: 40px !important;
	height: 40px !important;
	margin: 0 !important;
	border-radius: 50% !important;
	transition: all 0.3s ease !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: rgba(255, 255, 255, 0.7) !important;
	border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.swiper-pagination-bullet-active {
	background: var(--button-primary) !important;
	color: white !important;
	border-color: var(--button-primary) !important;
	transform: scale(1.1) !important;
}

.swiper-pagination-bullet:hover {
	background: rgba(255, 255, 255, 0.5) !important;
	transform: scale(1.05) !important;
}

/* Services Navigation Container */
/* Services Navigation */
.services-navigation {
	position: absolute;
	top: 50%;
	left: -60px;
	right: -60px;
	width: calc(100% + 120px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	transform: translateY(-50%);
	z-index: 5;
	pointer-events: none;
}

.services-nav-button,
.services-next,
.services-prev {
	width: 52px;
	height: 52px;
	border-radius: 0;
	border: none;
	background: #060606;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
	pointer-events: auto;
}

.services-nav-button:hover,
.services-next:hover,
.services-prev:hover {
	background: var(--button-primary);
	transform: scale(1.05);
}

@media (max-width: 768px) {
	.services-navigation {
		left: -10px;
        right: -10px;
        width: calc(100% + 20px);
		padding: 0;
		gap: 0;
	}

	.services-next,
	.services-prev {
		width: 44px;
		height: 44px;
		font-size: 1rem;
	}
}

.services-nav-button:active,
.services-next:active,
.services-prev:active {
	transform: translateY(0);
}

.services-nav-button i,
.services-next i,
.services-prev i {
	pointer-events: none;
	color: inherit;
}

/* Services Pagination */
.services-pagination {
	position: relative !important;
	margin-top: 2rem !important;
}

.services-pagination .swiper-pagination-bullet {
	background: rgba(42, 43, 98, 0.3) !important;
	opacity: 1 !important;
	width: 12px !important;
	height: 12px !important;
	margin: 0 6px !important;
	transition: all 0.3s ease;
}

.services-pagination .swiper-pagination-bullet-active {
	background: var(--accent) !important;
	transform: scale(1.3);
}


@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-title {
	font-size: 2.2rem;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1.5rem;
	letter-spacing: -0.03em;
	line-height: 1.4;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title .highlight-word {
	position: relative;
	display: inline-block;
	color: var(--button-primary);
	font-weight: 800;
	text-shadow: 0 2px 8px rgba(227, 6, 19, 0.4);
}

.hero-title .highlight-word::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--button-primary) 0%, rgba(227, 6, 19, 0.8) 50%, var(--button-primary) 100%);
	border-radius: 2px;
	animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
	0% {
		box-shadow: 0 0 8px rgba(227, 6, 19, 0.3);
		transform: scaleX(1);
	}
	100% {
		box-shadow: 0 0 16px rgba(227, 6, 19, 0.6);
		transform: scaleX(1.05);
	}
}

.hero-subtitle {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 3rem;
	font-weight: 400;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: start;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease-out 0.9s both;
}

.btn {
	padding: 0.6rem 1.2rem;
	border-radius: 0;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 0.8rem;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: linear-gradient(135deg, var(--button-primary) 0%, var(--button-hover) 100%);
	color: var(--white);
	border: none;
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.05);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(20px);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-3px) scale(1.05);
}

/* Section */
.section {
	padding: 6rem 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-header {
	text-align: center;
	margin-bottom: 2rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.section-subtitle {
	font-size: 1.1rem;
	color: var(--gray-600);
	max-width: 600px;
	margin: 0 auto;
}



.about-grid {
	display: block;
	gap: 4rem;
	align-items: center;
}

.section-text {
	font-size: 1.1rem;
	color: var(--gray-600);
	line-height: 1.7;
}

.about-text {
	font-size: 1.1rem;
	color: var(--gray-600);
	line-height: 1.7;
	text-align:center;
}

.about-text p {
	margin-bottom: 1.5rem;
}

/* Single Post/Page Content Styles */
article.about-text {
	max-width: 1280px;
	margin: 0 auto;
}

article.about-text h1 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary);
	margin: 2rem 0 1.5rem;
	line-height: 1.3;
}

/* Genel Form Stilleri */
.wpcf7 {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.career-form-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 3px solid #e30613;
}

.career-form-header h3 {
  font-size: 32px;
  color: #292b62;
  margin-bottom: 15px;
  font-weight: 700;
}

.career-form-header p {
  font-size: 16px;
  color: #666;
}

/* Form Bölümleri */
.form-section {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(41, 43, 98, 0.08);
}

.form-section h4 {
  font-size: 24px;
  color: #292b62;
  margin-bottom: 25px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

/* Form Etiketleri */
.form-section label {
  display: block;
  margin-bottom: 8px;
  color: #292b62;
  font-weight: 500;
  font-size: 14px;
}

.form-section p {
  margin-bottom: 20px;
}

/* Input Alanları */
.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-url,
.wpcf7-number,
.wpcf7-date,
.wpcf7-select,
.wpcf7-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-url:focus,
.wpcf7-number:focus,
.wpcf7-date:focus,
.wpcf7-select:focus,
.wpcf7-textarea:focus {
  outline: none;
  border-color: #e30613;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.wpcf7-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

/* Radio Butonları */
.wpcf7-radio {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.wpcf7-list-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #e30613;
  cursor: pointer;
}

.wpcf7-list-item-label {
  cursor: pointer;
  color: #555;
  font-size: 14px;
}

/* Checkbox (Onay Kutuları) */
.consent-section {
  background: #f8f9fa;
}

.wpcf7-acceptance input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #e30613;
  cursor: pointer;
  margin-right: 10px;
  vertical-align: middle;
}

.consent-section label {
  display: flex;
  align-items: flex-start;
  font-weight: normal;
  line-height: 1.6;
}

.consent-section a {
  color: #e30613;
  text-decoration: none;
  font-weight: 600;
}

.consent-section a:hover {
  text-decoration: underline;
}

/* Gönder Butonu */
.submit-button {
  background: linear-gradient(135deg, #e30613 0%, #c70510 100%);
  color: #fff;
  border: none;
  padding: 16px 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.submit-button:hover:not(:disabled) {
  background: linear-gradient(135deg, #c70510 0%, #a00408 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Spinner */
.wpcf7-spinner {
  margin-left: 10px;
}

/* Hata Mesajları */
.wpcf7-not-valid-tip {
  color: #e30613;
  font-size: 13px;
  margin-top: 5px;
  display: block;
}

.wpcf7-form-control.wpcf7-not-valid {
  border-color: #e30613;
  background: #fff5f5;
}

/* Yanıt Mesajları */
.wpcf7-response-output {
  margin-top: 20px;
  padding: 15px 20px;
  font-weight: 500;
}

.wpcf7-mail-sent-ok {
  background: #d4edda;
  border: 2px solid #28a745;
  color: #155724;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background: #f8d7da;
  border: 2px solid #e30613;
  color: #721c24;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .wpcf7 {
    padding: 20px 15px;
  }

  .career-form-header h3 {
    font-size: 24px;
  }

  .form-section {
    padding: 20px;
  }

  .form-section h4 {
    font-size: 20px;
  }

  .wpcf7-radio {
    flex-direction: column;
    gap: 12px;
  }

  .submit-button {
    padding: 14px 30px;
    font-size: 16px;
  }
}

/* Placeholder Stilleri */
::placeholder {
  color: #999;
  opacity: 1;
}

/* Hidden Fields */
.hidden-fields-container {
  display: none;
}

/* Screen Reader */
.screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
article.about-text h2 {
	font-size: 2rem;
	font-weight: 600;
	color: var(--primary);
	margin: 2rem 0 1rem;
	line-height: 1.4;
}

article.about-text h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary);
	margin: 1.5rem 0 0.75rem;
	line-height: 1.4;
}

article.about-text p {
	font-size: 1.1rem;
	color: var(--gray-600);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

article.about-text img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 2rem auto;
	border-radius: 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

article.about-text ul,
article.about-text ol {
	margin: 1.5rem 0;
	padding-left: 2rem;
	color: var(--gray-600);
	line-height: 1.8;
}

article.about-text li {
	margin-bottom: 0.75rem;
}

article.about-text a {
	color: var(--accent);
	text-decoration: none;
	transition: var(--transition);
}

article.about-text a:hover {
	text-decoration: underline;
	color: var(--button-hover);
}

article.about-text blockquote {
	border-left: 3px solid var(--accent);
	padding-left: 1.5rem;
	margin: 2rem 0;
	font-style: italic;
	color: var(--gray-600);
}

article.about-text code {
	background: var(--gray-100);
	padding: 0.2rem 0.5rem;
	border-radius: 2px;
	font-size: 0.9em;
	color: var(--primary);
}

article.about-text pre {
	background: var(--gray-900);
	color: var(--white);
	padding: 1.5rem;
	border-radius: 0;
	overflow-x: auto;
	margin: 2rem 0;
}

article.about-text pre code {
	background: none;
	color: inherit;
	padding: 0;
}

article.about-text table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
}

article.about-text th,
article.about-text td {
	padding: 0.75rem;
	border: 1px solid rgba(42, 43, 98, 0.1);
	text-align: left;
}

article.about-text th {
	background: var(--primary);
	color: var(--white);
	font-weight: 600;
}

article.about-text hr {
	border: none;
	border-top: 2px solid rgba(42, 43, 98, 0.1);
	margin: 2rem 0;
}

/* Service Hero Section */
.service-hero {
	position: relative;
	min-height: 350px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 100px;
}

.service-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(227, 6, 19, 0.7);
	z-index: 1;
}

.service-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 1200px;
	padding: 0 2rem;
}

.service-hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
}

.service-breadcrumb a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: var(--transition);
}

.service-breadcrumb a:hover {
	color: var(--white);
	text-decoration: underline;
}

.breadcrumb-separator {
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0.25rem;
}

.breadcrumb-current {
	color: var(--white);
	font-weight: 500;
}

.stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.stat {
	text-align: center;
	padding: 2rem;
	background: var(--gray-50);
	border-radius: 0;
	border: 1px solid rgba(42, 43, 98, 0.1);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent);
	display: block;
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--gray-600);
	font-size: 0.9rem;
}

/* Services Swiper */
.services-swiper-container {
	position: relative;
	padding: 4rem 0 2rem;
}

.servicesSwiper {
	padding: 2rem 0;
}

.service-slide {
	height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.service-card {
	position: relative;
	background: transparent;
	border: none;
	transition: var(--transition);
	overflow: hidden;
	display: block;
	height: 100%;
	width: 100%;
	max-width: 350px;
	margin: 0 auto;
	min-height: 450px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #2a2b62;
	border: 1px solid rgba(255, 255, 255, 0.2);
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 1;
}

@media (max-width: 768px) {
  .service-card::before {
    display: none; 
  }
}

.service-card:hover::before {
	opacity: 0.9;
	background: #2a2b62;
}

.service-card {
	transition: all 0.3s ease;
}

.service-card:hover {
	transform: translateY(-8px);
	opacity: 0.9;
	box-shadow: 0 16px 48px rgba(42, 43, 98, 0.3);
}

.service {
	background: var(--white);
	padding: 0;
	border-radius: 0;
	border: 1px solid #2a2b62;
	transition: var(--transition);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.service:hover {
	transform: translateY(-4px);
}

.service-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.service-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.service-img {
	transition: all 0.3s ease;
}

.service-card:hover .service-img {
	transform: scale(1.05);
	opacity: 0.8;
}

.service-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2rem;
	background: linear-gradient(transparent, rgba(30, 41, 59, 0.9));
	color: var(--white);
	z-index: 2;
	transform: translateY(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.service-content {
	transition: all 0.3s ease;
}

.service-card:hover .service-content {
	transform: translateY(0);
	opacity: 1;
}

.service-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 1rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.service-description {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	line-height: 1.6;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}


@media (max-width: 768px)
{
	.service-content {
		bottom: 0;
		background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.50) 25%, rgba(0,0,0,0.85) 60%, rgba(0,0,0,1) 100%);
		color: #fff;
		opacity: 1;
		transform: translateY(0%);
	}
}

.references-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.reference {
	background: var(--white);
	padding: 2.5rem 2rem;
	border-radius: 0;
	border: 1px solid rgba(42, 43, 98, 0.1);
	transition: var(--transition);
}

.reference:hover {
	transform: translateY(-4px);
}

.reference-icon {
	width: 50px;
	height: 50px;
	background: var(--accent);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
}

.reference-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 1rem;
}

.reference p {
	color: var(--gray-600);
	font-size: 0.95rem;
	line-height: 1.6;
}



.contact .section-title {
	color: var(--button-primary);
	text-shadow: 0 2px 8px rgba(227, 6, 19, 0.3);
}

.contact .section-subtitle {
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-form {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 0;
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--white);
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 0;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	font-size: 0.95rem;
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--accent);
}

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

.contact-info {
	display: grid;
	gap: 1.5rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 0;
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: var(--accent);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.25rem;
}

.contact-details h4 {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.contact-details p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
}

/* Footer */
.footer {
	background: var(--gray-900);
	color: var(--white);
	padding: 3rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	font-weight: 600;
}

.footer-section p,
.footer-section a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

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

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

/* Fixed Social Media Icons */
.fixed-social {
	position: fixed;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.social-icon {
	width: 50px;
	height: 50px;
	background: rgba(30, 41, 59, 0.9);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
	background: var(--accent);
	transform: translateX(5px) scale(1.1);
	box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

.social-icon i {
	font-size: 18px;
}


/* Language Selector */
/* Desktop/Mobile wrappers for language switcher */
.language-switcher {
	display: flex;
	align-items: center;
	margin-left: 20px;
}

.language-switcher--mobile {
	display: none;
	width: 100%;
	margin-left: 0;
}

.language-switcher--mobile .language-selector {
	margin-left: 0;
	width: 100%;
	justify-content: flex-start;
}

.language-selector {
	display: flex;
	gap: 5px;
	margin-left: 0;
}

.language-selector:empty {
	display: none;
}

.lang-btn {
	padding: 8px 12px;
	background: transparent;
	border: 1px solid rgba(30, 41, 59, 0.3);
	color: var(--primary);
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	border-radius: 0;
}

.lang-btn.active {
	background: var(--accent);
	color: white;
	border-color: var(--accent);
}

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

/* Footer Styles */
.footer-logo {
	margin-bottom: 20px;
}

.footer-social {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.footer-social-link {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-social-link:hover {
	background: var(--accent);
	transform: translateY(-2px);
}

/* Line Details for Page */
.section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--button-primary), transparent);
	z-index: 1;
}

.section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--button-primary), transparent);
	z-index: 1;
}

/* Additional Line Details */
.container::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, transparent, var(--button-primary), transparent);
	z-index: 1;
}

.container::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, transparent, var(--button-primary), transparent);
	z-index: 1;
}

/* Diagonal Lines */
.section:nth-child(even)::before {
	background: linear-gradient(45deg, transparent, var(--button-primary), transparent);
}

.section:nth-child(odd)::after {
	background: linear-gradient(-45deg, transparent, var(--button-primary), transparent);
}

/* Contact Section Redesign */
.contact {
	position: relative;
	background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
	overflow: hidden;
}

.contact-bg-lines {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(45deg, transparent 48%, rgba(227, 6, 19, 0.1) 49%, rgba(227, 6, 19, 0.1) 51%, transparent 52%),
		linear-gradient(-45deg, transparent 48%, rgba(227, 6, 19, 0.1) 49%, rgba(227, 6, 19, 0.1) 51%, transparent 52%);
	background-size: 50px 50px;
	z-index: 0;
}

/* Global Line Details */
.section {
	position: relative;
}

.section::before,
.section::after {
	content: '';
	position: absolute;
	z-index: 1;
}

.hero-swiper::after {
	content: '';
	position: absolute;
	bottom: 20%;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--button-primary), transparent);
	z-index: 2;
}

/* Services Section Lines */
.services::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--button-primary), transparent);
	z-index: 1;
}

/* References Section Lines */
.references::before {
	content: '';
	position: absolute;
	top: 30%;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--button-primary), transparent);
	z-index: 1;
}

.references::after {
	content: '';
	position: absolute;
	bottom: 30%;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--button-primary), transparent);
	z-index: 1;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	position: relative;
	z-index: 1;
}

.contact-form-container {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(30, 41, 59, 0.1);
	border-radius: 0;
	padding: 3rem;
	position: relative;
}

.contact-form-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--primary));
}

.contact-form-header {
	margin-bottom: 2rem;
}

.contact-form-header h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.contact-form-header p {
	color: var(--gray-600);
	font-size: 0.95rem;
}

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

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--primary);
}

.form-input, .form-textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid rgba(30, 41, 59, 0.1);
	border-radius: 0;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.8);
}

.form-input:focus, .form-textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

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

.contact-submit {
	width: 100%;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, var(--button-primary), var(--button-hover));
	color: white;
	border: none;
	border-radius: 0;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.contact-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(227, 6, 19, 0.3);
}

.contact-info-container {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(30, 41, 59, 0.1);
	border-radius: 0;
	padding: 3rem;
	position: relative;
}

.contact-info-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
}

.contact-info-header {
	margin-bottom: 2rem;
}

.contact-info-header h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.contact-info-header p {
	color: var(--gray-600);
	font-size: 0.95rem;
}

.contact-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.contact-card {
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(30, 41, 59, 0.1);
	border-radius: 0;
	padding: 1.5rem;
	transition: all 0.3s ease;
	position: relative;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(30, 41, 59, 0.1);
	border-color: var(--accent);
}

.contact-card-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent), var(--primary));
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.contact-card-content h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.contact-card-content p {
	color: var(--gray-600);
	font-size: 0.9rem;
	line-height: 1.5;
}

.contact-card-content a {
	color: var(--accent);
	text-decoration: none;
}

.contact-card-content a:hover {
	text-decoration: underline;
}

/* Animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
	.header {
		height: auto;
		min-height: 90px;
	}
	
	.nav {
		height: 90px;
	}
	
	.hero-swiper {
		margin-top: 90px;
	}
	
	.fixed-social {
		left: 10px;
		gap: 10px;
	}

	.social-icon {
		width: 40px;
		height: 40px;
	}

	.social-icon i {
		font-size: 14px;
	}

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

	.contact-info-grid {
		grid-template-columns: 1fr;
	}

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

	/* Mobile Navigation */
	#nav-menu {
		position: fixed !important;
		top: 90px !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		background: var(--white) !important;
		z-index: 1001 !important;
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		transition: opacity 0.3s ease, visibility 0.3s ease !important;
		-webkit-overflow-scrolling: touch;
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: flex-start !important;
		width: 100% !important;
		height: 100% !important;
	}

	#nav-menu.active {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	#nav-menu > ul,
	#nav-menu .nav-menu {
		display: flex !important;
		flex-direction: column !important;
		gap: 0 !important;
		padding: 2rem !important;
		margin: 0 !important;
		list-style: none !important;
		width: 100% !important;
		opacity: 1 !important;
		visibility: visible !important;
		background: white !important;
	}

	#nav-menu > ul > li {
		width: 100%;
		border-bottom: 1px solid rgba(42, 43, 98, 0.1);
	}

	#nav-menu .nav-link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 1rem 0;
		width: 100%;
		border-bottom: none;
	}

	#nav-menu .nav-link::after {
		display: none;
	}

	#nav-menu .nav-dropdown > .nav-link i {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%) rotate(0deg);
		transition: transform 0.3s ease;
	}

	#nav-menu .nav-dropdown.mobile-open > .nav-link i {
		transform: translateY(-50%) rotate(180deg);
	}

	#nav-menu .dropdown-menu {
		position: static;
		opacity: 0;
		visibility: hidden;
		display: none;
		max-height: 0;
		overflow: hidden;
		background: var(--gray-50);
		margin: 0;
		padding: 0 0 0 1rem;
		transform: none;
		box-shadow: none;
		border: none;
		transition: all 0.3s ease;
	}

	#nav-menu .nav-dropdown.mobile-open .dropdown-menu {
		display: block;
		opacity: 1;
		visibility: visible;
		max-height: 1000px;
		margin-top: 0.5rem;
	}

	#nav-menu .dropdown-link {
		padding: 0.75rem 0;
		border-bottom: 1px solid rgba(42, 43, 98, 0.05);
	}

	.language-switcher--desktop {
		display: none !important;
	}

	.language-switcher--mobile {
		display: flex !important;
		border-top: 1px solid rgba(42, 43, 98, 0.1);
		padding-top: 7px;
	}

	.language-switcher--mobile .language-selector {
		flex-wrap: wrap;
		gap: 0.75rem;
	}

	.mobile-toggle {
		display: block !important;
		position: relative;
		z-index: 1002;
		pointer-events: auto;
	}

	.logo img,
	.logo-image {
		height: 55px;
	}
	.trp-language-item{
		padding:5px!important
	}
	.trp-shortcode-switcher__wrapper {
		position: relative;
		margin: auto;
		padding: 0;
		margin: 0!important;
		border: oldlace!important;
		height: 27px!important;
	}

	.hero-slide {
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.hero-content {
		max-width: 100%;
		padding: 2rem 1.5rem;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.hero-title {
		font-size: 2rem;
		text-align: center;
		width: 100%;
	}

	.hero-title .highlight-word::after {
		height: 2px;
		bottom: -3px;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		gap: 1rem;
	}

	.about-grid,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.stats {
		grid-template-columns: 1fr;
	}

	.services-grid,
	.references-grid {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 4rem 0;
	}

	.container {
		padding: 0 1rem;
	}

	.service-hero {
		height: 250px;
		margin-top: 90px;
	}

	.service-hero-title {
		font-size: 1.8rem;
		margin-bottom: 1rem;
	}

	.service-breadcrumb {
		font-size: 0.85rem;
	}

	/* Video responsive */
	.hero-video {
		min-width: 100%;
		min-height: 100%;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

/* İletişim Bilgileri Shortcode Stilleri */
.nextist-contact-info {
	margin: 2rem 0;
}

.nextist-contact-info.contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.nextist-contact-info.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary) 0%, #c82333 100%);
	border-radius: 12px;
	color: var(--white);
	font-size: 1.25rem;
	flex-shrink: 0;
}

.contact-info-content {
	flex: 1;
}

.contact-info-label {
	margin: 0 0 0.5rem 0;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--gray-600);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-info-value {
	margin: 0;
	font-size: 1rem;
	color: var(--gray-900);
	line-height: 1.6;
}

.contact-info-value a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-info-value a:hover {
	color: #c82333;
	text-decoration: underline;
}

/* Sosyal Medya Shortcode Stilleri */
.nextist-social-media {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 2rem 0;
}

.nextist-social-media.social-align-center {
	justify-content: center;
}

.nextist-social-media.social-align-right {
	justify-content: flex-end;
}

.nextist-social-media .social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--white);
	border: 2px solid var(--gray-200);
	color: var(--gray-700);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.nextist-social-media.social-style-default .social-link {
	border-radius: 8px;
}

.nextist-social-media.social-style-rounded .social-link {
	border-radius: 50%;
}

.nextist-social-media.social-style-square .social-link {
	border-radius: 4px;
}

/* Boyutlar */
.nextist-social-media.social-size-small .social-link {
	width: 40px;
	height: 40px;
	font-size: 1rem;
}

.nextist-social-media.social-size-medium .social-link {
	width: 50px;
	height: 50px;
	font-size: 1.25rem;
}

.nextist-social-media.social-size-large .social-link {
	width: 60px;
	height: 60px;
	font-size: 1.5rem;
}

.nextist-social-media .social-link:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Mobil Responsive */
@media (max-width: 768px) {
	.nextist-contact-info.contact-info-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.contact-info-item {
		padding: 1.25rem;
	}
	
	.contact-info-icon {
		min-width: 45px;
		height: 45px;
		font-size: 1.1rem;
	}
	
	.nextist-social-media {
		justify-content: center !important;
		gap: 0.75rem;
	}
	
	.nextist-social-media.social-size-small .social-link {
		width: 45px;
		height: 45px;
	}
	
	.nextist-social-media.social-size-medium .social-link {
		width: 50px;
		height: 50px;
	}
	
	.nextist-social-media.social-size-large .social-link {
		width: 55px;
		height: 55px;
		font-size: 1.3rem;
	}
}

ul:not(.nav-menu ul) {
    margin-left: 20px;
}

.trp-shortcode-switcher
{
	padding: 2px 0 !important;
}