/* Tüm Hakları Webilyo'ya Aittir. İzinsiz Kopyalanamaz ve Çoğaltılamaz. | webilyo.com */
/* Tüm Hakları Webilyo'ya Aittir. İzinsiz Kopyalanamaz ve Çoğaltılamaz. | webilyo.com */
/* Tüm Hakları Webilyo'ya Aittir. İzinsiz Kopyalanamaz ve Çoğaltılamaz. | webilyo.com */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", sans-serif;
}

p {
	margin-bottom: 15px;
}

/* Topbar styles */
.topbar {
	background-color: #403f4c;
	padding: 10px 0;
	border-bottom: 1px solid #e9ecef;
	color: #fff;
}

.topbar-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}

.social-links {
	display: flex;
	gap: 8px;
	align-items: center;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 15px;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
	color: #fff;
	background: #76c25e;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(118, 194, 94, 0.4);
	border-color: #76c25e;
}

.contact-info {
	display: flex;
	gap: 20px;
}

.contact-info a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.contact-info i {
	color: #76c25e;
}

.contact-info a:hover {
	color: #76c25e;
}

.quick-links {
	display: flex;
	gap: 15px;
	align-items: center;
}

.quick-links a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.quick-links a:hover {
	color: #76c25e;
}

.language {
	padding: 5px 10px;
	background-color: #76c25e;
	border-radius: 4px;
}

.language:hover {
	background-color: #fff;
	color: #76c25e !important;
}

.acconimg {
	width: 180px !important;
	height: 135px !important;
	object-fit: cover !important;
}

/* Modern Navigation Styles */
.HeaderArea {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
	padding: 5px 0;
}

.HeaderArea.scrolled {
	padding: 5px 0;
}

.SetContent {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

.Logo {
	flex: 0 0 auto;
}

.Logo img {
	height: 54px;
	width: auto;
	transition: all 0.3s ease;
}

.HeaderArea.scrolled .Logo img {
	height: 50px;
}

.Menu {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.top-level-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 4px;
}

.top-level-menu > li {
	position: relative;
}

.top-level-menu > li > a {
	color: #333;
	text-decoration: none;
	padding: 10px;
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 15px;
	transition: all 0.3s ease;
	border-radius: 5px;
}

.top-level-menu > li > a:hover,
.top-level-menu > li.active > a {
	color: #76c25e;
	background: rgba(118, 194, 94, 0.1);
}

.top-level-menu > li > a i {
	margin-left: 5px;
	font-size: 12px;
	transition: transform 0.3s ease;
}

.top-level-menu > li:hover > a i {
	transform: rotate(180deg);
}

.top-level-menu > li > .second-level-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 220px;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
}

.top-level-menu > li:hover > .second-level-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.second-level-menu li {
	list-style: none;
	position: relative;
}

.second-level-menu li .second-level-menu {
	position: absolute;
	top: 0;
	left: 100%;
	background: #fff;
	min-width: 220px;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateX(10px);
	transition: all 0.3s ease;
	z-index: 101;
}

.second-level-menu li:hover > .second-level-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.second-level-menu li a {
	color: #333;
	text-decoration: none;
	padding: 8px 15px;
	display: block;
	font-size: 14px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.second-level-menu li a:hover,
.second-level-menu li.active > a {
	color: #76c25e;
	background: rgba(118, 194, 94, 0.1);
}

.HeaderArea .SetContent .responsiveMenu.fa,
.HeaderArea .SetContent .responsiveMenu.fas {
	display: none;
	font-size: 30px;
	cursor: pointer;
	color: #333;
	z-index: 1000;
	margin-left: auto;
}

.Menu .MenuClose .fa,
.Menu .MenuClose .fas {
	display: none;
	font-size: 24px;
	cursor: pointer;
	color: #333;
	padding: 10px;
	text-align: right;
}

@media (max-width: 992px) {

	.HeaderArea .SetContent .responsiveMenu.fa,
	.HeaderArea .SetContent .responsiveMenu.fas {
		display: block !important;
		transition: opacity 0.3s ease;
	}

	.Menu {
		position: fixed;
		top: 0;
		right: -300px;
		width: 280px;
		height: 100vh;
		background: #fff;
		padding: 20px;
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease;
		overflow-y: auto;
		z-index: 1001;
		justify-content: flex-start;
	}

	.Menu.active {
		right: 0;
	}

	body.menu-open .HeaderArea .SetContent .responsiveMenu.fa,
	body.menu-open .HeaderArea .SetContent .responsiveMenu.fas {
		opacity: 0;
		visibility: hidden;
		display: none !important;
	}

	.Menu .MenuClose {
		display: block;
		position: absolute;
		top: 10px;
		right: 10px;
		z-index: 1002;
		cursor: pointer;
		padding: 10px;
	}

	.Menu .MenuClose .fa,
	.Menu .MenuClose .fas {
		display: block !important;
		font-size: 24px;
		color: #333;
	}

	.top-level-menu {
		flex-direction: column;
		gap: 5px;
		margin-top: 40px;
		width: 100%;
	}

	.second-level-menu {
		position: static !important;
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
		box-shadow: none !important;
		padding-left: 20px !important;
		display: none;
		background: rgba(118, 194, 94, 0.1) !important;
		border-radius: 5px !important;
		margin: 5px 0 !important;
	}

	.top-level-menu > li.active > .second-level-menu,
	.second-level-menu > li.active > .second-level-menu {
		display: block;
	}

	.second-level-menu .second-level-menu {
		padding-left: 20px !important;
	}

	.top-level-menu > li > a {
		padding: 12px 15px;
		justify-content: space-between;
	}
}

/* Add backdrop when mobile menu is open */
.menu-backdrop {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
}

.menu-backdrop.active {
	display: block;
}

/* Slider Styles */
.slider-container {
	position: relative;
	width: 100%;
	height: calc(100vh - 220px);
	overflow: hidden;
}

.slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.slide.active {
	opacity: 1;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.slider-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	z-index: 2;
	width: 100%;
	padding: 0 20px;
}

.slider-title {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 15px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-subtitle {
	font-size: 20px;
	font-weight: 400;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.7);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #333;
	transition: all 0.3s ease;
	z-index: 2;
}

.slider-button:hover {
	background: rgba(255, 255, 255, 0.9);
}

.slider-button.prev {
	left: 20px;
}

.slider-button.next {
	right: 20px;
}

.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 2;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot:hover {
	background: rgba(255, 255, 255, 0.8);
}

.dot.active {
	background: #76c25e;
}

/* Responsive slider */
@media (max-width: 768px) {
	.slider-container {
		height: 300px;
	}

	.slider-title {
		font-size: 32px;
	}

	.slider-subtitle {
		font-size: 16px;
	}

	.slider-button {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}

	.dot {
		width: 10px;
		height: 10px;
	}
}

/* Welcome Section Styles */
.welcome-section {
	padding: 60px 0;
	background: #f8f9fa;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.quick-buttons {
	display: flex;
	gap: 20px;
	margin-bottom: 60px;
	justify-content: space-between;
	width: 100%;
}

.quick-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	gap: 10px;
	padding: 40px 10px;
	background: #76c25e;
	transition: all 0.3s ease;
	border-radius: 8px;
	flex: 1;
	min-width: 200px;
}

.quick-button:hover {
	background: #62a34c;
}

.icon-box {
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	transition: all 0.3s ease;
}

.quick-button:hover .icon-box {
	transform: translateY(-3px);
}

.icon-box i {
	font-size: 24px;
	color: #76c25e;
}

.quick-button span {
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
	display: block;
	text-align: center;
}

.welcome-content {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}

.text-content {
	flex: 1;
}

.text-content h1 {
	color: #333;
	font-size: 28px;
	margin-bottom: 20px;
	font-weight: 600;
}

.text-content h2 {
	color: #333;
	font-size: 22px;
	margin: 30px 0 15px;
	font-weight: 500;
}

.text-content p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 15px;
}

.text-content ul {
	list-style-type: none;
	padding: 0;
}

.text-content ul li {
	color: #666;
	margin-bottom: 12px;
	padding-left: 20px;
	position: relative;
	line-height: 1.6;
}

.text-content ul li:before {
	content: "\2022";
	color: #76c25e;
	position: absolute;
	left: 0;
}

.welcome-image {
	width: 400px;
	border-radius: 8px;
	overflow: hidden;
}

.welcome-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Responsive styles */
@media (max-width: 992px) {
	.welcome-content {
		flex-direction: column;
	}

	.welcome-image {
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.quick-buttons {
		flex-wrap: wrap;
		gap: 15px;
	}

	.quick-button {
		width: calc(50% - 8px);
		min-width: unset;
		flex: unset;
	}

	.icon-box {
		width: 50px;
		height: 42px;
	}

	.icon-box i {
		font-size: 22px;
	}

	.quick-button span {
		font-size: 18px;
	}

	.text-content h1 {
		font-size: 24px;
	}

	.text-content h2 {
		font-size: 20px;
	}
}

/* News Section Styles */
.news-section {
	padding: 60px 0;
	background-color: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-title {
	text-align: center;
	color: #333;
	font-size: 32px;
	margin-bottom: 40px;
	position: relative;
}

.section-title:after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #76c25e;
	margin: 15px auto 0;
}

.news-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.news-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.news-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
	transform: scale(1.05);
}

.news-content {
	padding: 20px;
}

.news-date {
	color: #76c25e;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.news-date i {
	font-size: 14px;
}

.news-title {
	color: #333;
	font-size: 18px;
	line-height: 1.4;
	margin: 0;
	transition: color 0.3s ease;
}

.news-card:hover .news-title {
	color: #76c25e;
}

.news-footer {
	text-align: center;
	margin-top: 40px;
}

.see-all-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 35px;
	background-color: #76c25e;
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 500;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(118, 194, 94, 0.3);
}

.see-all-button:hover {
	background-color: #5a9e47;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(118, 194, 94, 0.4);
}

.see-all-button i {
	font-size: 14px;
	transition: transform 0.3s ease;
}

.see-all-button:hover i {
	transform: translateX(5px);
}

/* Responsive styles for news section */
@media (max-width: 992px) {
	.news-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.news-section {
		padding: 40px 0;
	}

	.section-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.news-cards {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.news-image {
		height: 180px;
	}

	.news-content {
		padding: 15px;
	}

	.news-title {
		font-size: 16px;
	}
}

/* CTA Section Styles */
.cta-section {
	position: relative;
	background-image: url('/images/congress.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 100px 0;
	color: #fff;
	text-align: center;
	margin-bottom: 60px;
}

.cta-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
}

.cta-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.cta-title {
	font-size: 42px;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-date {
	font-size: 24px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.cta-date i {
	color: #76c25e;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 40px;
	background-color: #76c25e;
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	font-size: 18px;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
	background-color: #fff;
	color: #76c25e;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button i {
	transition: transform 0.3s ease;
}

.cta-button:hover i {
	transform: translateX(5px);
}

/* Responsive styles for CTA section */
@media (max-width: 768px) {
	.cta-section {
		padding: 60px 0;
	}

	.cta-title {
		font-size: 32px;
		margin-bottom: 15px;
	}

	.cta-date {
		font-size: 20px;
		margin-bottom: 25px;
	}

	.cta-button {
		padding: 15px 30px;
		font-size: 16px;
	}
}

/* Gallery Section Styles */
.gallery-section {
	padding: 60px 0;
	background-color: #fff;
}

.gallery-carousel-container {
	position: relative;
	margin-top: 40px;
	padding: 0 40px;
}

.gallery-carousel {
	overflow: hidden;
	position: relative;
}

.gallery-track {
	display: flex;
	transition: transform 0.5s ease;
}

.gallery-item {
	flex: 0 0 calc(33.333% - 20px);
	margin: 0 10px;
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
	border-radius: 8px;
	cursor: pointer;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-overlay i {
	color: #fff;
	font-size: 24px;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: #76c25e;
	border: none;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 2;
}

.gallery-nav:hover {
	background: #5a9e47;
	transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
	left: 0;
}

.gallery-nav.next {
	right: 0;
}

/* Lightbox styles */
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	z-index: 1100;
	padding: 40px;
}

.lightbox.active {
	display: block;
}

.lightbox-content {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-content img {
	max-width: 90%;
	max-height: 90vh;
	object-fit: contain;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	z-index: 1110;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.3s ease;
}

.lightbox-close:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	z-index: 1110;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.3s ease;
}

.lightbox-nav:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-nav.prev {
	left: 20px;
}

.lightbox-nav.next {
	right: 20px;
}

/* Responsive styles for gallery */
@media (max-width: 992px) {
	.gallery-item {
		flex: 0 0 calc(50% - 20px);
	}
}

@media (max-width: 576px) {
	.gallery-item {
		flex: 0 0 calc(100% - 20px);
	}

	.gallery-carousel-container {
		padding: 0 30px;
	}

	.gallery-nav {
		width: 30px;
		height: 30px;
	}

	.footer-contact-item {
		text-align: left !important;
	}
}

/* Footer Styles */
.footer {
	background-color: #2c2c2c;
	color: #fff;
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-brand h3 {
	color: #76c25e;
}

.footer-logo {
	width: 200px;
	height: auto;
	filter: brightness(0) invert(1);
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-contact-item:hover {
	color: #76c25e;
}

.footer-contact-item i {
	color: #76c25e;
	font-size: 16px;
	width: 20px;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.footer-links-column h3 {
	color: #76c25e;
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 600;
}

.footer-links-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links-column ul li {
	margin-bottom: 0;
}

.footer-links-column ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	padding: 6px 0;
}

.footer-links-column ul li a::before {
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 8px;
	color: #76c25e;
	transition: transform 0.3s ease;
}

.footer-links-column ul li a:hover {
	color: #76c25e;
	transform: translateX(5px);
}

.footer-links-column ul li a:empty,
.footer-links-column ul li:has(a:empty) {
	display: none !important;
}

.footer-bottom {
	padding-top: 40px;
	padding-bottom: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	text-align: center;
	position: relative;
}

.footer-bottom::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 2px;
	background: #76c25e;
}

.footer-social {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 30px;
}

.social-link {
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
	background: #76c25e;
	color: #fff;
	border-color: #76c25e;
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 10px 20px rgba(118, 194, 94, 0.3);
}

.footer-info {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.footer-info p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.5px;
	margin: 0;
}

.fes-logo {
	height: 35px;
	filter: brightness(0) invert(1) opacity(0.7);
	transition: all 0.3s ease;
}

.fes-logo:hover {
	filter: brightness(0) invert(1) opacity(1);
	transform: scale(1.05);
}

.copyright {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5) !important;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}

.mymedya img {
	opacity: 0.5;
	transition: all 0.3s ease;
}

.mymedya img:hover {
	opacity: 1;
	transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 992px) {
	.footer-content {
		grid-template-columns: 1fr;
	}

	.footer-brand {
		text-align: center;
		align-items: center;
	}

	.footer-links {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

@media (max-width: 576px) {
	.footer {
		padding: 40px 0 20px;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-info {
		flex-direction: column;
	}
}

.fes_link {
	text-decoration: none;
	color: #fff;
}

.fes_link p span.fes_text:hover {
	color: #76c25e;
}

.fes_link:visited {
	text-decoration: none;
}

.go-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 45px;
	height: 45px;
	background-color: #76c25e;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	z-index: 999;
}

.go-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.go-to-top:hover {
	background-color: #62a34c;
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.go-to-top i {
	font-size: 20px;
}

@media (max-width: 768px) {
	.go-to-top {
		bottom: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
	}
}

.quick-access-dropdown {
	position: relative;
}

.quick-access {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 5px;
}

.quick-access i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.quick-access-dropdown:hover .quick-access i {
	transform: rotate(180deg);
}

.quick-access-menu {
	position: absolute;
	top: 100%;
	left: -15px;
	background: #403f4c;
	min-width: 200px;
	padding: 10px 0;
	border-radius: 4px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1000;
	margin-top: 5px;
	z-index: 10000;
}

.quick-access-dropdown:hover .quick-access-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.quick-access-menu li {
	list-style: none;
}

.quick-access-menu li a {
	color: #fff;
	text-decoration: none;
	padding: 8px 15px;
	display: block;
	font-size: 14px;
	transition: all 0.3s ease;
}

.quick-access-menu li a:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #76c25e;
}

/* Modern Page Header */
.premium-header {
	position: relative;
	padding: 80px 0 80px;
	background: linear-gradient(135deg, #14253c 0%, #2a4773 100%);
	color: #fff;
	overflow: hidden;
}

.premium-header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 60px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23f4f7f6" fill-opacity="1" d="M0,32L120,42.7C240,53,480,75,720,74.7C960,75,1200,53,1320,42.7L1440,32L1440,100L1320,100C1200,100,960,100,720,100C480,100,240,100,120,100L0,100Z"></path></svg>') no-repeat bottom;
	background-size: cover;
	z-index: 1;
}

.premium-header-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
	text-align: center;
}

.premium-breadcrumb {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 50px;
	padding: 12px 30px;
	position: relative;
	z-index: 2;
	margin: 0 auto;
	list-style: none;
}

.premium-breadcrumb li {
	display: inline-flex;
	align-items: center;
}

.premium-breadcrumb li a {
	color: #76c25e;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.premium-breadcrumb li a:hover {
	color: #fff;
}

.premium-breadcrumb li.active {
	color: #fff;
	font-weight: 600;
}

.premium-breadcrumb li + li::before {
	content: '/';
	color: rgba(255, 255, 255, 0.5);
	margin: 0 15px;
}

/* Bulletproof Layout */
.premium-layout-wrapper {
	background-color: #f4f7f6;
	padding: 60px 0 100px;
}

.premium-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: flex-start;
}

.premium-sidebar {
	flex: 0 0 320px;
	/* Fixed width sidebar */
	position: sticky;
	top: 120px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-content {
	flex: 1;
	/* Takes remaining space */
	min-width: 0;
	/* Prevents overflow */
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
	padding: 50px;
	line-height: 1.8;
	font-size: 1.1rem;
	color: #4a5568;
	border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Sidebar Styling */
.sidebar-image {
	width: 100%;
	height: auto;
	border-bottom: 4px solid #76c25e;
	border-radius: 20px 20px 0 0;
}

.duyurudate {
	display: block;
	padding: 18px 25px;
	background: #f8f9fa;
	font-weight: 700;
	color: #14253c;
	font-size: 1rem;
	border-bottom: 1px solid #eee;
}

.duyurudate i {
	color: #76c25e;
	margin-right: 10px;
}

.premium-sidebar ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.premium-sidebar ul li {
	border-bottom: 1px solid #f1f5f9;
	margin: 0 !important;
	padding: 0 !important;
}

.premium-sidebar ul li:last-child {
	border-bottom: none;
}

.premium-sidebar ul li a {
	display: block;
	padding: 18px 25px;
	color: #4a5568;
	font-weight: 600;
	font-size: 1.05rem;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	border-left: 4px solid transparent;
}

.premium-sidebar ul li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, rgba(118, 194, 94, 0.1) 0%, transparent 100%);
	z-index: -1;
	transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-sidebar ul li a:hover,
.premium-sidebar ul li a.active {
	color: #14253c;
	padding-left: 32px;
	border-left-color: #76c25e;
}

.premium-sidebar ul li a:hover::before,
.premium-sidebar ul li a.active::before {
	width: 100%;
}

/* Sub-menu Styles (Alt MenÃ¼ler) */
.premium-sidebar ul li ul {
	background-color: #fafbfc;
	border-top: 1px solid #f1f5f9;
}

.premium-sidebar ul li ul li {
	border-bottom: 1px solid #f1f5f9;
}

.premium-sidebar ul li ul li:last-child {
	border-bottom: none;
}

.premium-sidebar ul li ul li a {
	padding: 12px 25px 12px 45px;
	font-size: 0.95rem;
	font-weight: 500;
	color: #64748b;
	border-left: 3px solid transparent;
	position: relative;
}

.premium-sidebar ul li ul li a::before {
	display: none;
	/* Alt menÃ¼de arka plan hover efekti kapalÄ± */
}

/* Alt menÃ¼nÃ¼n baÅŸÄ±na ufak bir ok ikonu ekleyelim CSS ile */
.premium-sidebar ul li ul li a::after {
	content: '\f105';
	/* FontAwesome right angle */
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.8rem;
	color: #cbd5e1;
	transition: all 0.3s ease;
}

.premium-sidebar ul li ul li a:hover,
.premium-sidebar ul li ul li a.active {
	color: #76c25e;
	padding-left: 50px;
	border-left-color: #76c25e;
	background-color: #fff;
}

.premium-sidebar ul li ul li a:hover::after,
.premium-sidebar ul li ul li a.active::after {
	color: #76c25e;
	left: 30px;
}

/* Content Styling */
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
z-index: 999;
}

.go-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.go-to-top:hover {
	background-color: #62a34c;
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.go-to-top i {
	font-size: 20px;
}

@media (max-width: 768px) {
	.go-to-top {
		bottom: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
	}
}

.quick-access-dropdown {
	position: relative;
}

.quick-access {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 5px;
}

.quick-access i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.quick-access-dropdown:hover .quick-access i {
	transform: rotate(180deg);
}

.quick-access-menu {
	position: absolute;
	top: 100%;
	left: -50px;
	background: #403f4c;
	min-width: 220px;
	padding: 10px 0;
	border-radius: 4px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1000;
	margin-top: 5px;
	z-index: 10000;
}

.quick-access-dropdown:hover .quick-access-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.quick-access-menu li {
	list-style: none;
}

.quick-access-menu li a {
	color: #fff;
	text-decoration: none;
	padding: 8px 15px;
	display: block;
	font-size: 14px;
	transition: all 0.3s ease;
}

.quick-access-menu li a:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #76c25e;
}

/* Modern Page Header */
.premium-header {
	position: relative;
	padding: 80px 0 80px;
	background: linear-gradient(135deg, #14253c 0%, #2a4773 100%);
	color: #fff;
	overflow: hidden;
	text-align: center;
}

.premium-header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 60px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23f4f7f6" fill-opacity="1" d="M0,32L120,42.7C240,53,480,75,720,74.7C960,75,1200,53,1320,42.7L1440,32L1440,100L1320,100C1200,100,960,100,720,100C480,100,240,100,120,100L0,100Z"></path></svg>') no-repeat bottom;
	background-size: cover;
	z-index: 1;
}

.premium-header-title {
	font-size: 40px;
	font-weight: 800;
	margin-bottom: 50px;
	position: relative;
	z-index: 2;
	text-align: center;
}

.premium-breadcrumb {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 50px;
	padding: 12px 30px;
	position: relative;
	z-index: 2;
	margin: 0 auto;
	list-style: none;
}

.premium-breadcrumb li {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
}

.premium-breadcrumb li a {
	color: #76c25e;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.premium-breadcrumb li a i {
	margin: 0 10px 0 0;
}

.premium-breadcrumb li a:hover {
	color: #fff;
}

.premium-breadcrumb li.active {
	color: #fff;
	font-weight: 600;
}

.premium-breadcrumb li + li::before {
	content: '/';
	color: rgba(255, 255, 255, 0.5);
	margin: 0 15px;
}

/* Bulletproof Layout */
.premium-layout-wrapper {
	background-color: #f4f7f6;
	padding: 60px 0 100px;
}

.premium-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: flex-start;
}

.premium-grid h1 {
	display: block;
}

.premium-sidebar {
	flex: 0 0 320px;
	/* Fixed width sidebar */
	position: sticky;
	top: 120px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-content {
	flex: 1;
	/* Takes remaining space */
	min-width: 0;
	/* Prevents overflow */
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
	padding: 34px;
	line-height: 1.8;
	font-size: 1rem;
	color: #4a5568;
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-content ul {
	padding: 0 0 0 20px;
	margin-bottom: 20px;
}

.premium-content table tbody tr {
	height: 40px;
}

.premium-content table tbody tr td a {
	background: #76c25e;
	color: #FFF;
	padding: 8px 22px;
	border-radius: 10px;
}

/* Sidebar Styling */
.sidebar-image {
	width: 100%;
	height: auto;
	border-bottom: 4px solid #76c25e;
	border-radius: 20px 20px 0 0;
}

.duyurudate {
	display: block;
	padding: 18px 25px;
	background: #f8f9fa;
	font-weight: 700;
	color: #14253c;
	font-size: 1rem;
	border-bottom: 1px solid #eee;
}

.duyurudate i {
	color: #76c25e;
	margin-right: 10px;
}

.premium-sidebar ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.premium-sidebar ul li {
	border-bottom: 1px solid #f1f5f9;
	margin: 0 !important;
	padding: 0 !important;
}

.premium-sidebar ul li:last-child {
	border-bottom: none;
}

.premium-sidebar ul li a {
	display: block;
	padding: 18px 25px;
	color: #4a5568;
	font-weight: 600;
	font-size: 1.05rem;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	border-left: 4px solid transparent;
}

.premium-sidebar ul li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, rgba(118, 194, 94, 0.1) 0%, transparent 100%);
	z-index: -1;
	transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-sidebar ul li a:hover,
.premium-sidebar ul li a.active {
	color: #14253c;
	padding-left: 32px;
	border-left-color: #76c25e;
}

.premium-sidebar ul li a:hover::before,
.premium-sidebar ul li a.active::before {
	width: 100%;
}

/* Content Styling */
.premium-content h1,
.premium-content h2,
.premium-content h3 {
	color: #14253c;
	font-weight: 700;
	margin-top: 30px;
	margin-bottom: 20px;
}

.premium-content img {
	max-width: 100% !important;
	height: auto !important;
	border-radius: 6px;
}

.premium-content a {
	color: #76c25e;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.premium-content a:hover {
	color: #14253c;
}

/* Responsive */
@media (max-width: 991px) {
	.premium-grid {
		flex-direction: column;
	}

	.premium-sidebar {
		flex: 1 1 100%;
		width: 100%;
		order: 2;
		position: static;
	}

	.premium-content {
		flex: 1 1 100%;
		width: 100%;
		order: 1;
		padding: 30px;
	}

	.premium-header-title {
		font-size: 2.5rem;
	}
}

/* Legendary Background */
.baglantilar-page {
	padding: 80px 0 100px;
	background: linear-gradient(135deg, #f4f7f6 0%, #e2e8f0 100%);
	position: relative;
	overflow: hidden;
}

/* Decorative floating elements in background */
.baglantilar-page::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(118, 194, 94, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
	border-radius: 50%;
	z-index: 0;
}

/* Bulletproof Grid System */
.legendary-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 40px;
	position: relative;
	z-index: 1;
}

/* Premium Card Design */
.baglanti-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	text-align: center;
	padding: 40px 30px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border: 1px solid rgba(255, 255, 255, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.baglanti-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(118, 194, 94, 0.15);
	border-color: rgba(118, 194, 94, 0.3);
}

/* Image Styling with Grayscale to Color Reveal */
.baglanti-img-wrapper {
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	width: 100%;
}

.baglanti-img {
	max-height: 100%;
	max-width: 80%;
	object-fit: contain;
	filter: grayscale(100%) opacity(0.7);
	transition: all 0.5s ease;
}

.baglanti-card:hover .baglanti-img {
	transform: scale(1.08);
	filter: grayscale(0%) opacity(1);
}

/* Typography */
.baglanti-title {
	font-size: 1.15rem;
	color: #14253c;
	font-weight: 700;
	margin-bottom: 25px;
	line-height: 1.5;
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Modern Outline Button */
.baglanti-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 30px;
	background-color: transparent;
	color: #76c25e;
	border: 2px solid #76c25e;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	width: 100%;
}

.baglanti-link i {
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.baglanti-link:hover {
	background-color: #76c25e;
	color: #fff;
	box-shadow: 0 8px 20px rgba(118, 194, 94, 0.3);
}

.baglanti-link:hover i {
	transform: translateX(4px);
}

/* Networks Section */
.networks-section {
	padding: 60px 0;
	background: #fff;
	border-top: 1px solid #f1f5f9;
	position: relative;
	overflow: hidden;
}

.networks-title {
	text-align: center;
	font-size: 2rem;
	color: #14253c;
	font-weight: 800;
	margin-bottom: 40px;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
}

.networks-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: #76c25e;
}

.swiper-networks {
	width: 100%;
	padding: 20px 0 50px 0;
}

.network-card {
	background: #fff;
	border: 1px solid #f1f5f9;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
	height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}

.network-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
	border-color: rgba(118, 194, 94, 0.3);
}

.network-logo-wrapper {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	width: 100%;
}

.network-logo {
	max-height: 100%;
	max-width: 90%;
	object-fit: contain;
	filter: grayscale(100%) opacity(0.7);
	transition: all 0.4s ease;
}

.network-card:hover .network-logo {
	filter: grayscale(0%) opacity(1);
	transform: scale(1.05);
}

.network-name {
	font-size: 14px;
	font-weight: 600;
	color: #495057;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.network-card:hover .network-name {
	color: #14253c;
}

/* Custom Swiper Pagination */
.swiper-pagination-networks {
	bottom: 0 !important;
}

.swiper-pagination-networks .swiper-pagination-bullet {
	background: #cbd5e1;
	opacity: 1;
	transition: all 0.3s ease;
	width: 10px;
	height: 10px;
}

.swiper-pagination-networks .swiper-pagination-bullet-active {
	background: #76c25e;
	width: 25px;
	border-radius: 5px;
}

/* News Cards */
.news-title a {
	color: #2c3e50;
	text-decoration: none;
	transition: color 0.3s ease;
}

.news-title a:hover {
	color: #76c25e;
}

.news-date {
	color: #76c25e;
	font-size: 0.9rem;
	margin-bottom: 8px;
	font-weight: 500;
}

/* Yayinlar Grid Custom CSS */
.yayinlar-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 20px;
}

.yayinlar-sidebar {
	width: 25%;
}

.yayinlar-content {
	width: calc(75% - 30px);
}

.yayinlar-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.yayin-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.yayin-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.yayin-thumb {
	height: 250px;
	background: #f9f9f9;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border-bottom: 1px solid #f0f0f0;
}

.yayin-thumb img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.yayin-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #76c25e;
	color: white;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 1px;
}

.yayin-title {
	padding: 15px;
	font-size: 1.1rem;
	font-weight: bold;
	color: #333;
	text-align: center;
}

@media (max-width: 991px) {

	.yayinlar-sidebar,
	.yayinlar-content {
		width: 100%;
	}
}

/* --- ILETISIM PAGE CSS (Premium Modern Design) --- */
.contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.contact-info-item {
	background: #ffffff;
	border-radius: 16px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	border: 1px solid #f1f5f9;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
	height: 100%;
}

.contact-info-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #76c25e, #14253c);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.contact-info-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	border-color: rgba(118, 194, 94, 0.3);
}

.contact-info-item:hover::before {
	opacity: 1;
}

.contact-icon-wrapper {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	background: #f8fafc;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #76c25e;
	font-size: 32px;
	transition: all 0.4s ease;
}

.contact-info-item:hover .contact-icon-wrapper {
	background: #76c25e;
	color: #ffffff;
	transform: scale(1.1);
}

.contact-info-title {
	font-size: 1.3rem;
	color: #14253c;
	font-weight: 700;
	margin-bottom: 15px;
}

.contact-info-text {
	color: #64748b;
	line-height: 1.6;
	font-size: 15px;
	margin: 0;
}

.contact-main-grid {
	max-width: 800px;
	margin: 0 auto;
}

.contact-form-box {
	background: #ffffff;
	border-radius: 16px;
	padding: 50px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	border: 1px solid #f1f5f9;
	height: 100%;
}

.contact-form-title {
	font-size: 2rem;
	color: #14253c;
	font-weight: 800;
	margin-bottom: 10px;
}

.contact-form-subtitle {
	color: #64748b;
	margin-bottom: 30px;
	font-size: 15px;
}

.form_box {
	margin-bottom: 20px;
}

.uyeformtxt {
	width: 100%;
	padding: 15px 20px;
	font-size: 15px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background-color: #f8fafc;
	transition: all 0.3s;
	color: #334155;
}

.uyeformtxt:focus {
	border-color: #76c25e;
	background-color: #ffffff;
	outline: none;
	box-shadow: 0 0 0 4px rgba(118, 194, 94, 0.1);
}

.captchax {
	margin-bottom: 0px;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
}

.uyariKutusu {
	background-color: #fff3cd;
	border: 1px solid #ffeeba;
	padding: 15px;
	margin-bottom: 25px;
	border-radius: 8px;
	color: #856404;
	font-size: 15px;
}

.submit-btn-custom {
	display: inline-block;
	font-size: 16px;
	background: linear-gradient(135deg, #76c25e 0%, #62a34c 100%);
	padding: 16px 30px;
	color: #fff;
	transition: all 0.3s;
	border-radius: 10px;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	width: 100%;
	border: none;
	cursor: pointer;
	box-shadow: 0 5px 15px rgba(118, 194, 94, 0.3);
}

.submit-btn-custom:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(118, 194, 94, 0.4);
	color: #fff;
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media (max-width: 768px) {
	.contact-form-row {
		grid-template-columns: 1fr;
	}
}

.contact-form-full {
	grid-column: 1 / -1;
}

.contact-map {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	border: 1px solid #f1f5f9;
	height: 100%;
}

/* Empty Content Placeholder */
.premium-empty-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	text-align: center;
	color: #a0aec0;
	background: #f8f9fa;
	border-radius: 20px;
	border: 2px dashed #e2e8f0;
	padding: 50px;
	transition: all 0.3s ease;
}

.premium-empty-content:hover {
	border-color: #cbd5e0;
	background: #f1f5f9;
}

.premium-empty-content i {
	font-size: 3.5rem;
	color: #cbd5e0;
	margin-bottom: 20px;
}

.premium-empty-content h3 {
	margin: 0 0 10px 0;
	font-size: 1.5rem;
	color: #4a5568;
	font-weight: 700;
}

.premium-empty-content p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.6;
}

/* Premium Subpage Cards */
.premium-subpages-grid {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.premium-subpage-card {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 12px;
	padding: 20px;
	text-decoration: none !important;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
	height: 100%;
}

.premium-subpage-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
	border-color: #76c25e;
}

.premium-subpage-card .card-icon {
	width: 50px;
	height: 50px;
	background: rgba(118, 194, 94, 0.1);
	color: #76c25e;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	margin-right: 15px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.premium-subpage-card:hover .card-icon {
	background: #76c25e;
	color: #fff;
}

.premium-subpage-card .card-content {
	flex-grow: 1;
}

.premium-subpage-card .card-content h4 {
	margin: 0;
	font-size: 1.05rem;
	color: #14253c;
	font-weight: 600;
	transition: color 0.3s ease;
}

.premium-subpage-card:hover .card-content h4 {
	color: #76c25e;
}

/* Premium Biography Card (Baskan, Uye vs. Content) */
.premium-biography-card {
	background: #ffffff;
	border-radius: 16px;
}

/* Clearfix for floated images inside CKEditor content */
.premium-biography-card::after {
	content: "";
	display: table;
	clear: both;
}

/* Headings */
.premium-biography-card h1,
.premium-biography-card h2,
.premium-biography-card h3 {
	color: #14253c;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 25px;
	border-bottom: 2px solid #f1f5f9;
	padding-bottom: 15px;
	font-size: 2rem;
}

/* Images (Profile Photos) */
.premium-biography-card img {
	width: 33% !important;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	margin: 0 16px 30px 0 !important;
	float: right;
	border: 3px solid #fff;
}

/* Paragraphs */
.premium-biography-card p {
	color: #475569;
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 20px;
}

/* Bold/Strong text (Usually Subheadings in CKEditor) */
.premium-biography-card strong,
.premium-biography-card b {
	color: #14253c;
	font-weight: 700;
}

/* Lists */
.premium-biography-card ul {
	list-style-type: disc;
	padding-left: 20px;
	margin-bottom: 20px;
}

.premium-biography-card ul li {
	color: #475569;
	line-height: 1.8;
	margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
	.premium-biography-card {
		padding: 25px;
	}

	.premium-biography-card img {
		float: none;
		display: block;
		margin: 0 auto 30px auto;
		max-width: 100%;
	}

	.premium-biography-card h1,
	.premium-biography-card h2,
	.premium-biography-card h3 {
		text-align: center;
		font-size: 1.75rem;
	}
}

/* Topbar Mobile Fixes */
@media (max-width: 991px) {
	.topbar-content {
		flex-direction: column;
		gap: 15px;
		padding: 15px;
		text-align: center;
	}

	.contact-info {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.quick-links {
		flex-wrap: wrap;
		justify-content: center;
	}

	.contact-info a {
		white-space: nowrap;
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.topbar-content {
		padding: 10px;
	}

	.contact-info {
		gap: 5px;
	}
	/* Calendar Mobile Fixes */
	.monthly-day-title-wrap div {
		font-size: 11px !important;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		padding: 0 2px;
	}
}

/* Custom Pagination Styles */
.pagination-wrapper {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid #edf2f7;
	text-align: center;
	width: 100%;
}

.custom-pagination {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.custom-pagination li a,
.custom-pagination li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	color: #14253c;
	background: #fff;
	border: 1px solid #e2e8f0;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.custom-pagination li a:hover {
	color: #fff;
	background: #76c25e;
	border-color: #76c25e;
	transform: translateY(-2px);
	box-shadow: 0 5px 12px rgba(118, 194, 94, 0.3);
}

.custom-pagination li.active span {
	color: #fff;
	background: #14253c;
	border-color: #14253c;
	box-shadow: 0 4px 12px rgba(20, 37, 60, 0.25);
}

.custom-pagination li.disabled span {
	color: #a0aec0;
	background: #f8fafc;
	border-color: #edf2f7;
	cursor: not-allowed;
	box-shadow: none;
}

.custom-pagination li.dots span {
	border: none;
	background: transparent;
	color: #718096;
	box-shadow: none;
	min-width: 25px;
}

.custom-pagination li a.prev-page,
.custom-pagination li a.next-page {
	padding: 0 18px;
	gap: 8px;
	font-weight: 600;
}

.pagination-info {
	margin-top: 15px;
	font-size: 14px;
	color: #718096;
}

/* Duyuru Detay Kare Galeri Grid Tasarımı */
.duyuru-gallery-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
	gap: 14px !important;
	margin-top: 15px !important;
}

@media (max-width: 576px) {
	.duyuru-gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)) !important;
		gap: 10px !important;
	}
}

.duyuru-gallery-card {
	aspect-ratio: 1 / 1 !important;
	width: 100% !important;
	height: 150px !important;
	max-height: 180px !important;
	border-radius: 10px !important;
	overflow: hidden !important;
	background: #f8fafc !important;
	border: 1px solid #e2e8f0 !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
	transition: all 0.3s ease !important;
	position: relative !important;
}

.duyuru-gallery-card:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
	border-color: #cbd5e1 !important;
}

.duyuru-gallery-card a {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	position: relative !important;
}

.premium-content .duyuru-gallery-card img,
.duyuru-gallery-card img,
img.duyuru-gallery-thumb {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: cover !important;
	object-position: center center !important;
	display: block !important;
	border-radius: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	transition: transform 0.4s ease !important;
}

.duyuru-gallery-card:hover img {
	transform: scale(1.08) !important;
}

.galeri-title i {
	margin-right: 6px !important;
	margin-top: 2px;
}

/* Tüm Hakları Webilyo'ya Aittir. İzinsiz Kopyalanamaz ve Çoğaltılamaz. | webilyo.com */


