/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Gitar - Music Band & Musician HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Team css
07. Our Album css
08. Intro Video css
09. Our Gallery css
10. Our Testimonials css
11. Our Blog css
12. CTA Box css
13. Footer css
14. About Us Page css
15. Services Page css
16. Service Single css
17. Blog Archive css
18. Blog Single css
19. Albums Page css
20. Album Single css
21. Team Page css
22. Team Single css
23. Image Gallery css
24. Video Gallery css
25. FAQs Page css
26. Contact Us Page css
27. 404 Error Page css
28. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color				: #FFFFFF;
	--secondary-color			: #150529;
	--text-color				: #C5C5C7;
	--accent-color				: #C42091;
	--accent-secondary-color	: #6617CA;
	--black-color				: #110422;
	--divider-color				: #FFFFFF24;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Didact Gothic", serif;
	--accent-font				: "Jost", serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: url('../images/section-bg-circle-shape.png') var(--black-color);
	background-repeat: repeat-y;
	background-position: top 1000px center;
	background-size: 100% auto;
}

p{
	line-height: 1.6em;
	margin-bottom: 1.4em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-family: var(--accent-font);
	margin : 0;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

::-webkit-scrollbar-track{
	background-color: var(--primary-color);
	border-left: 1px solid var(--white-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--primary-color);
}
::-webkit-scrollbar-thumb{
	background: linear-gradient(0deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
}

::selection{
	color: var(--black-color);
	background-color: var(--divider-color);
	filter: invert(1);
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 600;
	line-height: 1em;
	text-transform: uppercase;
	background: transparent;
	color: var(--primary-color);
	border: none;
	border-radius: 0;
	padding: 16px 30px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 100%;
	background: var(--accent-color);
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover:before{
	width: 100%;
}

.btn-default.btn-highlighted::before{
	background: var(--accent-secondary-color);
}

.readmore-btn{
	position: relative;
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--primary-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
    color: var(--accent-color);
}

.readmore-btn:after{
	content: '';
    position: absolute;
	right: 0;
	top: 50%;
    transform: translate(-2px, -50%);
    background: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 16px;
	height: 12px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:after{
	transform: translate(0, -50%);
}

.cb-cursor:before{
	background: linear-gradient(94.07deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: linear-gradient(94.07deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	/* Fallback: Hide after 6 seconds */
	animation: hidePreloader 6s forwards;
}

@keyframes hidePreloader {
	0% { opacity: 1; }
	90% { opacity: 1; }
	100% { opacity: 0; visibility: hidden; }
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--primary-color) transparent var(--primary-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title.section-title-center{
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	text-align: center;
}

.section-btn{
	text-align: right;
}

.section-title-content-btn .section-btn{
	margin-top: 40px;
	text-align: left;
}

.section-content-btn .section-btn{
	margin-top: 30px;
	text-align: left;
}

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

.section-title-content p:last-child{
	margin-bottom: 0;	
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(94.07deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.section-title h1{
	font-size: 80px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 44px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span{
	font-size: 140px;
	background: linear-gradient(94.07deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title h2 span{
	background: linear-gradient(94.07deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: absolute;
	top: 0;
	width: 100%;
	border-bottom: 1px solid var(--divider-color);
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background-color: var(--black-color);
	border-bottom: 1px solid var(--divider-color);
}

.navbar{
	padding: 20px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	text-transform: uppercase;
	padding: 14px 20px !important;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
	margin-top: 1px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 0;
	position: absolute;
	left: 0;
	top: 100%;
	background: linear-gradient(0deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--primary-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--secondary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: linear-gradient(0deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 0;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--primary-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: linear-gradient(0deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 8px 20px;
	color: var(--primary-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--secondary-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--primary-color);
	position: absolute;
	right: 15px;
    top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-52%) rotate(-180deg);
	color: var(--secondary-color);
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	padding: 230px 0 250px;
	min-height: 100vh;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(17, 4, 34, 0.9) 0%, rgba(17, 4, 34, 0.5) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 230px 0 250px;
	min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(17, 4, 34, 0.9) 0%, rgba(17, 4, 34, 0.5) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 150px;
	text-align: center;
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	text-align: center;
	z-index: 2;
}

.hero-content .section-title h3{
	font-size: 36px;
	font-weight: 600;
	text-transform: uppercase;
	-webkit-text-fill-color: var(--primary-color);
	margin-bottom: 30px;
}

.hero-content .section-title p{
	max-width: 750px;
	margin: 0 auto;
	margin-top: 20px;
}

.hero-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.down-arrow{
	position: absolute;
	top: auto;
	left: 50%;
	bottom: 60px;
	transform: translate(-50%);
	z-index: 2;
}

.down-arrow a{
	width: 30px;
	height: 50px;
	border: 2px solid var(--primary-color);
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	animation: jumpInfinite 2s infinite;
	transition: all 0.5s ease-in-out;
	z-index: 2;
}

.down-arrow a:hover{
	border-color: var(--accent-color);
}

.down-arrow a i{
	font-size: 20px;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.down-arrow a:hover i{
	color: var(--accent-color);
}
  
@keyframes jumpInfinite{
	0%{
		margin-bottom: 0;
	}
	50%{
		margin-bottom: 20px;
	}
	100%{
		margin-bottom: 0;
	}
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us{
	background: url('../images/section-bg-shape.png') no-repeat;
	background-position: center center;
	background-size: auto;
	padding: 100px 0;
}

.about-us-image{
	overflow: hidden;
}

.about-us-image figure{
	display: block;
}

.about-us-image figure::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black-color);
	opacity: 30%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-us-image img{
	width: 100%;
	aspect-ratio: 1 / 0.4;
	object-fit: cover;
}

.about-counter-box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.about-counter-item{
	width: calc(25% - 22.5px);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.about-counter-item h2 {
	font-size: 60px;
	font-weight: 700;
	color: var(--accent-color);
}

.about-counter-item h2 span {
	font-family: "Clash Display", sans-serif;
}

.about-counter-item h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-top: 10px;
}

.about-counter-item p {
	margin-bottom: 0px;
}

/************************************/
/***       06. Our Team css	      ***/
/************************************/

.our-team{
	background: var(--secondary-color);
	padding: 100px 0;
}

.team-item{
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.team-image{
	position: relative;
	margin-bottom: 20px;
}

.team-image a{
    display: block;
	cursor: none;
	overflow: hidden;
}

.team-image a figure{
	position: relative;
}

.team-image figure::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black-color);
    opacity: 40%;
    width: 100%;
    height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-image figure::before{
	transform: scale(1);
}

.team-image img{
    width: 100%;
    aspect-ratio: 1 / 1.35;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img{
	transform: scale(1.1);
}

/* Ekibimiz: UCM logo (fotoğraf yerine) */
.team-image--logo {
	background: rgba(255, 255, 255, 0.05);
}
.team-image--logo figure {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	min-height: 200px;
}
.team-image--logo .team-logo-img {
	width: 100%;
	max-width: 140px;
	height: auto;
	aspect-ratio: auto;
	object-fit: contain;
}
.team-item:hover .team-image--logo .team-logo-img {
	transform: none;
}

/* Sanatçılar: müzik türü filtre sekmeleri */
.artist-genre-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.artist-filter-btn {
	padding: 10px 20px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	background: transparent;
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 600;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.25s ease;
}

.artist-filter-btn:hover {
	border-color: rgba(228, 35, 134, 0.6);
	color: #fff;
	background: rgba(228, 35, 134, 0.2);
}

.artist-filter-btn.active {
	background: var(--accent-color, #e42386);
	border-color: var(--accent-color, #e42386);
	color: #fff;
}

/* Filtre uygulandığında eşleşmeyen slaytları gizle */
.artists-slider[data-filter]:not([data-filter="all"]) .swiper-slide {
	visibility: hidden;
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.artists-slider[data-filter="pop"] .swiper-slide[data-genre~="pop"],
.artists-slider[data-filter="rock"] .swiper-slide[data-genre~="rock"],
.artists-slider[data-filter="anadolu"] .swiper-slide[data-genre~="anadolu"],
.artists-slider[data-filter="rap"] .swiper-slide[data-genre~="rap"],
.artists-slider[data-filter="alternatif"] .swiper-slide[data-genre~="alternatif"],
.artists-slider[data-filter="akustik"] .swiper-slide[data-genre~="akustik"] {
	visibility: visible;
	position: relative;
	width: auto;
	height: auto;
	overflow: visible;
	opacity: 1;
	pointer-events: auto;
}

.team-social-icon{
	position: absolute;
	top: 50%;
    left: 20px;
    right: 20px;
	opacity: 0;
	visibility: hidden;
    transform: translateY(50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon{
	transform: translateY(-50%);
	opacity: 1;
	visibility: visible;
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 15px;
}

.team-social-icon ul li a{
	width: 40px;
	height: 40px;
	color: var(--secondary-color);
	background: var(--primary-color);
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover{
	background: var(--accent-color);
    color: var(--primary-color);
}

.team-social-icon ul li a i{
	color: inherit;
	font-size: 20px;
}

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

.team-content h3{
	font-size: 22px;
    font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.team-content h3 a{
	display: inline-block;
	color: inherit;
}

.team-content p{
	text-transform: capitalize;
	margin: 0;
}

.section-footer-btn{
	text-align: center;
	margin-top: 20px;
}

/************************************/
/***      07. Our Album css	      ***/
/************************************/

.our-album{
	padding: 100px 0;
}

.album-item{
	margin-bottom: 30px;
}

.album-image{
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
}

.album-item-btn{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.album-item:hover .album-item-btn{
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.album-item-btn a{
	position: relative;
    display: block;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.album-item-btn a:hover{
    background-position: right center;
}

.album-item-btn a img{
    width: 100%;
    max-width: 20px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.album-item-btn a:hover img{
	transform: rotate(0deg);
}

.album-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.9;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.album-item:hover .album-image figure img{
	transform: scale(1.1);
}

.album-item-content{
	text-align: center;
}

.album-item-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.album-item-content h3 a{
	color: inherit;
}

.album-item-content p{
	margin: 0;
}

.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p{
	font-family: var(--accent-font);
	font-size: 22px;
	margin: 0;
}

.section-footer-text p span{
	font-weight: 500;
	color: var(--black-color);
	background: linear-gradient(254.54deg, var(--accent-color) 0.03%, var(--accent-secondary-color) 100%);
	border-radius: 0;
	padding: 5px 10px;
	margin-right: 10px;
}

.section-footer-text p a{
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	font-weight: 500;
	text-transform: capitalize;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	background-position: right center;
}

/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video{
	background: var(--secondary-color);
	padding: 100px 0;
}

.intro-video .container-fluid{
	padding: 0;
}

.intro-video-box{
	position: relative;
	overflow: hidden;	
	padding: 200px 0;
}

.intro-video-box::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	background: url('../images/intro-video-bg-shape.png');
	background-repeat: repeat-x;
	background-position: left center;
	background-size: cover;
	animation: videowavemove 40s infinite linear;
	width: 100%;
	height: 290px;
}

@keyframes videowavemove{
	from{
		background-position: left center;
	}
	to{
		background-position: left 200vw center;
	}
}

.intro-bg-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	max-width: 1300px;
	height: 100%;
	margin: 0 auto;
}

.intro-bg-image a{
	display: block;
	cursor: none;
	height: 100%;
}

.intro-bg-image figure{
	height: 100%;
}

.intro-video-box figure::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
    background: var(--black-color);
	opacity: 20%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

.video-play-button{
	position: relative;
	z-index: 1;
}

.video-play-button a{
	position: relative;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 100%;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button:hover a{
	background-position: right center;
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i{
	font-size: 30px;
	color: var(--primary-color);
}

/************************************/
/***      09. Our Gallery css	  ***/
/************************************/

.our-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.843;
	object-fit: cover;
}

/************************************/
/***	10. Our Testimonial Css   ***/
/************************************/

.our-testimonial{
	position: relative;
	background: url('../images/testimonials-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    padding: 100px 0;
    overflow: hidden;
}

.our-testimonial:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-color);
    opacity: 40%;
}

.our-testimonial .container{
	position: relative;
	z-index: 1;
}

.testimonial-slider{
	position: relative;
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

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

.testimonial-quote{
	text-align: center;
	margin-bottom: 40px;
}

.testimonial-quote img{
	max-width: 24px;
}

.testimonial-content{
	margin-bottom: 40px;
}

.testimonial-content p{
	font-size: 24px;
	line-height: 1.5em;
	color: var(--primary-color);
	margin: 0;
}

.author-image{
	margin-bottom: 15px;
}

.author-image figure,
.author-image img{
	border-radius: 50%;
	max-width: 60px;
	margin: 0 auto;
}

.author-content h3{
	font-size: 22px;
	text-transform: capitalize;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.author-content p{
	font-size: 16px;
	color: var(--text-color);
	margin-bottom: 5px;
	text-transform: capitalize;
}

.author-project{
	display: inline-block;
	font-size: 14px;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	margin-top: 5px;
}

.testimonial-pagination{
	position: relative;
	text-align: center;
	margin-top: 50px;
}

.testimonial-pagination .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    background: var(--primary-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active{
	width: 30px;
    background: var(--accent-color);
	border-radius: 10px;
}

/************************************/
/***       11. Our Blog css	      ***/
/************************************/

.our-blog{
	background: url(../images/section-bg-shape.png) no-repeat;
    background-position: center center;
    background-size: auto;
	padding: 100px 0;
}

.post-item{
	position: relative;
	width: 100%;
}

.post-featured-image a{
    cursor: none;
    display: block;
    overflow: hidden;
}

.post-featured-image figure{
	display: block;
}

.post-featured-image figure::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(17, 4, 34, 0) 0%, rgba(17, 4, 34, 0.6) 100%);
	z-index: 1;
}

.post-featured-image img{
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-body{
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 30px;
	z-index: 2;
}

.post-item-content{
	margin-bottom: 15px;
}

.post-item-content h3{
    font-size: 22px;
	line-height: 1.4em;
}

.post-item-content h3 a{
	display: inline-block;
    color: inherit;
}

.post-meta ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-meta ul li{
	display: inline-block;
	line-height: normal;
	border-right: 1px solid var(--text-color);
	padding-right: 15px;
	margin-right: 15px;
}

.post-meta ul li:last-child{
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

.latest-post-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.latest-post-box .post-featured-image img{
	aspect-ratio: 1 / 0.484;
}

.post-item.highlighted-post .post-featured-image img{
	aspect-ratio: 1 / 1.0165;
}

/************************************/
/***        12. CTA Box css	      ***/
/************************************/

.cta-box{
	position: relative;
	background: url('../images/cta-box-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.cta-box::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black-color);
	opacity: 70%;
    z-index: 1;
}

.cta-box .container{
	position: relative;
	z-index: 1;
}

.cta-box .section-title{
	margin-bottom: 0;
}

/************************************/
/***        13. Footer css  	  ***/
/************************************/

.footer-main{
	background-color: var(--secondary-color);
	padding: 80px 0 0;
}

.footer-logo{
	margin-bottom: 20px;
}

.footer-logo img{
	width: 100%;
	max-width: 141px;
}

.footer-links h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.footer-links p{
	font-size: 16px;
}

.footer-links ul{
	list-style: disc;
    margin: 0;
    padding-left: 20px;
}

.footer-links.footer-contact-box ul{
	list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li{
	color: var(--text-color);
	text-transform: capitalize;
	line-height: 1.5em;
	margin-bottom: 12px;
}

.footer-links.footer-contact-box ul li{
	margin-bottom: 15px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li::marker{
    color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover::marker{
	color: var(--primary-color);
}

.footer-links ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover{
	color: var(--accent-color);
}

.footer-newsletters-form .form-group{
	position: relative;
	display: flex;
	align-items: center;
	background: transparent;
	border-bottom: 1px solid var(--divider-color);
	padding: 0 0 12px 0;
}

.footer-newsletters-form .form-group .form-control{
	position: relative;
    width: calc(100% - 25px);
    border: none;
    border-radius: 0;
    color: var(--text-color);
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-newsletters-form .form-group .form-control::placeholder{
	color: var(--text-color);
}

.footer-newsletters-form .form-group i{
	font-size: 16px;
	color: var(--text-color);
	margin-right: 10px;
}

.footer-newsletters-form .form-group button{
	background: transparent;
	margin-left: 5px;
    border: none;
    padding: 0;
	transition: all 0.3s ease-in-out;
}

.footer-newsletters-form .form-group button img{
	max-width: 20px;
}

.footer-copyright{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px 30px;
	border-top: 1px solid var(--divider-color);
	margin-top: 60px;
	padding: 40px 0;
}

.footer-copyright-text p{
	font-family: var(--accent-font);
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 0;
}

.footer-social-links{
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-links span{
	font-family: var(--accent-font);
	font-weight: 500;
	line-height: 1.2em;
    text-transform: capitalize;
    color: var(--primary-color);
}

.footer-social-links ul{
	display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li{
    display: inline-block;
    margin-right: 15px;
}

.footer-social-links ul li:last-child{
	margin: 0;
}

.footer-social-links ul li a{
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li:hover a{
	background: var(--accent-color);
	color: var(--primary-color);
}

.footer-social-links ul li a i{
    color: inherit;
    font-size: 18px;
}

/************************************/
/***     14. About Us Page css    ***/
/************************************/

.page-header{
    position: relative;
    background: url('../images/page-header-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
	padding: 240px 0 140px;
}

.page-header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(17, 4, 34, 0.9) 0%, rgba(17, 4, 34, 0.5) 100%);
    width: 100%;
    height: 100%;
}

.page-header-box{
    position: relative;
	text-align: center;
    z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 80px;
    font-weight: 800;
    text-transform: uppercase;
	margin-bottom: 5px;
	cursor: none;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--primary-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active{
	color: var(--primary-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--primary-color);
}

.our-approach{
    padding: 100px 0;
}

.our-approach .section-title.section-title-center{
    max-width: 850px;
}

.our-approach-nav{
	margin-bottom: 60px;
}

.our-approach-nav .nav-tabs{
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 40px;
	border: none;
}

.our-approach-nav ul li button{
	border: none;
}

.our-approach-nav ul li .nav-link{
    position: relative;
    font-family: var(--accent-font);
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    background: transparent;
    background-size: 200% auto;
    color: var(--primary-color);
    border: 1px solid var(--accent-color);
    border-radius: 0;
    padding: 14px 20px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.our-approach-nav ul li .nav-link.active,
.our-approach-nav ul li .nav-link:focus,
.our-approach-nav ul li .nav-link:hover{
    border-color: var(--accent-color);
    background: transparent;
    color: var(--primary-color);
}

.our-approach-nav ul li .nav-link:before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
  	left: 50%;
  	right: 50%;
  	opacity: 0;
	background: var(--accent-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.our-approach-nav ul li .nav-link.active::before,
.our-approach-nav ul li .nav-link:focus::before,
.our-approach-nav ul li .nav-link:hover::before{
    left: -5px;
    right: -5px;
    opacity: 1;
}

.approach-tab-list ul{
	list-style: none;
	padding: 0;
    margin: 0;
}

.approach-tab-list ul li{
	position: relative;
	line-height: 1.5em;
	text-transform: capitalize;
    color: var(--text-color);
	padding-left: 30px;
    margin-bottom: 15px;
}

.approach-tab-list ul li:last-child{
    margin-bottom: 0;
}

.approach-tab-list ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 1px;
    left: 0;
    font-size: 18px;
    font-weight: 400;
    background: linear-gradient(94.07deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.approach-image figure{
    display: block;
}

.approach-image img{
    width: 100%;
    aspect-ratio: 1 / 0.77;
    object-fit: cover;
}

.our-collection{
    background: var(--secondary-color);
    padding: 100px 0;
}

.our-collection-image{
    margin-right: 30px;
}

.our-collection-image figure{
    display: block;
}

.our-collection-image img{
    width: 100%;
    aspect-ratio: 1 / 0.782;
    object-fit: cover;
}

.collection-content{
    margin-bottom: 30px;
}

.collection-content p:last-child{
    margin-bottom: 0;
}

.collection-item-list{
    display: flex;
    gap: 20px 30px;
    flex-wrap: wrap;
}

.collection-item{
    width: calc(50% - 15px);
    border: 1px solid var(--divider-color);
    padding: 30px;
    transition: all 0.4s ease-in-out;
}

.collection-item:hover{
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.collection-item .icon-box{
    margin-bottom: 30px;
}

.collection-item .icon-box img{
    width: 100%;
    max-width: 40px;
}

.collection-item-content h3{
    font-size: 22px;
    margin-bottom: 10px;
}

.collection-item-content p{
    margin-bottom: 0;
}

.collection-button{
    margin-top: 40px;
}

.our-faqs{
    padding: 100px 0;
}

.our-faqs-content{
	position: sticky;
	top: 20px;
	margin-right: 30px;
}

/* FAQ More Button */
.faq-more-button {
	margin-top: 35px;
}

.faq-more-button .btn-default {
	margin-top: 0;
}

.faq-accordion .accordion-item{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
	padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button{
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2em;
    color: var(--primary-color);
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed){
    padding-bottom: 10px;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\f106';
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 3px    ;
    border: 2px solid var(--primary-color);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    transform: rotate(180deg);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body{
    padding-right: 30px;
}

.faq-accordion .accordion-item:last-child .accordion-body{
    padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body p{
    color: var(--text-color);
    margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child{
    margin-bottom: 0;
}

/************************************/
/***     15. Services Page css    ***/
/************************************/

.page-services{
    padding: 100px 0 70px;
}

.service-item{
	border: 1px solid var(--divider-color);
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    transition: all 0.4s ease-in-out;
}

.service-item:hover{
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.service-item .icon-box,
.service-item-content{
    margin-bottom: 30px;
}

.service-item .icon-box img{
    width: 100%;
    max-width: 80px;
}

.service-item-content h3{
    font-size: 22px;
    margin-bottom: 15px;
}

.service-item-content h3 a{
    color: inherit;
}

.service-item-content p{
    margin-bottom: 0;
}

/************************************/
/***    16. Service Single css    ***/
/************************************/

.page-service-single{
    background: url('../images/section-bg-shape.png') no-repeat;
    background-position: top 100px center;
    background-size: auto;
	padding: 100px 0;
}

.page-single-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.page-single-category-list{
	border: 1px solid var(--divider-color);
    margin-bottom: 40px;
}

.page-single-category-list h3{
    font-size: 22px;
    text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
    padding: 30px;
}

.page-single-category-list ul{
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-single-category-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-single-category-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.page-single-category-list ul li a{
    position: relative;
    display: block;
	line-height: 1.4em;
    text-transform: capitalize;
    color: var(--text-color);
    padding-right: 30px;
    transition: all 0.4s ease-in-out;
}

.page-single-category-list ul li:hover a{
    color: var(--primary-color);
}

.page-single-category-list ul li a::before{
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    background: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 18px;
    height: 14px;
    transition: all 0.4s ease-in-out;
}

.page-single-category-list ul li a:hover::before{
    transform: translateY(-50%) rotate(0);
}

.sidebar-cta-box{
	background: linear-gradient(100deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	padding: 50px 40px;
	text-align: center;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-box:hover{
	background-position: right center;
}

.sidebar-cta-box .icon-box,
.sidebar-cta-box .cta-content{
	margin-bottom: 30px;
}

.sidebar-cta-box .icon-box img{
	max-width: 64px;
}

.sidebar-cta-box .cta-content h3{
    font-size: 44px;
	font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.sidebar-cta-box .cta-content p{
	color: var(--primary-color);
	margin: 0;
}

.cta-contact-btn .btn-default:before{
    background: var(--divider-color);
}

.service-featured-image{
    margin-bottom: 20px;
}

.service-featured-image figure{
    display: block;
}

.service-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.438;
    object-fit: cover;
}

.service-entry{
    margin-bottom: 60px;
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry h2{
	font-size: 44px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.service-entry h2 span{
	background: linear-gradient(94.07deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-entry ul{
	list-style: none;
	padding: 0;
    margin: 0;
}

.service-entry ul li{
	position: relative;
	line-height: 1.5em;
    color: var(--text-color);
	padding-left: 30px;
    margin-bottom: 15px;
}

.service-entry ul li:last-child{
    margin-bottom: 0;
}

.service-entry ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 1px;
    left: 0;
    font-size: 18px;
    font-weight: 400;
    background: linear-gradient(94.07deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-benefit-box,
.service-work-box{
    margin-top: 60px;
}

.service-image-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    align-items: center;
}

.service-entry-list,
.service-entry-image{
    width: calc(50% - 15px);
}

.service-entry-image figure{
    display: block;
}

.service-entry-image img{
    width: 100%;
    aspect-ratio: 1 / 0.678;
    object-fit: cover;
}

.service-work-list{
    margin-top: 30px;
}

.service-work-item{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.service-work-item:last-child{
    margin-bottom: 0;
}

.service-work-no{
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(100deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    margin-right: 30px;
    transition: all 0.4s ease-in-out;
}

.service-work-item:hover .service-work-no{
    background-position: right center;
}

.service-work-no h2{
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 0;
}

.service-work-content{
    width: calc(100% - 110px);
}

.service-work-content h3{
    font-size: 22px;
    margin-bottom: 10px;
}

.service-work-content p{
    margin-bottom: 0;
}

/************************************/
/***     17. Blog Archive css     ***/
/************************************/

.page-blog{
    padding: 100px 0;
}

.page-blog .post-item{
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.page-blog .post-item .post-featured-image figure::before{
    display: none;
}

.page-blog .post-featured-image{
    margin-bottom: 20px;
}

.page-blog .post-item-body{
    position: initial;
}

.page-pagination{
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: var(--secondary-color);
	border-radius: 0;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
	color: var(--primary-color);
}

/************************************/
/***      18. Blog Single css     ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--primary-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
    font-family: var(--accent-font);
	font-weight: 500;
    letter-spacing: -0.02em;
	line-height: 1.2em;
	margin: 0 0 0.4em;
}

.post-entry h1{
	font-size: 80px;
}

.post-entry h2{
	font-size: 44px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('../images/icon-blockquote.svg');
    border: 1px solid var(--divider-color);
	background-repeat: no-repeat;
	background-position: 30px 35px;
    background-size: 50px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
    font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-family: var(--accent-font);
    font-size: 22px;
	font-weight: 600;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-family: var(--default-font);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.1em;
	background: linear-gradient(100deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    color: var(--primary-color);
    padding: 10px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
    background-position: right center;
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: linear-gradient(100deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background-position: right center;
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***      19. Albums Page css     ***/
/************************************/

.page-albums{
    padding: 100px 0 70px;
}

/************************************/
/***      20. Album Single css    ***/
/************************************/

.page-album-single{
    padding: 100px 0;
}

.album-detail-box{
	border: 1px solid var(--divider-color);
	padding: 40px;
	margin-bottom: 40px;
}

.album-detail-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
    border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
    padding-bottom: 20px;
}

.album-detail-item:last-child{
    border-bottom: none;
    padding-bottom: 0;
	margin-bottom: 0;
}

.album-detail-item .icon-box{
    margin-right: 20px;
}

.album-detail-item .icon-box img{
    max-width: 40px;
}

.album-detail-item-content{
	width: calc(100% - 60px);
}

.album-detail-item-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.album-detail-item-content p{
	margin-bottom: 0;
}

.album-featured-image{
	position: relative;
    margin-bottom: 40px;
}

.album-featured-image figure{
    display: block;
}

.album-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
}

.album-featured-image .video-play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.album-entry p{
    margin-bottom: 20px;
}

.album-entry p:last-child{
    margin-bottom: 0;
}

.album-entry h2{
    font-size: 44px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.album-entry h2 span{
	background: linear-gradient(94.07deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	background-clip: text;
    -webkit-text-fill-color: transparent;
}

.album-entry ul{
	list-style: none;
	padding: 0;
    margin: 0;
}

.album-entry ul li{
	position: relative;
	line-height: 1.5em;
    color: var(--text-color);
	padding-left: 30px;
    margin-bottom: 20px;
}

.album-entry ul li:last-child{
    margin-bottom: 0;
}

.album-entry ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 1px;
    left: 0;
    font-size: 18px;
    font-weight: 400;
    background: linear-gradient(94.07deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.album-featured-artist-box{
    margin-top: 60px;
}

.album-artist-list-image{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    align-items: center;
    margin-top: 40px;
}

.album-artist-list,
.album-artist-image{
    width: calc(50% - 15px);
}

.album-artist-image figure{
    display: block;
}

.album-artist-image img{
    width: 100%;
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
}

/************************************/
/***       21. Team Page css      ***/
/************************************/

.page-team{
    padding: 100px 0 60px;
}

/************************************/
/***      22. Team Single css     ***/
/************************************/

.page-team-single{
    padding: 100px 0;
}

.team-sidebar-image{
	margin-bottom: 40px;
}

.team-sidebar-image figure{
	display: block;
}

.team-sidebar-image img{
	width: 100%;
    aspect-ratio: 1 / 1.3;
	object-fit: cover;
}

.team-single-entry{
    margin-bottom: 60px;
}

.member-social-links{
	margin-bottom: 30px;
}

.member-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.member-social-links ul li{
	display: inline-block;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.member-social-links ul li:last-child{
	margin-right: 0;
}

.member-social-links ul li a{
    background-color: var(--primary-color);
    color: var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
    overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.member-social-links ul li a:hover{
    color: var(--primary-color);
    background-color: var(--accent-color);
}

.member-social-links ul li a i{
	font-size: 20px;
}

.member-content-body{
    margin-bottom: 30px;
}

.member-content-body p{
    margin-bottom: 0;
}

.member-info-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.member-info-list ul li{
    font-family: var(--accent-font);
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    color: var(--primary-color);
    text-transform: capitalize;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 20px;
}

.member-info-list ul li:last-child{
	margin-bottom: 0;
}

.member-info-list ul li span{
    font-family: var(--default-font);
	width: 75%;
	font-size: 18px;
	font-weight: 400;
    text-transform: capitalize;
    color: var(--text-color);
	display: flex;
	align-items: center;
}

/************************************/
/***     23. Image Gallery css    ***/
/************************************/

.page-gallery{
    padding: 100px 0 70px;
}

/************************************/
/***     24. Video Gallery css    ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(94.07deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--primary-color);
	color: var(--accent-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	aspect-ratio: 1 / 0.843;
	object-fit: cover;
}

/************************************/
/***      25. FAQs Page css       ***/
/************************************/

.page-faqs{
    padding: 100px 0;
}

.page-faqs-catagery .page-faq-accordion{
	margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child{
	margin-bottom: 0px;
}

/************************************/
/***    26. Contact Us Page css   ***/
/************************************/

.page-contact-us{
    padding: 100px 0;
}

.contact-info-list{
    margin-right: 60px;
}

.contact-info-item{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.contact-info-item:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-item .icon-box{
    margin-right: 20px;
}

.contact-info-item .icon-box img{
    width: 100%;
    max-width: 40px;
}

.contact-info-content{
    width: calc(100% - 60px);
}

.contact-info-content p{
    text-transform: capitalize;
    margin-bottom: 5px;
}

.contact-info-content h3{
    font-size: 18px;
    font-weight: 500;
}

.contact-info-content h3 a{
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.contact-info-content h3 a:hover{
    color: var(--accent-color);
}

.contact-us-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 0;
	padding: 20px;
	box-shadow: none;
	outline: none;
}

.contact-us-form .form-control::placeholder{
	color: var(--text-color);
}

.google-map .container-fluid{
	padding: 0;
}

/*** Yasal / bilgilendirme sayfaları ***/
.page-legal-content {
    padding: 60px 0 100px;
}

.legal-content-block {
    font-size: 16px;
    line-height: 1.7;
}

.legal-content-block .lead {
    font-size: 18px;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.legal-content-block h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content-block h2:first-child {
    margin-top: 0;
}

.legal-content-block p {
    margin-bottom: 1rem;
}

.legal-content-block ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content-block a {
    color: var(--accent-color, #e42386);
    text-decoration: none;
}

.legal-content-block a:hover {
    text-decoration: underline;
}

.contact-info-block p {
    margin-bottom: 1rem;
}

.google-map-iframe,
.google-map-iframe iframe{
    height: 450px;
    width: 100%;
}

.google-map-iframe iframe{
    filter: grayscale(1);
    transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover{
    filter: grayscale(0);
}

/************************************/
/***    27. 404 Error Page css    ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 45%;
}

.error-page-content{
	width: 100%;
	max-width: 680px;
	margin: 0 auto; 
	text-align: center;
}

.error-page-content-body p,
.error-page-content .section-title{
	margin-bottom: 20px;
}

/************************************/
/***      28. Responsive css      ***/
/************************************/

@media only screen and (max-width: 991px){

	.btn-default{
		font-size: 16px;
		padding: 14px 20px;
	}

	.btn-default::before{
		width: 44px;
	}

	.readmore-btn{
		font-size: 16px;
	}

	.navbar{
		padding: 15px 0;
	}

	.main-menu ul li.highlighted-menu{
		display: block;
	}
	
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-content-btn .section-btn,
	.section-title-content-btn .section-btn{
		margin-top: 15px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 55px;
	}

	.section-title h2{
		font-size: 34px;
	}

	.section-title h1 span{
		font-size: 90px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.section-title-content{
		margin-left: 0;
		margin-top: 15px;
	}

	.section-title-content p{
		margin-bottom: 10px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.hero{
		padding: 170px 0 120px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 170px 0 120px;
		min-height: auto;
	}
	
	.hero.hero-slider-layout .hero-pagination{
		bottom: 85px;
	}

	.hero-content .section-title h3{
		font-size: 30px;
		margin-bottom: 20px;
	}

	.hero-content .section-title p{
		max-width: 100%;
		margin-top: 15px;
	}

	.down-arrow{
		bottom: 20px;
	}

	.down-arrow a{
		width: 25px;
		height: 40px;
	}

	.down-arrow a i{
		font-size: 16px;
	}

	.about-us{
		background-size: 80% auto;
		padding: 50px 0;
	}

	.about-counter-box{
		gap: 20px 30px;
		margin-top: 30px;
	}

	.about-counter-item{
		width: calc(50% - 15px);
	}

	.about-counter-item h2{
		width: 65px;
		font-size: 45px;
		margin-right: 10px;
	}

	.about-counter-item h3{
		width: calc(100% - 75px);
		font-size: 20px;
	}

	.our-team{
		padding: 50px 0;
	}

	.team-image{
		margin-bottom: 15px;
	}

	.team-image img{
		width: 100%;
		aspect-ratio: 1 / 1.1;
	}

	.team-content h3{
		font-size: 20px;
	}

	.section-footer-btn{
		margin-top: 10px;
	}

	.our-album{
		padding: 50px 0;
	}

	.album-image{
		margin-bottom: 15px;
	}

	.album-image figure img{
		aspect-ratio: 1 / 0.7;
	}

	.album-item-content h3{
		font-size: 20px;
	}

	.section-footer-text{
		margin-top: 10px;
	}

	.section-footer-text p{
		font-size: 20px;
	}

	.intro-video{
		padding: 50px 0;
	}

	.intro-video-box{
		padding: 150px 0;
	}

	.intro-bg-image{
		max-width: 100%;
		padding: 0 50px;
	}

	.intro-video-box::before{
		height: 190px;
	}

	.video-play-button a{
		width: 80px;
		height: 80px;
	}

	.video-play-button a i{
		font-size: 24px;
	}

	.our-gallery{
		padding: 50px 0 20px;
	}

	.our-testimonial{
		padding: 50px 0;
	}

	.testimonial-content,
	.testimonial-quote{
		margin-bottom: 30px;
	}

	.testimonial-content p{
		font-size: 20px;
	}

	.author-image{
		margin-bottom: 10px;
	}

	.author-content h3{
		font-size: 20px
	}

	.testimonial-pagination{
		margin-top: 30px;
	}

	.our-blog{
		padding: 50px 0;
	}

	.post-item-body{
		left: 20px;
		right: 20px;
		bottom: 20px;
	}

	.post-meta ul li{
		padding-right: 10px;
		margin-right: 10px;
	}

	.post-item.highlighted-post{
		margin-bottom: 30px;
	}

	.post-item.highlighted-post .post-featured-image img{
		aspect-ratio: 1 / 0.5;
	}

	.latest-post-box .post-item{
		width: calc(50% - 15px);
	}

	.latest-post-box .post-featured-image img{
		aspect-ratio: 1 / 0.8;
	}

	.post-item-content h3{
		font-size: 20px;
	}

	.cta-box{
		padding: 50px 0;
	}

	.footer-main{
		padding: 40px 0 0;
	}

	.footer-copyright{
		margin-top: 30px;
		padding: 20px 0;
	}

	.page-header{
        padding: 170px 0 80px;
    }

    .page-header-box h1{
        font-size: 55px;
        margin-bottom: 5px;
    }

	.our-approach{
        padding: 50px 0;
    }

    .our-approach .section-title.section-title-center{
        width: 100%;
    }
    
    .our-approach-nav{
        margin-bottom: 40px;
    }

    .our-approach-nav ul li .nav-link{
        padding: 14px 20px;
    }

    .approach-tab-content{
        margin-bottom: 30px;
    }

    .approach-tab-list ul li{
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .approach-tab-list ul li::before{
        font-size: 16px;
    }

    .approach-image img{
        aspect-ratio: 1 / 0.65;
    }

	.our-collection{
		padding: 50px 0;
	}

	.our-collection-image{
        margin: 0 0 30px 0;
    }

    .our-collection-image img{
        aspect-ratio: 1 / 0.58;
    }

    .collection-item{
        padding: 20px;
    }

    .collection-item .icon-box{
        margin-bottom: 20px;
    }

    .collection-item-content h3{
        font-size: 20px;
    }

    .collection-button{
        margin-top: 30px;
    }

	.our-faqs{
        padding: 50px 0;
    }

    .our-faqs-content{
        position: initial;
        margin: 0 0 30px 0;
    }

    .faq-accordion .accordion-header .accordion-button{
        font-size: 20px;
    }

    .faq-accordion .accordion-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.page-services{
        padding: 50px 0 20px;
    }

    .service-item{
        padding: 30px;
    }

    .service-item .icon-box,
    .service-item-content{
        margin-bottom: 20px;
    }
    
    .service-item .icon-box img{
        max-width: 60px;
    }

    .service-item-content h3{
        font-size: 20px;
        margin-bottom: 10px;
    }

	.page-service-single{
        padding: 50px 0;
    }

    .page-single-sidebar{
        position: initial;
        margin: 0 0 30px 0;
    }

    .page-single-category-list h3{
        font-size: 20px;
        padding: 20px;
    }

    .page-single-category-list ul{
        padding: 20px;
    }

    .page-single-category-list ul li{
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .page-single-category-list ul li a::before{
        width: 16px;
        height: 12px;
    }

    .sidebar-cta-box{
        padding: 30px;
    }

    .sidebar-cta-box .icon-box,
    .sidebar-cta-box .cta-content{
        margin-bottom: 20px;
    }

    .sidebar-cta-box .icon-box img{
        max-width: 54px;
    }

    .sidebar-cta-box .cta-content h3{
        font-size: 34px;
        margin-bottom: 10px;
    }

    .service-entry{
        margin-bottom: 40px;
    }

    .service-entry p{
        margin-bottom: 15px;
    }

    .service-entry h2{
        font-size: 34px;
        margin-bottom: 15px;
    }

    .service-entry ul li{
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .service-entry ul li::before{
        font-size: 16px;
    }

    .service-benefit-box,
    .service-work-box{
        margin-top: 40px;
    }
    
    .service-entry-image img{
        aspect-ratio: 1 / 0.57;
    }

    .service-work-no{
        width: 60px;
        height: 60px;
        margin-right: 20px;
    }

    .service-work-no h2{
        font-size: 32px;
        margin-bottom: 0;
    }

    .service-work-content{
        width: calc(100% - 80px);
    }

    .service-work-content h3{
        font-size: 20px;
        margin-bottom: 5px;
    }

	.page-blog{
        padding: 50px 0;
    }

	.page-blog .post-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.page-blog .post-featured-image{
		margin-bottom: 15px;
	}

    .page-pagination{
        margin-top: 10px;
    }

	.page-single-post{
        padding: 50px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.45em;
    }
    
    .post-entry h2{
        font-size: 34px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry ol li,
    .post-entry ul li{
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 80px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }

    .tag-links{
        font-size: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 8px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-albums{
        padding: 50px 0 20px;
    }

	.page-album-single{
        padding: 50px 0;
    }

    .album-detail-box{
        padding: 30px;
        margin-bottom: 30px;
    }

    .album-detail-item{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .album-detail-item-content h3{
        font-size: 20px;
    }

    .album-featured-image{
        margin-bottom: 30px;
    }

    .album-featured-image img{
        aspect-ratio: 1 / 0.5;
    }

    .album-entry p{
        margin-bottom: 15px;
    }

    .album-entry h2{
        font-size: 34px;
        margin-bottom: 15px;
    }

    .album-entry ul li{
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .album-entry ul li::before{
        font-size: 16px;
    }
    
    .album-featured-artist-box{
        margin-top: 40px;
    }

    .album-artist-list-image{
        margin-top: 30px;
    }

	.page-team{
        padding: 50px 0 20px;
    }

	.team-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.page-team-single{
        padding: 50px 0;
    }

    .team-sidebar-image{
        margin-bottom: 30px;
    }

    .team-sidebar-image img{
        aspect-ratio: 1 / 0.82;
		object-position: top center;
    }

    .team-single-entry{
        margin-bottom: 40px;
    }

    .member-social-links,
    .member-content-body{
        margin-bottom: 20px;
    }

    .member-info-list ul li{
        font-size: 20px;
        margin-bottom: 15px;
    }

	.page-gallery{
        padding: 50px 0 20px;
    }

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
        padding: 50px 0;
    }
    
    .page-faqs-catagery .page-faq-accordion{
        margin-bottom: 40px;
    }

	.page-contact-us{
        padding: 50px 0;
    }

    .contact-info-list{
        margin: 0 0 40px 0;
    }

    .contact-info-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .contact-us-form .form-control{
        padding: 13px 15px;
    }

	.error-page{
		padding: 50px 0;
	}

	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}

	.error-page-content{
		max-width: 100%;
	}

    .error-page-content-body p,
    .error-page-content .section-title{
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px){

	body{
		font-size: 16px;
	}

	.readmore-btn{
        font-size: 16px;
    }

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 28px;
	}

	.section-title h1 span{
		font-size: 40px;
	}

	.section-title h2{
		font-size: 24px;
	}

	.hero-content .section-title h3{
        font-size: 22px;
        margin-bottom: 15px;
    }

	@keyframes jumpInfinite{
		0%{
			margin-bottom: 0;
		}
		50%{
			margin-bottom: 15px;
		}
		100%{
			margin-bottom: 0;
		}
	}

	.about-us-image img{
		aspect-ratio: 1 / 0.6;
	}

	.about-counter-box{
        gap: 20px 20px;
    }

	.about-counter-item{
        display: block;
		width: calc(50% - 10px);
    }

	.about-counter-item h2{
        width: 100%;
        font-size: 30px;
        margin-right: 0px;
		margin-bottom: 5px;
    }

	.about-counter-item h3{
        width: 100%;
        font-size: 18px;
    }

	.album-item-content h3{
		font-size: 18px;
	}

	.section-footer-text p{
		font-size: 18px;
	}

	.intro-video-box{
        padding: 100px 0;
    }

	.intro-bg-image{
        padding: 0 30px;
    }

	.intro-video-box::before{
        height: 90px;
    }

	.video-play-button a{
        width: 65px;
        height: 65px;
    }

	.video-play-button a i{
        font-size: 20px;
    }

	.testimonial-content,
	.testimonial-quote{
        margin-bottom: 20px;
    }

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

	.author-content h3{
        font-size: 18px;
    }
	
	.post-item-body{
		left: 15px;
		right: 15px;
		bottom: 15px;
	}

	.post-item.highlighted-post .post-featured-image img,
	.latest-post-box .post-featured-image img{
		aspect-ratio: 1 / 0.8;
	}

	.latest-post-box .post-item{
		width: 100%;
	}

	.post-item-content{
		margin-bottom: 10px;
	}

	.post-item-content h3{
		font-size: 18px;
	}

	.footer-links{
		margin-bottom: 30px;
	}

	.footer-links h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links ul li,
	.footer-links.footer-contact-box ul li{
		margin-bottom: 10px;
	}

	.footer-links.footer-contact-box ul li:last-child{
		margin-bottom: 0;
	}

	.footer-links p{
		margin-bottom: 15px;
	}

	.footer-copyright{
        flex-direction: column;
        margin-top: 0;
        padding: 15px 0;
    }

	.footer-social-links ul li a{
		width: 34px;
		height: 34px;
	}

	.footer-social-links ul li a i{
		font-size: 16px;
	}

	.page-header-box h1{
        font-size: 28px;
    }

	.page-header-box ol li.breadcrumb-item{
		font-size: 16px;
	}

	.our-approach-nav .nav-tabs{
        gap: 15px;
    }

	.our-approach-nav ul li .nav-link{
        padding: 12px 14px;
    }

	.collection-content,
	.our-collection-image{
        margin: 0 0 20px 0;
    }

	.our-collection-image img{
        aspect-ratio: 1 / 0.65;
    }

    .collection-item{
        width: 100%;
    }

    .collection-item-content h3{
        font-size: 18px;
        margin-bottom: 5px;
    }

	.faq-accordion .accordion-item{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

	.faq-accordion .accordion-header .accordion-button{
        font-size: 18px;
    }

    .faq-accordion .accordion-item .accordion-body{
        padding-right: 0;
    }

	.service-item{
        padding: 20px;
    }

    .service-item .icon-box img{
        max-width: 40px;
    }

    .service-item-content h3{
        font-size: 18px;
        margin-bottom: 5px;
    }

	.page-single-category-list h3{
        font-size: 18px;
    }

    .sidebar-cta-box{
        padding: 30px 20px;
    }

    .sidebar-cta-box .icon-box img{
        max-width: 44px;
    }

    .sidebar-cta-box .cta-content h3{
        font-size: 24px;
        margin-bottom: 5px;
    }

    .service-featured-image img{
        aspect-ratio: 1 / 0.65;
    }

    .service-entry h2{
        font-size: 24px;
    }

    .service-entry-list,
    .service-entry-image{
        width: 100%;
    }

    .service-work-no{
        width: 45px;
        height: 45px;
		margin-right: 10px;
    }

    .service-work-content{
        width: calc(100% - 55px);
    }

    .service-work-content h3{
        font-size: 18px;
    }

	.post-single-meta ol li{
        font-size: 16px;
    }
    
    .post-single-meta ol li i{
        font-size: 16px;
    }
    
    .post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry blockquote p{
        font-size: 16px;
    }
    
    .post-entry h2{
        font-size: 24px;
    }

	.post-tags .tag-links a{
        font-size: 16px;
    }
    
    .tag-links{
        font-size: 18px;
    }

	.album-detail-box{
        padding: 20px;
    }

    .album-detail-item .icon-box{
        margin-right: 15px;
    }

    .album-detail-item .icon-box img{
        max-width: 35px;
    }

    .album-detail-item-content{
        width: calc(100% - 50px);
    }

    .album-detail-item-content h3{
        font-size: 18px;
    }

    .album-featured-image{
        margin-bottom: 20px;
    }

    .album-featured-image img{
        aspect-ratio: 1 / 0.64;
    }

    .album-entry h2{
        font-size: 24px;
    }

    .album-artist-list,
    .album-artist-image{
        width: 100%
    }

	.team-sidebar-image img{
        aspect-ratio: 1 / 1.3;
        object-position: center center;
    }

    .member-info-list ul li{
        font-size: 18px;
    }

    .member-info-list ul li span{
        width: 66%;
        font-size: 16px;
    }

	.contact-info-list{
        margin: 0 0 30px 0;
    }

    .google-map-iframe,
    .google-map-iframe iframe{
        height: 350px;
    }
}

/* Artists Slider css */
.artists-slider{
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.artists-slider .swiper-wrapper{
	cursor: none;
}

.artists-slider .team-item{
	height: 100%;
    margin-bottom: 0px;
}

.artists-pagination{
	position: relative;
	text-align: center;
	margin-top: 50px;
}

.artists-pagination .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    background: var(--primary-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.artists-pagination .swiper-pagination-bullet-active{
	width: 30px;
    background: var(--accent-color);
	border-radius: 10px;
}

/* Concerts Carousel css */
.concerts-carousel{
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.concerts-carousel .swiper-wrapper{
	cursor: none;
}

.concerts-carousel .concert-card{
	height: 100%;
    margin-bottom: 0px;
}

.concerts-pagination{
	position: relative;
	text-align: center;
	margin-top: 50px;
}

.concerts-pagination .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    background: var(--primary-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.concerts-pagination .swiper-pagination-bullet-active{
	width: 30px;
    background: var(--accent-color);
	border-radius: 10px;
}

/* 3D Card Effect & Glassmorphism */
.team-item {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

.team-item:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg) scale3d(1.05, 1.05, 1.05);
}

.team-image {
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
}

.team-content {
    transform: translateZ(10px);
}

.team-social-icon {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}



/* Modal özelleştirme */
#artistModal .modal-content {
    background: rgba(20,5,41,0.95);
    color: #fff;
    border-radius: 16px;
    border: none;
}
#artistModal .modal-header {
    border-bottom: 1px solid #333;
}
#artistModal .modal-title {
    font-size: 2rem;
    font-weight: bold;
}
#artistModal .btn-close {
    filter: invert(1);
}

/* Modern Concert Cards */
.concert-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
    transform-style: preserve-3d;
}

.concert-card:hover {
    transform: translateY(-10px) scale(1.02) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(196, 32, 145, 0.3);
    border-color: var(--accent-color);
}

.concert-image {
    position: relative;
    overflow: hidden;
}

.concert-image figure {
    position: relative;
    margin: 0;
}

.concert-image img {
    width: 100%;
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.concert-card:hover .concert-image img {
    transform: scale(1.1);
}

.concert-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.concert-date {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(196, 32, 145, 0.4);
}

.concert-date .day {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.concert-date .month {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.concert-actions {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    display: flex;
    gap: 12px;
    align-items: center;
}

.concert-card:hover .concert-actions {
    transform: translateY(0);
    opacity: 1;
}

.btn-ticket {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(196, 32, 145, 0.4);
    flex: 1;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 32, 145, 0.6);
    color: #fff;
    background: linear-gradient(135deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
}

.btn-details {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-details:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-details img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.btn-details:hover img {
    transform: translateX(2px);
}

.concert-content {
    padding: 25px;
    position: relative;
}

.concert-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.concert-info h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.concert-info h3 a:hover {
    color: var(--accent-color);
}

.concert-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.concert-location,
.concert-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.concert-location i,
.concert-time i {
    color: var(--accent-color);
    font-size: 1rem;
    width: 16px;
}



.concert-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.concert-cta-buttons .btn-default {
    min-width: 180px;
}

/* Responsive Concert Cards */
@media only screen and (max-width: 991px) {
    .concert-card {
        margin-bottom: 20px;
    }
    
    .concert-content {
        padding: 20px;
    }
    
    .concert-info h3 {
        font-size: 1.2rem;
    }
    
    .concert-actions {
        bottom: 15px;
        left: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .btn-ticket {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .btn-details {
        width: 36px;
        height: 36px;
    }
    
    .btn-details img {
        width: 14px;
        height: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .concert-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .concert-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .concert-cta-buttons .btn-default {
        width: 100%;
        max-width: 250px;
    }
}

/* Video Testimonials Carousel css */
.video-testimonials-carousel{
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.video-testimonials-carousel .swiper-wrapper{
	cursor: none;
}

/* Swiper Navigation Buttons */
.video-testimonials-carousel .swiper-button-next,
.video-testimonials-carousel .swiper-button-prev{
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transform-style: preserve-3d;
}

.video-testimonials-carousel .swiper-button-next:hover,
.video-testimonials-carousel .swiper-button-prev:hover{
	background: rgba(196, 32, 145, 0.3);
	border-color: var(--accent-color);
	transform: translateY(-2px) scale(1.1);
	box-shadow: 0 10px 25px rgba(196, 32, 145, 0.4);
}

.video-testimonials-carousel .swiper-button-next::after,
.video-testimonials-carousel .swiper-button-prev::after{
	font-size: 18px;
	color: #fff;
	font-weight: bold;
}

.video-testimonials-carousel .swiper-button-next:hover::after,
.video-testimonials-carousel .swiper-button-prev:hover::after{
	color: #fff;
}

.video-testimonials-carousel .swiper-button-next.swiper-button-disabled,
.video-testimonials-carousel .swiper-button-prev.swiper-button-disabled{
	opacity: 0.3;
	cursor: not-allowed;
	transform: none;
}

.video-testimonials-carousel .swiper-button-next.swiper-button-disabled:hover,
.video-testimonials-carousel .swiper-button-prev.swiper-button-disabled:hover{
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	transform: none;
	box-shadow: none;
}

.video-testimonial-card{
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
	transform-style: preserve-3d;
}

.video-testimonial-card:hover{
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 20px 40px rgba(196, 32, 145, 0.3);
	border-color: var(--accent-color);
}

.video-thumbnail{
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
}

.video-thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.video-thumbnail video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.video-testimonial-card:hover .video-thumbnail img,
.video-testimonial-card:hover .video-thumbnail video{
	transform: scale(1.1);
}

.video-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(196, 32, 145, 0.8) 0%, rgba(20, 5, 41, 0.9) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.4s ease;
}

.video-testimonial-card:hover .video-overlay{
	opacity: 1;
}

.play-button{
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.play-button i{
	color: #fff;
	font-size: 20px;
	margin-left: 3px;
}

.play-button:hover{
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
	border-color: rgba(255, 255, 255, 0.5);
}

.play-button.playing{
	background: rgba(196, 32, 145, 0.5);
	border-color: var(--accent-color);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(196, 32, 145, 0.7);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(196, 32, 145, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(196, 32, 145, 0);
	}
}

.client-logo{
	position: absolute;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.client-logo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.client-info{
	padding: 20px;
	text-align: center;
}

.client-info h4{
	color: #fff;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.client-info p{
	color: var(--accent-color);
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 8px;
}

.client-organization{
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.8rem;
	font-weight: 400;
}

.video-testimonials-pagination{
	position: relative;
	text-align: center;
	margin-top: 40px;
}

.video-testimonials-pagination .swiper-pagination-bullet{
    height: 8px;
    width: 8px;
    background: var(--primary-color);
    opacity: 1;
    margin: 0 4px;
    transition: all 0.4s ease-in-out;
}

.video-testimonials-pagination .swiper-pagination-bullet-active{
	width: 25px;
    background: var(--accent-color);
	border-radius: 8px;
}

/* Written Testimonials css */
.written-testimonials{
	position: relative;
	height: 400px;
	display: flex;
	align-items: center;
}

.testimonial-content{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-content.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.testimonial-quote{
	margin-bottom: 25px;
}

.testimonial-quote i{
	font-size: 3rem;
	color: var(--accent-color);
	opacity: 0.3;
}

.testimonial-text p{
	color: #fff;
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 25px;
	font-style: italic;
}

.testimonial-rating{
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 30px;
}

.stars{
	display: flex;
	gap: 3px;
}

.stars i{
	color: #FFD700;
	font-size: 1.2rem;
}

.rating-text{
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
	font-size: 1rem;
}

.testimonial-stats{
	display: flex;
	gap: 30px;
}

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

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

.stat-label{
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.written-testimonials{
		height: auto;
		margin-top: 40px;
	}
	
	.testimonial-content{
		position: relative;
		opacity: 1;
		visibility: visible;
		transform: none;
	}
	
	.video-testimonials-carousel .swiper{
		margin-bottom: 30px;
	}
	
	/* Navigation arrows adjustment for tablet */
	.carousel-navigation{
		left: -40px;
		right: -40px;
	}
	
	.nav-btn{
		width: 45px;
		height: 45px;
	}
	
	.nav-btn i{
		font-size: 16px;
	}
	
	.nav-next{
		right: -100px;
	}
	
	/* Swiper Navigation Buttons - Tablet */
	.video-testimonials-carousel .swiper-button-next,
	.video-testimonials-carousel .swiper-button-prev{
		width: 45px;
		height: 45px;
	}
	
	.video-testimonials-carousel .swiper-button-next::after,
	.video-testimonials-carousel .swiper-button-prev::after{
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.video-testimonial-card{
		margin: 0 10px;
	}
	
	.testimonial-stats{
		flex-direction: column;
		gap: 20px;
	}
	
	.stat-item{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.stat-number{
		margin-bottom: 0;
	}
	
	/* Navigation arrows adjustment for mobile */
	.carousel-navigation{
		left: -30px;
		right: -30px;
	}
	
	.nav-btn{
		width: 40px;
		height: 40px;
	}
	
	.nav-btn i{
		font-size: 14px;
	}
	
	.nav-next{
		right: -80px;
	}
	
	/* Swiper Navigation Buttons - Mobile */
	.video-testimonials-carousel .swiper-button-next,
	.video-testimonials-carousel .swiper-button-prev{
		width: 40px;
		height: 40px;
	}
	
	.video-testimonials-carousel .swiper-button-next::after,
	.video-testimonials-carousel .swiper-button-prev::after{
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	/* Hide navigation arrows on very small screens */
	.carousel-navigation{
		display: none;
	}
}

/* Event Highlights Gallery */
.photo-gallery figure{
	position: relative;
	overflow: hidden;
	border-radius: 15px;
}

.photo-gallery figure img{
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.photo-gallery:hover figure img{
	transform: scale(1.1);
}

.event-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(196, 32, 145, 0.9) 0%, rgba(20, 5, 41, 0.95) 100%);
	display: flex;
	align-items: flex-end;
	opacity: 0;
	transition: all 0.4s ease;
	padding: 25px;
}

.photo-gallery:hover .event-overlay{
	opacity: 1;
}

.event-info{
	color: #fff;
	text-align: left;
	transform: translateY(20px);
	transition: transform 0.4s ease;
}

.photo-gallery:hover .event-info{
	transform: translateY(0);
}

.event-info h4{
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: #fff;
}

.event-info p{
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 5px;
	color: rgba(255, 255, 255, 0.9);
}

.event-date{
	font-size: 0.9rem;
	font-weight: 400;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Service Areas Section */
.service-areas{
	background: linear-gradient(135deg, rgba(20, 5, 41, 0.95) 0%, rgba(196, 32, 145, 0.1) 100%);
	padding: 100px 0;
}

.service-area-card{
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	padding: 40px 30px;
	margin-bottom: 30px;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transform-style: preserve-3d;
	overflow: hidden;
}

.service-area-card::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(196, 32, 145, 0.1) 0%, rgba(20, 5, 41, 0.05) 100%);
	opacity: 0;
	transition: all 0.5s ease;
	z-index: 1;
}

.service-area-card:hover{
	transform: translateY(-15px) scale(1.02) rotateX(5deg);
	box-shadow: 0 25px 50px rgba(196, 32, 145, 0.3);
	border-color: var(--accent-color);
}

.service-area-card:hover::before{
	opacity: 1;
}

.service-icon{
	position: relative;
	z-index: 2;
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	transition: all 0.4s ease;
}

.service-area-card:hover .service-icon{
	transform: scale(1.1) rotateY(10deg);
	box-shadow: 0 10px 25px rgba(196, 32, 145, 0.4);
}

.service-icon i{
	font-size: 2rem;
	color: #fff;
	transition: all 0.4s ease;
}

.service-area-card:hover .service-icon i{
	transform: scale(1.2);
}

.service-content{
	position: relative;
	z-index: 2;
}

.service-content h3{
	color: #fff;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	transition: all 0.4s ease;
}

.service-area-card:hover .service-content h3{
	color: var(--accent-color);
}

.service-content p{
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 20px;
}

.service-features{
	margin-bottom: 25px;
}

.service-features ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-features li{
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

.service-features li i{
	color: var(--accent-color);
	margin-right: 10px;
	font-size: 0.8rem;
	transition: all 0.3s ease;
}

.service-area-card:hover .service-features li i{
	transform: scale(1.2);
}

.service-stats{
	display: flex;
	gap: 20px;
	margin-bottom: 25px;
}

.service-stats .stat-item{
	text-align: center;
	flex: 1;
}

.service-stats .stat-number{
	display: block;
	color: var(--accent-color);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 5px;
	transition: all 0.4s ease;
}

.service-area-card:hover .service-stats .stat-number{
	transform: scale(1.1);
}

.service-stats .stat-label{
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.8rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.service-overlay{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, rgba(196, 32, 145, 0.9) 0%, rgba(20, 5, 41, 0.95) 100%);
	padding: 25px 30px;
	transform: translateY(100%);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	z-index: 3;
}

.service-area-card:hover .service-overlay{
	transform: translateY(0);
}

.btn-service{
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 12px 25px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	text-align: center;
	width: 100%;
}

.btn-service:hover{
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.service-area-card{
		padding: 30px 25px;
	}
	
	.service-icon{
		width: 70px;
		height: 70px;
	}
	
	.service-icon i{
		font-size: 1.8rem;
	}
	
	.service-content h3{
		font-size: 1.3rem;
	}
}

@media (max-width: 768px) {
	.service-areas{
		padding: 80px 0;
	}
	
	.service-area-card{
		padding: 25px 20px;
		margin-bottom: 20px;
	}
	
	.service-stats{
		flex-direction: column;
		gap: 15px;
	}
	
	.service-stats .stat-item{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.service-stats .stat-number{
		margin-bottom: 0;
	}
}

/* Sahne DNA'sı Section */
.sahne-dna-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.sahne-dna-section::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 100 100"><defs><pattern id="dna-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(196,32,145,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dna-pattern)"/></svg>');
    opacity: 0.3;
    animation: dnaFloat 20s linear infinite;
}

@keyframes dnaFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

/* 3D Map Container */
.dna-map-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(196, 32, 145, 0.2);
    padding: 30px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.turkey-map-3d {
    position: relative;
    /* 3D transform effects removed for stability */
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Leaflet Map Styles */
.leaflet-map {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* Mobile map fixes */
    min-height: 300px;
    background: #2a2a2a;
}

/* Mobile map container fixes */
.dna-map-container .leaflet-container {
    background: #2a2a2a !important;
    border-radius: 15px;
    overflow: hidden;
}

/* Force map tiles to load on mobile */
.leaflet-tile {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Mobile map controls */
.leaflet-control-zoom {
    display: none !important;
}

.leaflet-control-attribution {
    display: none !important;
}

/* Custom Leaflet Controls */
.leaflet-control-attribution {
    display: none !important;
}

/* Custom Zoom Control Styling */
.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

.leaflet-control-zoom a {
    background: rgba(196, 32, 145, 0.9) !important;
    color: white !important;
    border: none !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.leaflet-control-zoom a:hover {
    background: rgba(196, 32, 145, 1) !important;
    transform: scale(1.05) !important;
}

.leaflet-control-zoom a:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Custom Map Style */
.leaflet-container {
    background: rgba(0, 0, 0, 0.8) !important;
}

.leaflet-tile {
    filter: brightness(0.3) contrast(1.2) saturate(0.8) !important;
}

/* DNA Particles Overlay */
.dna-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

/* Leaflet DNA Marker Styles */
.dna-marker-icon {
    background: none !important;
    border: none !important;
}

.dna-marker-icon .dna-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dna-marker-icon .dna-node {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(196, 32, 145, 0.8);
    box-shadow: 0 0 15px rgba(196, 32, 145, 0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.dna-marker-icon .dna-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(196, 32, 145, 0.3);
    animation: pulse 2s infinite;
    z-index: 1;
}

.dna-marker-icon .city-label {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.dna-marker-icon:hover .city-label {
    opacity: 1;
}

.dna-marker-icon:hover .dna-node {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(196, 32, 145, 0.8);
}

/* SVG Turkey Map */
.turkey-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(196, 32, 145, 0.3));
}

.turkey-outline {
    transition: all 0.3s ease;
}

.turkey-outline:hover {
    fill: rgba(196, 32, 145, 0.2);
    stroke: rgba(196, 32, 145, 0.8);
    stroke-width: 3;
}

.region-area {
    transition: all 0.3s ease;
    opacity: 0.3;
}

.region-area:hover {
    fill: rgba(196, 32, 145, 0.15);
    stroke: rgba(196, 32, 145, 0.4);
    stroke-width: 2;
    opacity: 0.6;
}

.city-bg {
    transition: all 0.3s ease;
    opacity: 0.4;
}

.city-bg:hover {
    fill: rgba(196, 32, 145, 0.2);
    opacity: 0.8;
}

/* DNA Markers */
.dna-marker {
    cursor: pointer;
    transition: all 0.3s ease;
}

.dna-marker:hover {
    transform: none;
}

.dna-marker .dna-node {
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dna-marker:hover .dna-node {
    filter: drop-shadow(0 0 15px rgba(196, 32, 145, 0.8));
}

/* Increase clickable area */
.dna-marker {
    cursor: pointer;
    transition: all 0.3s ease;
}

.dna-marker:hover {
    transform: none;
}

/* Make the entire marker group clickable */
.dna-marker * {
    pointer-events: none;
}

.dna-marker .dna-node {
    pointer-events: auto;
}

.dna-node {
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(196, 32, 145, 0.5));
}

.dna-marker:hover .dna-node {
    r: 10;
    filter: drop-shadow(0 0 15px rgba(196, 32, 145, 0.8));
    transform: scale(1.05);
}

.dna-pulse {
    animation: pulse 2s infinite;
    opacity: 0.6;
    pointer-events: none;
}

.main-node {
    animation: mainPulse 3s infinite;
}

.main-pulse {
    animation: mainPulse 3s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.6; }
}

@keyframes mainPulse {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.5); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.4; }
}

.city-label {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    fill: rgba(255, 255, 255, 0.8);
    text-anchor: middle;
    transition: all 0.3s ease;
}

.main-label {
    font-size: 14px;
    font-weight: 700;
    fill: rgba(196, 32, 145, 1);
}

.dna-marker:hover .city-label {
    font-size: 14px;
    fill: rgba(196, 32, 145, 1);
    font-weight: 700;
}

.dna-connection {
    stroke-dasharray: 5,5;
    animation: dash 3s linear infinite;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.dna-marker:hover .dna-connection {
    stroke-width: 3;
    opacity: 1;
    stroke-dasharray: none;
}

@keyframes dash {
    to {
        stroke-dashoffset: -10;
    }
}

/* Floating DNA Particles */
.dna-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(196, 32, 145, 0.6);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
}

/* Sound Wave Visualization */
.sound-waves {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
}

.wave {
    width: 3px;
    height: 20px;
    background: linear-gradient(to top, rgba(196, 32, 145, 0.8), rgba(196, 32, 145, 0.2));
    border-radius: 2px;
    animation: waveAnimation 1.5s ease-in-out infinite;
}

@keyframes waveAnimation {
    0%, 100% { height: 20px; }
    50% { height: 40px; }
}

/* Map Controls */
.map-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 32, 145, 0.3);
    border-radius: 25px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-btn:hover,
.control-btn.active {
    background: rgba(196, 32, 145, 0.2);
    border-color: rgba(196, 32, 145, 0.8);
    color: rgba(196, 32, 145, 1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 32, 145, 0.3);
}

.control-btn i {
    font-size: 16px;
}

/* Live Data Panel */
.live-data-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(196, 32, 145, 0.2);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stats-header h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(196, 32, 145, 1);
    font-size: 14px;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: rgba(196, 32, 145, 1);
    border-radius: 50%;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* DNA Code Display */
.dna-code-display {
    background: rgba(196, 32, 145, 0.1);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(196, 32, 145, 0.3);
}

.dna-code-display h4 {
    color: rgba(196, 32, 145, 1);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.dna-sequence {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.dna-base {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(196, 32, 145, 0.8), rgba(196, 32, 145, 0.4));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    animation: dnaGlow 3s ease-in-out infinite;
}

.dna-base:nth-child(odd) {
    animation-delay: 0.5s;
}

@keyframes dnaGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(196, 32, 145, 0.3); }
    50% { box-shadow: 0 0 20px rgba(196, 32, 145, 0.6); }
}

.dna-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

/* Live Statistics */
.live-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(196, 32, 145, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-card:hover {
    background: rgba(196, 32, 145, 0.1);
    border-color: rgba(196, 32, 145, 0.5);
    transform: translateY(-2px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(196, 32, 145, 0.8), rgba(196, 32, 145, 0.4));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

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

.stat-number {
    color: rgba(196, 32, 145, 1);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
}

/* City Details Panel */
.city-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(196, 32, 145, 0.2);
}

.city-header h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.city-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
}

.city-content {
    margin-top: 15px;
}

.city-name {
    color: rgba(196, 32, 145, 1);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.city-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.city-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.city-stat:last-child {
    border-bottom: none;
}

.city-stat .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.city-stat .stat-value {
    color: rgba(196, 32, 145, 1);
    font-size: 14px;
    font-weight: 600;
}

/* DNA Timeline */
.dna-timeline {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(196, 32, 145, 0.2);
}

.dna-timeline h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(196, 32, 145, 0.3);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-point {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-point::before {
    content: '';
    width: 12px;
    height: 12px;
    background: rgba(196, 32, 145, 0.5);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-point.active::before,
.timeline-point:hover::before {
    background: rgba(196, 32, 145, 1);
    border-color: rgba(196, 32, 145, 1);
    box-shadow: 0 0 15px rgba(196, 32, 145, 0.5);
}

.timeline-point .year {
    color: rgba(196, 32, 145, 1);
    font-size: 12px;
    font-weight: 600;
}

.timeline-point .milestone {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    text-align: center;
    max-width: 60px;
}

.timeline-point.active .milestone,
.timeline-point:hover .milestone {
    color: rgba(196, 32, 145, 1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .sahne-dna-section {
        padding: 80px 0;
    }
    
    .turkey-map-3d {
        transform: none;
    }
    
    .turkey-map-3d:hover {
        /* 3D transform effects removed for stability */
    }
    
    .map-wrapper {
        height: 400px;
    }
    
    .live-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .map-controls {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .control-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .dna-map-container {
        padding: 20px;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .city-label {
        font-size: 10px;
    }
    
    .main-label {
        font-size: 12px;
    }
    
    .dna-marker:hover .city-label {
        font-size: 12px;
    }
    
    .live-data-panel {
        padding: 20px;
        gap: 20px;
    }
    
    .stats-header h3 {
        font-size: 20px;
    }
    
    .dna-sequence {
        gap: 5px;
    }
    
    .dna-base {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .map-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .control-btn {
        width: 100%;
        justify-content: center;
    }
    
    .timeline-track {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-track::before {
        display: none;
    }
    
    .timeline-point {
        flex-direction: row;
        gap: 10px;
    }
    
    .timeline-point::before {
        order: 2;
    }
    
    .timeline-point .year {
        order: 1;
    }
    
    .timeline-point .milestone {
        order: 3;
        max-width: none;
    }
}

/* Sound Wave Display Styles */
.sound-wave-display {
    background: linear-gradient(135deg, rgba(196, 32, 145, 0.1), rgba(102, 23, 202, 0.1));
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(196, 32, 145, 0.2);
    position: relative;
    overflow: hidden;
}

.sound-wave-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 32, 145, 0.1), transparent);
    animation: waveShine 3s infinite;
}

@keyframes waveShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.sound-wave-display h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.wave-explanation {
    color: var(--text-color);
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.8;
}

.wave-visualization {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 120px;
    margin: 20px 0;
}

.wave-container {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
    padding: 10px;
    background: rgba(196, 32, 145, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(196, 32, 145, 0.1);
}

.wave-bar {
    width: 5px;
    background: linear-gradient(to top, var(--accent-color), var(--accent-secondary-color));
    border-radius: 3px;
    min-height: 8px;
    animation: waveAnimation 1.2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(196, 32, 145, 0.4);
    transition: all 0.3s ease;
}

/* Animation delays for wave effect */
.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; }
.wave-bar:nth-child(9) { animation-delay: 0.8s; }
.wave-bar:nth-child(10) { animation-delay: 0.9s; }
.wave-bar:nth-child(11) { animation-delay: 1.0s; }
.wave-bar:nth-child(12) { animation-delay: 1.1s; }
.wave-bar:nth-child(13) { animation-delay: 1.2s; }
.wave-bar:nth-child(14) { animation-delay: 1.3s; }
.wave-bar:nth-child(15) { animation-delay: 1.4s; }
.wave-bar:nth-child(16) { animation-delay: 1.5s; }
.wave-bar:nth-child(17) { animation-delay: 1.6s; }
.wave-bar:nth-child(18) { animation-delay: 1.7s; }
.wave-bar:nth-child(19) { animation-delay: 1.8s; }
.wave-bar:nth-child(20) { animation-delay: 1.9s; }

@keyframes waveAnimation {
    0%, 100% {
        transform: scaleY(0.2);
        opacity: 0.4;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Tempo-based animations */
.wave-bar[data-intensity="high"] {
    animation-duration: 0.6s;
    background: linear-gradient(to top, #ff6b6b, #ff8e53);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.7);
    transform-origin: bottom;
}

.wave-bar[data-intensity="high"]:hover {
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.9);
    transform: scaleY(1.1);
}

.wave-bar[data-intensity="medium"] {
    animation-duration: 1.0s;
    background: linear-gradient(to top, var(--accent-color), var(--accent-secondary-color));
    box-shadow: 0 0 10px rgba(196, 32, 145, 0.5);
    transform-origin: bottom;
}

.wave-bar[data-intensity="medium"]:hover {
    box-shadow: 0 0 15px rgba(196, 32, 145, 0.7);
    transform: scaleY(1.05);
}

.wave-bar[data-intensity="low"] {
    animation-duration: 1.4s;
    background: linear-gradient(to top, var(--accent-secondary-color), #8b5cf6);
    box-shadow: 0 0 8px rgba(102, 23, 202, 0.4);
    transform-origin: bottom;
}

.wave-bar[data-intensity="low"]:hover {
    box-shadow: 0 0 12px rgba(102, 23, 202, 0.6);
    transform: scaleY(1.02);
}

/* Pulse effect for city changes */
.wave-container.pulse {
    animation: containerPulse 0.5s ease-in-out;
}

@keyframes containerPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.wave-description {
    color: var(--text-color);
    font-size: 13px;
    text-align: center;
    margin-top: 15px;
    opacity: 0.7;
    font-style: italic;
}

/* City Overview Stats */
.city-overview {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.overview-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(196, 32, 145, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(196, 32, 145, 0.1);
    flex: 1;
    transition: all 0.3s ease;
}

.overview-stat:hover {
    background: rgba(196, 32, 145, 0.1);
    border-color: rgba(196, 32, 145, 0.2);
    transform: translateY(-2px);
}

.overview-stat i {
    color: var(--accent-color);
    font-size: 16px;
}

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

.overview-stat .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #c42091;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.overview-stat .stat-label {
    font-size: 15px;
    color: var(--text-color);
    opacity: 0.9;
    margin-top: 4px;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

/* City Details Section */
.city-details-section {
    margin-top: 20px;
}

.detail-item {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(196, 32, 145, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(196, 32, 145, 0.08);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(196, 32, 145, 0.06);
    border-color: rgba(196, 32, 145, 0.15);
}

.detail-item h6 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.detail-item h6 i {
    color: var(--accent-color);
    font-size: 14px;
}

/* Districts List */
.districts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.district-tag {
    padding: 10px 16px;
    background: rgba(196, 32, 145, 0.15);
    border: 1px solid rgba(196, 32, 145, 0.25);
    border-radius: 20px;
    font-size: 15px;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.district-tag:hover {
    background: rgba(196, 32, 145, 0.2);
    transform: scale(1.05);
}

/* Champions List */
.champions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.champion-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(196, 32, 145, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(196, 32, 145, 0.1);
    transition: all 0.3s ease;
}

.champion-item:hover {
    background: rgba(196, 32, 145, 0.1);
    border-color: rgba(196, 32, 145, 0.2);
}

.champion-name {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.champion-count {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 600;
    padding: 4px 8px;
    background: rgba(196, 32, 145, 0.1);
    border-radius: 12px;
}

/* Recent Success */
.recent-success {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.success-text {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.success-date {
    font-size: 15px;
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sound-wave-display {
        padding: 20px;
    }
    
    .wave-visualization {
        height: 100px;
    }
    
    .wave-container {
        height: 60px;
        gap: 3px;
    }
    
    .wave-bar {
        width: 4px;
    }
    
    .city-overview {
        flex-direction: column;
        gap: 8px;
    }
    
    .overview-stat {
        justify-content: center;
    }
    
    .districts-list {
        justify-content: center;
    }
    
    .champion-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* Wavesurfer.js Custom Styles */
#waveform {
    background: linear-gradient(135deg, rgba(196, 32, 145, 0.05), rgba(102, 23, 202, 0.05));
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid rgba(196, 32, 145, 0.1);
    position: relative;
    overflow: hidden;
}

#waveform::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 32, 145, 0.1), transparent);
    animation: waveShine 4s infinite;
    pointer-events: none;
}

@keyframes waveShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Wave animation effects */
#waveform wave {
    transition: all 0.3s ease;
    animation: wavePulse 2s ease-in-out infinite;
}

@keyframes wavePulse {
    0%, 100% { 
        transform: scaleY(1);
        opacity: 0.8;
    }
    50% { 
        transform: scaleY(1.1);
        opacity: 1;
    }
}

/* Different animation speeds for different bars */
#waveform wave:nth-child(odd) {
    animation-delay: 0.1s;
}

#waveform wave:nth-child(even) {
    animation-delay: 0.3s;
}

#waveform wave:nth-child(3n) {
    animation-delay: 0.5s;
}

.city-wave-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(196, 32, 145, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(196, 32, 145, 0.2);
}

.current-city {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.wave-intensity {
    font-size: 12px;
    color: var(--accent-color);
    padding: 6px 12px;
    background: rgba(196, 32, 145, 0.2);
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid rgba(196, 32, 145, 0.3);
    transition: all 0.3s ease;
}

.wave-intensity[data-intensity="high"] {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.4);
}

.wave-intensity[data-intensity="medium"] {
    background: rgba(196, 32, 145, 0.2);
    color: var(--accent-color);
    border-color: rgba(196, 32, 145, 0.4);
}

.wave-intensity[data-intensity="low"] {
    background: rgba(102, 23, 202, 0.2);
    color: var(--accent-secondary-color);
    border-color: rgba(102, 23, 202, 0.4);
}

/* Live Data Grid Styles */
.live-data-grid {
    background: linear-gradient(135deg, rgba(196, 32, 145, 0.05), rgba(102, 23, 202, 0.05));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(196, 32, 145, 0.1);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.live-data-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(196, 32, 145, 0.02) 50%, transparent 70%);
    animation: panelShine 8s infinite;
    pointer-events: none;
}

@keyframes panelShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(196, 32, 145, 0.1);
}

.grid-header h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* Data Grid Layout */
.data-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

/* Grid Areas: Sound Wave + City Details side by side, then full Timeline */
.data-grid {
    grid-template-columns: 2fr 3fr;
    grid-template-areas: 
        "sound-wave city-details"
        "timeline timeline";
}

/* Grid Cards */
.grid-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(196, 32, 145, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 32, 145, 0.05), transparent);
    transition: left 0.5s ease;
}

.grid-card:hover::before {
    left: 100%;
}

.grid-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 32, 145, 0.1);
    border-color: rgba(196, 32, 145, 0.2);
}

/* Card Headers */
.card-header {
    margin-bottom: 15px;
}

.card-header h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-header h4 i {
    color: var(--accent-color);
    font-size: 14px;
}

.card-header p {
    color: var(--text-color);
    font-size: 12px;
    margin: 0;
    opacity: 0.7;
}

/* Sound Wave Card */
.sound-wave-card {
    grid-area: sound-wave;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 200px;
}

.sound-wave-card .card-header {
    margin-bottom: 20px;
}

.sound-wave-card .wave-visualization {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* City Details Card */
.city-details-card {
    grid-area: city-details;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 200px;
}

.city-details-card .card-header {
    margin-bottom: 20px;
}

.city-details-card .city-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Timeline Card */
.timeline-card {
    grid-area: timeline;
    width: 100%;
}

.timeline-card .timeline-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.timeline-card .timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color));
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-card .timeline-point {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(196, 32, 145, 0.2);
    transition: all 0.3s ease;
}

.timeline-card .timeline-point:hover,
.timeline-card .timeline-point.active {
    background: rgba(196, 32, 145, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.timeline-card .timeline-point .year {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.timeline-card .timeline-point .milestone {
    display: block;
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.8;
}

/* City Details Card */
.city-details-card {
    grid-area: city-details;
}

.city-details-card .city-content {
    padding: 15px 0;
}

.city-details-card .city-name {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.city-details-card .city-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.city-details-card .city-stat {
    text-align: center;
    padding: 10px;
    background: rgba(196, 32, 145, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(196, 32, 145, 0.1);
}

.city-details-card .stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 5px;
}

.city-details-card .stat-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}



.city-details-card .city-content {
    padding: 15px 0;
}

.city-details-card .city-name {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.city-details-card .city-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.city-details-card .city-stat {
    text-align: center;
    padding: 10px;
    background: rgba(196, 32, 145, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(196, 32, 145, 0.1);
}

.city-details-card .stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 5px;
}

.city-details-card .stat-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-card .timeline-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.timeline-card .timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color));
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-card .timeline-point {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(196, 32, 145, 0.2);
    transition: all 0.3s ease;
}

.timeline-card .timeline-point:hover,
.timeline-card .timeline-point.active {
    background: rgba(196, 32, 145, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.timeline-card .timeline-point .year {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.timeline-card .timeline-point .milestone {
    display: block;
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.8;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .data-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "sound-wave"
            "city-details"
            "timeline";
    }
    
    .sound-wave-card,
    .city-details-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .data-grid {
        gap: 15px;
    }
    
    .sound-wave-card,
    .city-details-card {
        min-height: auto;
    }
    
    .city-details-card .city-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .timeline-card .timeline-track {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-card .timeline-track::before {
        display: none;
    }
    
    .grid-card {
        padding: 15px;
    }
}

/* Wave intensity indicators */
.wave-intensity[data-intensity="high"] {
    background: rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.wave-intensity[data-intensity="medium"] {
    background: rgba(196, 32, 145, 0.3);
    color: var(--accent-color);
}

.wave-intensity[data-intensity="low"] {
    background: rgba(102, 23, 202, 0.3);
    color: var(--accent-secondary-color);
}

/* ===== DNA HARİTASI MOBİL UYUMLULUK ===== */

/* Tablet ve Küçük Ekranlar (768px - 991px) */
@media (max-width: 991px) {
    .sahne-dna-section {
        padding: 60px 0;
    }
    
    .sahne-dna-section .section-title h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .sahne-dna-section .section-title p {
        font-size: 1rem;
        margin-top: 15px;
    }
    
    .dna-map-container {
        height: 400px;
        margin: 30px 0;
    }
    
    .map-wrapper {
        height: 100%;
        border-radius: 15px;
    }
    
    .map-controls {
        flex-wrap: wrap;
        gap: 10px;
        margin: 20px 0;
    }
    
    .control-btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 120px;
    }
    
    .control-btn i {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .live-data-grid {
        margin-top: 30px;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .grid-card {
        padding: 25px;
        border-radius: 15px;
    }
    
    .card-header h4 {
        font-size: 18px;
    }
    
    .card-header p {
        font-size: 14px;
    }
    
    .wave-visualization {
        height: 120px;
        margin: 20px 0;
    }
    
    .wave-container {
        height: 100px;
        gap: 4px;
    }
    
    .wave-bar {
        width: 6px;
        min-height: 20px;
    }
    
    .city-overview {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 20px 0;
    }
    
    .overview-stat {
        padding: 15px;
        border-radius: 12px;
    }
    
    .overview-stat i {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .overview-stat .stat-number {
        font-size: 18px;
        font-weight: 700;
    }
    
    .overview-stat .stat-label {
        font-size: 12px;
    }
    
    .city-details-section {
        gap: 20px;
    }
    
    .detail-item {
        padding: 15px;
        border-radius: 12px;
    }
    
    .detail-item h6 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .detail-item h6 i {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .districts-list {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .district-tag {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 20px;
    }
    
    .champion-item {
        padding: 10px;
        border-radius: 8px;
    }
    
    .champion-name {
        font-size: 13px;
    }
    
    .champion-count {
        font-size: 11px;
    }
    
    .success-text {
        font-size: 13px;
    }
    
    .success-date {
        font-size: 11px;
    }
}

/* Mobil Ekranlar (576px - 767px) */
@media (max-width: 767px) {
    .sahne-dna-section {
        padding: 40px 0;
    }
    
    .sahne-dna-section .section-title h2 {
        font-size: 2.5rem;
        line-height: 1.2;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        letter-spacing: -0.5px;
    }
    
    .sahne-dna-section .section-title h3 {
        font-size: 20px;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    
    .sahne-dna-section .section-title p {
        font-size: 18px;
        margin-top: 10px;
        padding: 0 15px;
        font-weight: 400;
        line-height: 1.6;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    
    .dna-map-container {
        height: 300px;
        margin: 20px 0;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .map-wrapper {
        height: 100%;
        border-radius: 12px;
    }
    
    .leaflet-map {
        border-radius: 12px;
    }
    
    .map-controls {
        flex-direction: column;
        gap: 8px;
        margin: 15px 0;
        padding: 0 15px;
    }
    
    .control-btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 12px;
        justify-content: center;
    }
    
    .control-btn i {
        font-size: 18px;
        margin-right: 10px;
    }
    
    .live-data-grid {
        margin-top: 20px;
        padding: 0 15px;
    }
    
    .grid-header {
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .grid-header h3 {
        font-size: 18px;
    }
    
    .live-indicator {
        font-size: 12px;
    }
    
    .pulse-dot {
        width: 8px;
        height: 8px;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .grid-card {
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 0;
    }
    
    .card-header {
        margin-bottom: 15px;
    }
    
    .card-header h4 {
        font-size: 20px;
        margin-bottom: 8px;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        letter-spacing: -0.2px;
    }
    
    .card-header h4 i {
        font-size: 22px;
        margin-right: 10px;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    
    .card-header p {
        font-size: 16px;
        opacity: 0.9;
        font-weight: 400;
        line-height: 1.5;
        text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    }
    
    .sound-wave-card .wave-visualization {
        height: 100px;
        margin: 15px 0;
    }
    
    .wave-container {
        height: 80px;
        gap: 3px;
    }
    
    .wave-bar {
        width: 4px;
        min-height: 15px;
    }
    
    .city-wave-info {
        margin-top: 10px;
        text-align: center;
    }
    
    .current-city {
        font-size: 14px;
        font-weight: 600;
    }
    
    .wave-intensity {
        font-size: 12px;
        opacity: 0.8;
    }
    
    .wave-description {
        font-size: 12px;
        text-align: center;
        margin-top: 10px;
        opacity: 0.7;
    }
    
    .city-details-card .city-content {
        padding: 0;
    }
    
    .city-name {
        font-size: 26px;
        margin-bottom: 15px;
        text-align: center;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        letter-spacing: -0.5px;
    }
    
    .city-overview {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 15px 0;
    }
    
    .overview-stat {
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .overview-stat i {
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .overview-stat .stat-info {
        text-align: left;
    }
    
    .overview-stat .stat-number {
        font-size: 16px;
        font-weight: 700;
        display: block;
    }
    
    .overview-stat .stat-label {
        font-size: 11px;
        opacity: 0.8;
    }
    
    .city-details-section {
        gap: 15px;
    }
    
    .detail-item {
        padding: 12px;
        border-radius: 10px;
    }
    
    .detail-item h6 {
        font-size: 13px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
    }
    
    .detail-item h6 i {
        font-size: 14px;
        margin-right: 6px;
    }
    
    .districts-list {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .district-tag {
        padding: 4px 10px;
        font-size: 11px;
        border-radius: 15px;
    }
    
    .champions-list {
        gap: 8px;
    }
    
    .champion-item {
        padding: 8px;
        border-radius: 6px;
        text-align: center;
    }
    
    .champion-name {
        font-size: 12px;
        display: block;
        margin-bottom: 2px;
    }
    
    .champion-count {
        font-size: 10px;
        opacity: 0.8;
    }
    
    .recent-success {
        text-align: center;
        padding: 10px;
        border-radius: 8px;
        background: rgba(196, 32, 145, 0.1);
    }
    
    .success-text {
        font-size: 12px;
        display: block;
        margin-bottom: 4px;
    }
    
    .success-date {
        font-size: 10px;
        opacity: 0.7;
    }
}

/* Küçük Mobil Ekranlar (320px - 575px) */
@media (max-width: 575px) {
    .sahne-dna-section {
        padding: 30px 0;
    }
    
    .sahne-dna-section .section-title h2 {
        font-size: 1.8rem;
        line-height: 1.4;
        padding: 0 10px;
    }
    
    .sahne-dna-section .section-title h3 {
        font-size: 14px;
    }
    
    .sahne-dna-section .section-title p {
        font-size: 13px;
        padding: 0 20px;
        line-height: 1.5;
    }
    
    .dna-map-container {
        height: 250px;
        margin: 15px 0;
        border-radius: 10px;
    }
    
    .map-wrapper {
        border-radius: 10px;
    }
    
    .leaflet-map {
        border-radius: 10px;
    }
    
    .map-controls {
        padding: 0 10px;
        margin: 10px 0;
    }
    
    .control-btn {
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .control-btn i {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .live-data-grid {
        padding: 0 10px;
        margin-top: 15px;
    }
    
    .grid-header {
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .grid-header h3 {
        font-size: 16px;
    }
    
    .live-indicator {
        font-size: 11px;
    }
    
    .pulse-dot {
        width: 6px;
        height: 6px;
    }
    
    .data-grid {
        gap: 10px;
    }
    
    .grid-card {
        padding: 15px;
        border-radius: 10px;
    }
    
    .card-header {
        margin-bottom: 10px;
    }
    
    .card-header h4 {
        font-size: 15px;
    }
    
    .card-header h4 i {
        font-size: 15px;
        margin-right: 6px;
    }
    
    .card-header p {
        font-size: 12px;
    }
    
    .sound-wave-card .wave-visualization {
        height: 80px;
        margin: 10px 0;
    }
    
    .wave-container {
        height: 60px;
        gap: 2px;
    }
    
    .wave-bar {
        width: 3px;
        min-height: 12px;
    }
    
    .city-wave-info {
        margin-top: 8px;
    }
    
    .current-city {
        font-size: 13px;
    }
    
    .wave-intensity {
        font-size: 11px;
    }
    
    .wave-description {
        font-size: 11px;
        margin-top: 8px;
    }
    
    .city-name {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .city-overview {
        gap: 8px;
        margin: 12px 0;
    }
    
    .overview-stat {
        padding: 12px;
        border-radius: 8px;
        gap: 8px;
    }
    
    .overview-stat i {
        font-size: 16px;
    }
    
    .overview-stat .stat-number {
        font-size: 14px;
    }
    
    .overview-stat .stat-label {
        font-size: 10px;
    }
    
    .city-details-section {
        gap: 10px;
    }
    
    .detail-item {
        padding: 10px;
        border-radius: 8px;
    }
    
    .detail-item h6 {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .detail-item h6 i {
        font-size: 13px;
        margin-right: 5px;
    }
    
    .districts-list {
        gap: 4px;
    }
    
    .district-tag {
        padding: 3px 8px;
        font-size: 10px;
        border-radius: 12px;
    }
    
    .champions-list {
        gap: 6px;
    }
    
    .champion-item {
        padding: 6px;
        border-radius: 5px;
    }
    
    .champion-name {
        font-size: 11px;
    }
    
    .champion-count {
        font-size: 9px;
    }
    
    .recent-success {
        padding: 8px;
        border-radius: 6px;
    }
    
    .success-text {
        font-size: 11px;
    }
    
    .success-date {
        font-size: 9px;
    }
}

/* Çok Küçük Ekranlar (320px altı) */
@media (max-width: 319px) {
    .sahne-dna-section .section-title h2 {
        font-size: 1.5rem;
    }
    
    .dna-map-container {
        height: 200px;
    }
    
    .control-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .grid-card {
        padding: 12px;
    }
    
    .card-header h4 {
        font-size: 14px;
    }
    
    .city-overview {
        grid-template-columns: 1fr;
    }
    
    .overview-stat {
        padding: 10px;
    }
    
    .overview-stat .stat-number {
        font-size: 13px;
    }
}

/* Yatay Mobil Ekranlar için Özel Optimizasyon */
@media (max-height: 500px) and (orientation: landscape) {
    .sahne-dna-section {
        padding: 20px 0;
    }
    
    .dna-map-container {
        height: 200px;
    }
    
    .live-data-grid {
        margin-top: 10px;
    }
    
    .data-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .grid-card {
        padding: 12px;
    }
    
    .wave-visualization {
        height: 60px;
    }
    
    .city-overview {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

/* Touch Cihazlar için Özel Optimizasyon */
@media (hover: none) and (pointer: coarse) {
    .control-btn {
        min-height: 44px; /* iOS touch target minimum */
    }
    
    .dna-marker {
        min-width: 44px;
        min-height: 44px;
    }
    
    .district-tag {
        min-height: 32px;
        display: flex;
        align-items: center;
    }
    
    .champion-item {
        min-height: 40px;
    }
    
    .wave-bar {
        min-width: 6px; /* Touch için daha geniş */
    }
}

/* Yüksek DPI Ekranlar için Optimizasyon */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .dna-marker .dna-node {
        border-width: 2px;
    }
    
    .wave-bar {
        border-radius: 2px;
    }
    
    .district-tag {
        border-width: 1px;
    }
}

/* Karanlık Mod Desteği */
@media (prefers-color-scheme: dark) {
    .sahne-dna-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
    
    .grid-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .control-btn {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    
    .control-btn:hover {
        background: rgba(196, 32, 145, 0.8);
    }
}

/* Erişilebilirlik İyileştirmeleri */
@media (prefers-reduced-motion: reduce) {
    .dna-particles .particle,
    .sound-waves .wave,
    .wave-bar,
    .pulse-dot {
        animation: none;
    }
    
    .dna-marker:hover .dna-node {
        transform: none;
    }
    
    .grid-card:hover {
        transform: none;
    }
}

/* Yüksek Kontrast Modu */
@media (prefers-contrast: high) {
    .grid-card {
        border: 2px solid #000;
    }
    
    .control-btn {
        border: 2px solid #000;
    }
    
    .wave-bar {
        border: 1px solid #000;
    }
    
    .district-tag {
        border: 1px solid #000;
    }
}

/* ===== MOBİL UYUMLULUK EK CSS SINIFLARI ===== */

/* Touch Feedback Classes */
.touch-active {
    transform: scale(0.95) !important;
    transition: transform 0.1s ease !important;
}

.touch-device .grid-card:hover,
.touch-device .control-btn:hover,
.touch-device .dna-marker:hover {
    transform: none !important;
}

.touch-device .grid-card:active,
.touch-device .control-btn:active,
.touch-device .dna-marker:active {
    transform: scale(0.98) !important;
}

/* Mobile Controls */
.controls-hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.map-controls {
    transition: all 0.3s ease;
}

/* Mobile Animations */
.mobile-pulse {
    animation: mobilePulse 0.8s ease-in-out;
}

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

.update-animation {
    animation: updateGlow 0.3s ease-in-out;
}

@keyframes updateGlow {
    0% { 
        box-shadow: 0 0 5px rgba(196, 32, 145, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 15px rgba(196, 32, 145, 0.6);
        transform: scale(1.1);
    }
    100% { 
        box-shadow: 0 0 5px rgba(196, 32, 145, 0.3);
        transform: scale(1);
    }
}

/* Lazy Load Animations */
.animate-in {
    animation: slideInUp 0.6s ease-out;
}

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

/* Mobile View Classes */
.mobile-view .sahne-dna-section {
    overflow-x: hidden;
}

.mobile-view .dna-map-container {
    touch-action: pan-x pan-y;
}

.mobile-view .grid-card {
    will-change: transform;
}

/* High DPI Support */
.high-dpi .dna-marker .dna-node {
    border-width: 1.5px;
}

.high-dpi .wave-bar {
    border-radius: 1px;
}

.high-dpi .district-tag {
    border-width: 0.5px;
}

/* Mobile Gesture Support */
.dna-map-container {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Mobile Performance Optimizations */
.mobile-view .dna-particles .particle {
    will-change: transform;
}

.mobile-view .wave-bar {
    will-change: height, background-color;
}

.mobile-view .grid-card {
    will-change: transform, opacity;
}

/* Mobile Scroll Optimization */
.mobile-view .sahne-dna-section {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Mobile Button States */
.control-btn:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.control-btn.touch-active {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    color: white;
    transform: scale(0.95);
}

/* Mobile Wave Bar Interactions */
.wave-bar:active {
    transform: scale(1.1);
    transition: transform 0.1s ease;
}

.wave-bar.touch-active {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    transform: scale(1.05);
}

/* Mobile City Marker Interactions */
.dna-marker:active {
    transform: scale(1.1);
    transition: transform 0.1s ease;
}

.dna-marker.touch-active {
    transform: scale(1.05);
}

.dna-marker.touch-active .dna-node {
    r: 18 !important;
    filter: drop-shadow(0 0 30px rgba(196, 32, 145, 1)) !important;
}

/* Mobile Grid Card Interactions */
.grid-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.grid-card.touch-active {
    transform: scale(0.95);
    box-shadow: 0 8px 25px rgba(196, 32, 145, 0.3);
}

/* Mobile District Tag Interactions */
.district-tag:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.district-tag.touch-active {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    color: white;
    transform: scale(0.9);
}

/* Mobile Champion Item Interactions */
.champion-item:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.champion-item.touch-active {
    background: rgba(196, 32, 145, 0.1);
    transform: scale(0.95);
}

/* Mobile Loading States */
.mobile-loading {
    position: relative;
    overflow: hidden;
}

.mobile-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: mobileShimmer 1.5s infinite;
}

@keyframes mobileShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Mobile Error States */
.mobile-error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #d32f2f;
}

.mobile-error .card-header h4 {
    color: #d32f2f;
}

/* Mobile Success States */
.mobile-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.mobile-success .card-header h4 {
    color: #4caf50;
}

/* Mobile Accessibility */
@media (prefers-reduced-motion: reduce) {
    .touch-active,
    .mobile-pulse,
    .update-animation,
    .animate-in {
        animation: none !important;
        transform: none !important;
    }
    
    .mobile-loading::before {
        animation: none !important;
    }
}

/* Mobile Focus States */
.control-btn:focus,
.wave-bar:focus,
.dna-marker:focus,
.grid-card:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Mobile Voice Over Support */
@media (prefers-reduced-motion: no-preference) {
    .dna-marker[aria-label]:focus::after {
        content: attr(aria-label);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        z-index: 1000;
    }
}

/* Mobile Battery Optimization */
@media (prefers-reduced-motion: reduce) {
    .dna-particles .particle,
    .sound-waves .wave,
    .wave-bar {
        animation: none !important;
    }
}

/* Mobile Network Optimization */
.mobile-slow-network .dna-particles .particle {
    display: none;
}

.mobile-slow-network .sound-waves .wave {
    animation-duration: 4s;
}

.mobile-slow-network .wave-bar {
    animation-duration: 3s;
}

/* Mobile Memory Optimization */
.mobile-low-memory .grid-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
}

.mobile-low-memory .dna-particles {
    display: none;
}

/* Mobile Orientation Lock */
@media (orientation: landscape) and (max-height: 500px) {
    .mobile-landscape .sahne-dna-section {
        padding: 15px 0;
    }
    
    .mobile-landscape .dna-map-container {
        height: 180px;
    }
    
    .mobile-landscape .live-data-grid {
        margin-top: 10px;
    }
}

/* Mobile Print Styles */
@media print {
    .sahne-dna-section {
        background: white !important;
        color: black !important;
    }
    
    .dna-map-container,
    .map-controls,
    .live-data-grid {
        display: none !important;
    }
    
    .section-title h2 {
        color: black !important;
    }
}

/* Mobile Debug Styles */
.mobile-debug .grid-card {
    border: 2px solid red;
}

.mobile-debug .dna-marker {
    border: 2px solid blue;
}

.mobile-debug .control-btn {
    border: 2px solid green;
}

/* Mobile Performance Monitoring */
.mobile-performance-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.mobile-performance-warning .card-header h4 {
    color: #ff9800;
}

/* Mobile Network Status */
.mobile-offline .grid-card {
    opacity: 0.6;
    pointer-events: none;
}

.mobile-offline .dna-marker {
    opacity: 0.4;
    pointer-events: none;
}

/* Mobile Battery Status */
.mobile-low-battery .dna-particles {
    animation-duration: 6s;
}

.mobile-low-battery .sound-waves .wave {
    animation-duration: 5s;
}

.mobile-low-battery .wave-bar {
    animation-duration: 4s;
}

/* Live Data Dashboard v2 */
.live-data-grid .live-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.live-data-grid .live-grid-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.live-data-grid .data-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.live-data-grid .data-meta-line i {
    color: var(--accent-color);
    margin-right: 6px;
}

.live-data-grid .live-time-controls {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    overflow: hidden;
}

.live-data-grid .live-time-btn {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    transition: all 0.25s ease;
}

.live-data-grid .live-time-btn.active {
    background: linear-gradient(135deg, #e42386 0%, #6d2ef7 100%);
    color: #fff;
}

.live-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.live-kpi-row .live-kpi {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 14px 16px;
}

.live-kpi-row .kpi-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 7px;
    letter-spacing: 0.2px;
}

.live-kpi-row .kpi-value {
    font-size: 24px;
    line-height: 1;
    color: #fff;
    font-weight: 700;
}

.city-details-card .city-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    margin-bottom: 12px;
}

.city-details-card .trend-card {
    margin-bottom: 18px;
}

.mini-trend-chart {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(228, 35, 134, 0.12) 0%, rgba(228, 35, 134, 0.02) 100%);
    padding: 8px;
}

.mini-trend-chart svg {
    width: 100%;
    height: 70px;
    display: block;
}

#cityTrendPath {
    fill: none;
    stroke: #f35cb2;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trend-note {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

.city-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.live-data-grid .data-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "city-details";
}

.city-details-card--expanded {
    grid-area: city-details;
    grid-column: 1 / -1;
    min-height: 360px;
}

.city-details-card--expanded .city-content {
    padding: 10px 0 0;
}

.city-details-card--expanded .city-details-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.city-details-card--expanded .detail-item {
    margin-bottom: 0;
    height: 100%;
}

.city-details-card--expanded .trend-card {
    grid-column: 1 / -1;
}

.dna-marker.active .dna-node {
    box-shadow: 0 0 0 5px rgba(228, 35, 134, 0.25);
    transform: scale(1.12);
}

@media only screen and (max-width: 991px) {
    .live-kpi-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 767px) {
    .live-data-grid .live-grid-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .live-data-grid .live-time-controls {
        width: 100%;
        justify-content: space-between;
    }

    .live-data-grid .live-time-btn {
        flex: 1;
    }
}

@media only screen and (max-width: 575px) {
    .live-kpi-row {
        grid-template-columns: 1fr;
    }

    .city-details-card--expanded .city-details-section {
        grid-template-columns: 1fr;
    }
}

/************************************/
/***  Collection Projects Gallery  ***/
/************************************/

/* Collection Projects Section */
.collection-projects-section {
    margin-top: 80px;
    margin-bottom: 40px;
}

.collection-projects-section .section-title {
    margin-bottom: 50px;
}

/* Collection Project Cards */
.collection-project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 100%;
    margin-bottom: 30px;
}

/* Project Gallery Wrapper */
.project-gallery-wrapper {
    position: relative;
}

/* Hidden Gallery Items - These are invisible but part of the gallery */
.project-gallery-item {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    top: -9999px;
    left: -9999px;
}

.collection-project-card figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 15px;
}

.collection-project-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.collection-project-card:hover img {
    transform: scale(1.08);
}

/* Project Overlay - Modern Gradient */
.collection-project-card .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(20, 5, 41, 0) 0%, rgba(20, 5, 41, 0.3) 40%, rgba(20, 5, 41, 0.85) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    border-radius: 15px;
}

.collection-project-card:hover .project-overlay {
    opacity: 1;
    visibility: visible;
}

/* Project Overlay Content */
.project-overlay-content {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.collection-project-card:hover .project-overlay-content {
    transform: translateY(0);
}

/* Project Category Badge */
.project-category {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.project-category.modern {
    background: linear-gradient(135deg, #00D4FF 0%, #6617CA 100%);
}

.project-category.corporate {
    background: linear-gradient(135deg, #FFB800 0%, #FF6B00 100%);
}

/* Project Title */
.project-overlay-content h5 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3em;
}

/* Project Meta Stats */
.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.project-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.project-stat i {
    font-size: 16px;
    color: var(--accent-color);
}

.project-stat strong {
    font-weight: 600;
    color: #fff;
    font-size: 15px;
}

/* Project View Link Icon */
.project-view-link {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.collection-project-card:hover .project-view-link {
    transform: scale(1) rotate(0deg);
}

.project-view-link i {
    font-size: 18px;
    color: #fff;
    transition: transform 0.3s ease;
}

.collection-project-card:hover .project-view-link:hover i {
    transform: translateX(3px);
}

/* View All Projects Button */
.collection-projects-button {
    margin-top: 50px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .collection-project-card img {
        height: 350px;
    }
    
    .project-overlay-content h5 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .collection-projects-section {
        margin-top: 60px;
    }
    
    
    .collection-project-card img {
        height: 300px;
    }
    
    .project-overlay {
        padding: 20px;
    }
    
    .project-overlay-content h5 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .project-meta {
        gap: 15px;
    }
    
    .project-view-link {
        width: 40px;
        height: 40px;
        top: 20px;
        right: 20px;
    }
    
    .project-view-link i {
        font-size: 16px;
    }
}

/************************************/
/***  Partners Logo Carousel  ***/
/************************************/

/* Partners Logo Carousel Container */
.partners-logo-carousel {
    position: relative;
    padding: 20px 0;
}

/* Logo Card Item */
.partner-logo-item {
    height: 100%;
    padding: 0 15px;
}

.logo-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 23, 202, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 20px;
}

.logo-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 23, 202, 0.5);
    box-shadow: 0 20px 40px rgba(102, 23, 202, 0.2);
}

.logo-card:hover::before {
    opacity: 1;
}

/* Logo Image */
.logo-image {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.7;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-card:hover .logo-image {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

/* Logo Overlay */
.logo-overlay {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.logo-card:hover .logo-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.partner-category {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
}

/* Navigation Arrows */
.partners-logo-carousel .swiper-button-next,
.partners-logo-carousel .swiper-button-prev {
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.partners-logo-carousel .swiper-button-next:hover,
.partners-logo-carousel .swiper-button-prev:hover {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.1);
}

.partners-logo-carousel .swiper-button-next::after,
.partners-logo-carousel .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .logo-card {
        height: 180px;
        padding: 30px 25px;
    }

    .logo-image {
        max-height: 70px;
    }
}

@media (max-width: 991px) {
    .logo-card {
        height: 160px;
        padding: 25px 20px;
    }

    .logo-image {
        max-height: 60px;
    }
}

@media (max-width: 768px) {
    .partners-logo-carousel {
        padding: 15px 0;
    }

    .logo-card {
        height: 150px;
        padding: 20px 15px;
        border-radius: 15px;
    }

    .logo-image {
        max-height: 50px;
    }

    .partners-logo-carousel .swiper-button-next,
    .partners-logo-carousel .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .partners-logo-carousel .swiper-button-next::after,
    .partners-logo-carousel .swiper-button-prev::after {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .logo-card {
        height: 140px;
        padding: 20px 10px;
    }

    .logo-image {
        max-height: 45px;
    }
}

@media (max-width: 576px) {
    .collection-project-card img {
        height: 280px;
    }
    
    .project-overlay-content h5 {
        font-size: 18px;
    }
    
    .project-stat {
        font-size: 13px;
    }
}

/* ===== Sticky WhatsApp İletişim Balonu (UCM marka estetiği) ===== */
.whatsapp-float {
    position: fixed;
    bottom: calc(20px + env(safe-area-inset-bottom, 0));
    right: calc(20px + env(safe-area-inset-right, 0));
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    min-width: 58px;
    min-height: 58px;
    background: linear-gradient(145deg, #25D366 0%, #20bd5a 100%);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    border: 2px solid rgba(228, 35, 134, 0.35);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
                0 0 0 0 rgba(228, 35, 134, 0.2);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease,
                opacity 0.3s ease,
                visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(228, 35, 134, 0.25);
    animation: whatsapp-float-pulse 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes whatsapp-float-pulse {
    0% { transform: scale(0.95); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 0; }
}

.whatsapp-float.whatsapp-float--visible {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float.whatsapp-float--hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(80px) scale(0.8);
    pointer-events: none;
}

.whatsapp-float:hover {
    background: linear-gradient(145deg, #2ee071 0%, #25D366 100%);
    border-color: rgba(228, 35, 134, 0.6);
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5),
                0 0 24px rgba(228, 35, 134, 0.25);
}

.whatsapp-float:focus {
    outline: none;
}

.whatsapp-float:focus-visible {
    outline: 2px solid #e42386;
    outline-offset: 3px;
}

.whatsapp-float i {
    font-size: 28px;
    line-height: 1;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.whatsapp-float-label {
    position: absolute;
    right: 100%;
    margin-right: 14px;
    padding: 10px 16px 10px 14px;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 10px;
    border-left: 4px solid #e42386;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(228, 35, 134, 0.08);
    opacity: 0;
    transform: translateX(10px);
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus .whatsapp-float-label {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

/* Yüzen notalar animasyonu */
.whatsapp-float-notes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: visible;
}

.whatsapp-note {
    position: absolute;
    font-size: 12px;
    opacity: 0;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 0 8px rgba(228, 35, 134, 0.4);
    animation: whatsapp-note-float 3.5s ease-in-out infinite;
}

.whatsapp-note--1 { left: 50%; top: 50%; margin-left: -6px; margin-top: -8px; animation-delay: 0s; }
.whatsapp-note--2 { left: 50%; top: 50%; margin-left: -4px; margin-top: -6px; animation-delay: 1.1s; }
.whatsapp-note--3 { left: 50%; top: 50%; margin-left: -6px; margin-top: -8px; animation-delay: 2.2s; }

@keyframes whatsapp-note-float {
    0% {
        transform: translate(0, 0) scale(0.6);
        opacity: 0;
    }
    15% {
        opacity: 0.75;
    }
    85% {
        opacity: 0.4;
    }
    100% {
        transform: translate(var(--note-dx, -8px), -42px) scale(0.9);
        opacity: 0;
    }
}

.whatsapp-note--1 { --note-dx: -10px; }
.whatsapp-note--2 { --note-dx: 6px; }
.whatsapp-note--3 { --note-dx: -4px; }

.whatsapp-float:hover .whatsapp-note {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 10px rgba(228, 35, 134, 0.5);
}

@media (max-width: 767px) {
    .whatsapp-float-label {
        display: none;
    }
    .whatsapp-note {
        font-size: 10px;
    }
}