/******************************************************************
  Template Name: Directing
  Description:  Directing directory listing HTML Template
  Author: Colorlib
  Author URI: https://colorlib.com
  Version: 1.0
  Created: Colorlib
******************************************************************/

/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Service Section
6.  Categories Section
7.  Featured Section
8.  Latest Product Section
9.  Contact
10.  Footer Style
-------------------------------------------------------------------*/

/*----------------------------------------*/

/* Template default CSS
/*----------------------------------------*/

html,
body {
	height: 100%;
	font-family: "Cairo", sans-serif;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Cairo", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 15px;
	font-family: "Cairo", sans-serif;
	color: #707070;
	font-weight: 400;
	line-height: 25px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #ffffff;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 10px;
	text-align: center;
}

.section-title h2 {
	font-size: 40px;
	font-weight: 700;
	color: #323232;
	margin-bottom: 10px;
}

.section-title P {
	color: #707070;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 14px;
	padding: 12px 30px 10px;
	color: #ffffff;
	font-weight: 700;
	background: #1373ef;
	border-radius: 2px;
}

.site-btn {
	font-size: 14px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	padding: 13px 30px 12px;
	background: #1373ef;
	border: none;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/*---------------------
  Header
-----------------------*/

.header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
}

.header.header--normal {
	background: #0a2759;
	-webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	position: fixed;
}

.header.header--normal .header__menu ul li a {
	color: #ffffff;
}

.header.header--normal .login-btn {
	color: #707070;
	border-color: #e1e1e1;
}

.header__logo {
	padding: 20px 0;
}

.header__nav {
	text-align: right;
	padding: 40px 0;
}

.header__menu {
	display: inline-block;
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 55px;
	position: relative;
}

.header__menu ul li:hover .dropdown {
	top: 32px;
	opacity: 1;
	visibility: visible;
}

.header__menu ul li:hover .dropdown li a {
	color: #ffffff;
}

.header__menu ul li:hover .dropdown li a:after {
	display: none;
}

.header__menu ul li:hover>a:after {
	opacity: 1;
	width: 100%;
}

.header__menu ul li.active a:after {
	opacity: 1;
	width: 100%;
}

.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 50px;
	width: 180px;
	background: #222222;
	text-align: left;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	opacity: 0;
	visibility: hidden;
	padding: 5px 0;
}

.header__menu ul li .dropdown li {
	margin-right: 0;
	display: block;
}

.header__menu ul li .dropdown li a {
	padding: 6px 15px;
	font-weight: 400;
	font-size: 14px;
}

.header__menu ul li a {
	font-size: 15px;
	color: #ffffff;
	font-weight: 600;
	padding: 5px 0;
	display: block;
	position: relative;
}

.header__menu ul li a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 0%;
	background: #1373ef;
	content: "";
	opacity: 0;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.header__menu__right {
	display: inline-block;
}

.header__menu__right .primary-btn {
	margin-right: 15px;
}

.header__menu__right .login-btn {
	font-size: 20px;
	color: #ffffff;
	height: 42px;
	width: 42px;
	border: 1px solid #ffffff;
	border-radius: 50%;
	line-height: 38px;
	text-align: center;
	display: inline-block;
}

.slicknav_menu {
	display: none;
}

/*---------------------
  Hero
-----------------------*/

.hero {
	padding-top: 250px;
	overflow: visible;
	position: relative;
}

.hero__text .section-title h2 {
	color: #ffffff;
}

.hero__text .section-title p {
	color: #A8A8A8;
}

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

.hero__text .hero__categories__tags li {
	list-style: none;
	display: inline-block;
	margin-right: 5px;
}

.hero__text .hero__categories__tags li:last-child {
	margin-right: 0;
}

.hero__text .hero__categories__tags li a {
	font-size: 15px;
	color: #ffffff;
	padding: 10px 25px 10px 20px;
	display: block;
	border: 1px solid #ebebeb;
	margin-bottom: 10px;
}

.hero__text .hero__categories__tags li a img {
	margin-right: 5px;
}

.hero__search__form {
	margin-bottom: 20px;
	padding: 20px;
	border-radius: 5px;
	overflow: visible !important;
	position: relative;
	z-index: 1;
}

.hero__search__form form input {
	width: 40%;
	float: left;
	font-size: 15px;
	color: #A8A8A8;
	padding-left: 30px;
	height: 54px;
	border: none;
}

.hero__search__form form input::-webkit-input-placeholder {
	color: #A8A8A8;
}

.hero__search__form form input::-moz-placeholder {
	color: #A8A8A8;
}

.hero__search__form form input:-ms-input-placeholder {
	color: #A8A8A8;
}

.hero__search__form form input::-ms-input-placeholder {
	color: #A8A8A8;
}

.hero__search__form form input::placeholder {
	color: #A8A8A8;
}

.hero__search__form form .select__option {
	position: relative;
	width: 22.5%;
	float: left;
	height: 54px;
}

.hero__search__form form .select__option:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 1px;
	background: #eeeeee;
	content: "";
	z-index: 1;
}

.hero__search__form form .select__option .nice-select {
	width: 100%;
	border: none;
	border-radius: 0;
	height: 54px;
	line-height: 56px;
}

.hero__search__form form .select__option .nice-select span {
	font-size: 15px;
	color: #323232;
}

.hero__search__form form .select__option .nice-select .list {
	border-radius: 0;
	margin-top: 0;
	width: 100%;
}

.hero__search__form form .select__option .nice-select:after {
	border-right: 7px solid #183456;
	border-top: 7px solid transparent;
	height: 6px;
	margin-top: 0;
	right: 18px;
	width: 10px;
	border-bottom: none;
	top: 40%;
}

.hero__search__form form button {
	width: 15%;
	height: 54px;
	border: none;
	font-size: 14px;
	font-weight: 700;
	background: #1373ef;
	color: #ffffff;
	text-transform: uppercase;
}

/*---------------------
  Most Search Tab
-----------------------*/

.most-search {
	padding-bottom: 70px;
}

.most__search__tab {
	text-align: center;
	border-bottom: 2px solid #e1e1e1;
	margin-bottom: 50px;
}

.most__search__tab .nav {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.most__search__tab .nav-tabs {
	border-bottom: none;
}

.most__search__tab .nav-tabs .nav-item {
	margin-bottom: 0;
	margin-right: 40px;
}

.most__search__tab .nav-tabs .nav-item:last-child {
	margin-right: 0;
}

.most__search__tab .nav-tabs .nav-link {
	font-size: 15px;
	border: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	color: #a8a8a8;
	padding: 0 10px;
	position: relative;
}

.most__search__tab .nav-tabs .nav-link:after {
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 100%;
	background: #1373ef;
	content: "";
	opacity: 0;
}

.most__search__tab .nav-tabs .nav-link.active {
	color: #1373ef;
}

.most__search__tab .nav-tabs .nav-link.active:after {
	opacity: 1;
}

.most__search__tab .nav-tabs .nav-link span {
	margin-right: 3px;
}

/*---------------------
  Work section
-----------------------*/

.work {
	padding-bottom: 70px;
	padding-top: 90px;
	background: #f9f9f9;
}

.work.work-about {
	background: transparent;
}

.work__item {
	text-align: center;
	-webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	padding: 80px 30px 40px 30px;
	border-radius: 5px;
	margin-bottom: 30px;
	background: #ffffff;
}

.work__item h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 600;
	margin-top: 35px;
	margin-bottom: 15px;
}

.work__item p {
	font-size: 15px;
	color: #707070;
	margin-bottom: 0;
}

.work__item__number {
	font-size: 60px;
	font-weight: 700;
	color: #1373ef;
	opacity: 0.1;
	position: absolute;
	left: -16px;
	top: -2px;
}

/*---------------------
  Feature Location
-----------------------*/

.feature-location {
	padding-bottom: 70px;
	padding-top: 90px;
}

.feature__location__item {
	height: 270px;
	margin-bottom: 30px;
	border-radius: 5px;
	position: relative;
	display: block;
}

.feature__location__item.large-item {
	height: 570px;
}

.feature__location__item.large-item .feature__location__item__text h5 {
	margin-bottom: 6px;
}

.feature__location__item.large-item .feature__location__item__text ul li {
	list-style: none;
	font-size: 14px;
	color: #a8a8a8;
	display: inline-block;
	margin-right: 20px;
}

.feature__location__item__text {
	position: absolute;
	left: 0;
	bottom: 30px;
	width: 100%;
	padding: 0 30px;
}

.feature__location__item__text h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
}

/*---------------------
  Testimonial
-----------------------*/

.testimonial .section-title {
	position: relative;
	margin-bottom: 60px;
	z-index: 1;
}

.testimonial .section-title:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -58px;
	margin: 0 auto;
	font-family: "FontAwesome";
	content: "";
	color: #1373ef;
	opacity: 0.2;
	font-size: 60px;
	z-index: -1;
}

.testimonial .section-title h2 {
	color: #ffffff;
}

.testimonial .section-title p {
	color: #ffffff;
}

.testimonial__slider.owl-carousel .owl-item img {
	width: auto;
	display: inline-block;
}

.testimonial__slider.owl-carousel .owl-nav button {
	height: 50px;
	width: 50px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	font-size: 20px;
	color: #ffffff;
	line-height: 55px;
	text-align: center;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	position: absolute;
	top: 30px;
	left: 0;
}

.testimonial__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 0;
}

.testimonial__slider.owl-carousel .owl-nav button:hover {
	background: #1373ef;
}

.testimonial__item {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.testimonial__item p {
	font-size: 18px;
	color: #ffffff;
	font-style: italic;
	line-height: 28px;
	margin-bottom: 30px;
}

.testimonial__item span {
	font-size: 15px;
	color: #1373ef;
	font-weight: 600;
}

.testimonial__item__author {
	margin-bottom: 25px;
}

.testimonial__item__author a {
	display: inline-block;
	margin-right: 10px;
}

.testimonial__item__author a img {
	opacity: 0.5;
	width: 55px;
	height: 55px;
	border-radius: 80px;
}

.testimonial__item__author a:last-child {
	margin-right: 0;
}

.testimonial__item__author a.active img {
	width: 70px;
	height: 70px;
	opacity: 1;
}

.testimonial__item__author__text {
	margin-bottom: 8px;
}

.testimonial__item__author__text h5 {
	color: #ffffff;
	display: inline-block;
}

.testimonial__item__author__text .testimonial__item__author__rating {
	display: inline-block;
}

.testimonial__item__author__text .testimonial__item__author__rating i {
	font-size: 18px;
	color: #f09d17;
	margin-right: -3px;
}

/*---------------------
  Newalatter 
-----------------------*/

.newslatter {
	background: #f9f9f9;
	padding: 50px 0 40px;
}

.newslatter__text h3 {
	color: #323232;
	font-weight: 700;
	margin-bottom: 8px;
}

.newslatter__text p {
	font-size: 15px;
	color: #707070;
	margin-bottom: 0;
}

.newslatter__form {
	position: relative;
}

.newslatter__form input {
	width: 100%;
	height: 50px;
	font-size: 15px;
	color: #a8a8a8;
	padding-left: 30px;
	border: none;
	background: #ffffff;
	border-radius: 2px;
}

.newslatter__form input:last-child {
	color: #a8a8a8;
}

.newslatter__form button {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	background: #1373ef;
	display: inline-block;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	padding: 0 28px;
	border-radius: 2px;
}

/*---------------------
  Footer
-----------------------*/

.footer {
	padding-top: 70px;
	padding-bottom: 0;
}

.footer__about {
	margin-bottom: 30px;
}

.footer__about p {
	font-size: 15px;
	line-height: 25px;
}

.footer__about__logo {
	margin-bottom: 20px;
}

.footer__about__logo a {
	display: inline-block;
}

.footer__address ul li {
	list-style: none;
	width: 50%;
	float: left;
	margin-bottom: 25px;
}

.footer__address ul li span {
	font-size: 15px;
	color: #707070;
	display: block;
	margin-bottom: 5px;
}

.footer__address ul li p {
	font-size: 15px;
	color: #323232;
	margin-bottom: 0;
	font-weight: 600;
}

.footer__address ul li .footer__social a {
	display: inline-block;
	font-size: 15px;
	color: #707070;
	margin-right: 18px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.footer__address ul li .footer__social a:hover {
	color: #1373ef;
}

.footer__address ul li .footer__social a:last-child {
	margin-right: 0;
}

.footer__widget {
	overflow: hidden;
	margin-bottom: 30px;
}

.footer__widget ul {
	width: 50%;
	float: left;
}

.footer__widget ul li {
	list-style: none;
}

.footer__widget ul li a {
	font-size: 15px;
	color: #707070;
	line-height: 32px;
}

.footer__copyright {
	background: #ffffff;
	border-top: 1px solid #e1e1e1;
	padding: 25px 0 20px;
	overflow: hidden;
	margin-top: 10px;
}

.footer__copyright__text {
	font-size: 15px;
	color: #707070;
	float: left;
}

.footer__copyright__text span,
.footer__copyright__text i,
.footer__copyright__text a {
	color: #1373ef;
}

.footer__copyright__links {
	float: right;
}

.footer__copyright__links a {
	display: inline-block;
	font-size: 15px;
	color: #707070;
	margin-right: 20px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.footer__copyright__links a:hover {
	color: #1373ef;
}

.footer__copyright__links a:last-child {
	margin-right: 0;
}

/*---------------------
  Filter
-----------------------*/

.filter {
	position: fixed;
	left: 0;
	top: 0;
	width: 270px;
	height: 100%;
	background: #ffffff;
	padding: 30px 34px 30px 30px;
	overflow-y: auto;
	-webkit-box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.1);
	z-index: 99;
	padding-top: 140px;
}

.ov-hid {
	overflow: hidden;
	padding-left: 270px;
}

.filter__title h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 600;
}

.filter__title h5 i {
	margin-right: 5px;
}

.filter__search {
	background: #ffffff;
	margin-bottom: 12px;
}

.filter__search input {
	width: 100%;
	color: #323232;
	font-size: 15px;
	border: none;
	height: 46px;
	border-bottom: 2px solid #f7f7f7;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.filter__search input:focus {
	border-color: #1373ef;
}

.filter__search input::-webkit-input-placeholder {
	color: #323232;
}

.filter__search input::-moz-placeholder {
	color: #323232;
}

.filter__search input:-ms-input-placeholder {
	color: #323232;
}

.filter__search input::-ms-input-placeholder {
	color: #323232;
}

.filter__search input::placeholder {
	color: #323232;
}

.filter__select {
	border-bottom: 2px solid #f7f7f7;
	margin-bottom: 18px;
}

.filter__select .nice-select {
	width: 100%;
	border: none;
	border-radius: 0;
	height: 50px;
	line-height: 52px;
	float: none;
	padding-left: 0;
}

.filter__select .nice-select span {
	font-size: 15px;
	color: #323232;
}

.filter__select .nice-select .list {
	border-radius: 0;
	margin-top: 0;
	width: 100%;
}

.filter__select .nice-select:after {
	border-right: 7px solid #183456;
	border-top: 7px solid transparent;
	height: 6px;
	margin-top: 0;
	right: 0;
	width: 10px;
	border-bottom: none;
	top: 40%;
}

.filter__location {
	background: #ffffff;
	margin-bottom: 26px;
	position: relative;
}

.filter__location input {
	width: 100%;
	color: #707070;
	font-size: 15px;
	border: none;
	height: 46px;
	border-bottom: 2px solid #f7f7f7;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.filter__location input:focus {
	border-color: #1373ef;
}

.filter__location input::-webkit-input-placeholder {
	color: #323232;
}

.filter__location input::-moz-placeholder {
	color: #323232;
}

.filter__location input:-ms-input-placeholder {
	color: #323232;
}

.filter__location input::-ms-input-placeholder {
	color: #323232;
}

.filter__location input::placeholder {
	color: #323232;
}

.filter__location i {
	font-size: 20px;
	color: #1373ef;
	position: absolute;
	right: 0;
	bottom: 17px;
}

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

.filter__radius p {
	font-size: 15px;
	color: #707070;
}

.filter__radius .ui-widget.ui-widget-content {
	border: none;
	height: 5px;
	background: #f5f5f5;
}

.filter__radius .ui-slider-horizontal .ui-slider-range-min {
	background: #1373ef;
}

.filter__radius .ui-slider .ui-slider-handle {
	height: 10px;
	width: 10px;
	display: inline-block;
	background: #1373ef;
	cursor: pointer;
	border: 1.5px solid #fff;
	border-radius: 50%;
	z-index: 9;
}

.filter__radius .ui-slider-horizontal .ui-slider-handle {
	top: -3px;
	margin-left: -8px;
}

.filter__radius .price-input {
	position: absolute;
	left: 55px;
	top: 0;
}

.filter__radius .price-input input {
	color: #1373ef;
	font-weight: 600;
	font-size: 15px;
	width: 50px;
	background: transparent;
	border: none;
}

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

.filter__price p {
	font-size: 15px;
	color: #707070;
}

.filter__price .ui-widget.ui-widget-content {
	border: none;
	height: 5px;
	background: #f5f5f5;
}

.filter__price .ui-slider .ui-slider-range {
	background: #1373ef;
}

.filter__price .ui-slider .ui-slider-handle {
	height: 10px;
	width: 10px;
	display: inline-block;
	background: #1373ef;
	cursor: pointer;
	border: 1.5px solid #fff;
	border-radius: 50%;
	z-index: 9;
}

.filter__price .ui-slider-horizontal .ui-slider-handle {
	top: -3px;
	margin-left: -8px;
}

.filter__price .price-input {
	position: absolute;
	left: 42px;
	top: 0;
}

.filter__price .price-input:after {
	position: absolute;
	right: 44px;
	top: 12px;
	height: 2px;
	width: 4px;
	background: #1373ef;
	content: "";
}

.filter__price .price-input input {
	color: #1373ef;
	font-weight: 600;
	font-size: 15px;
	width: 35px;
	background: transparent;
	border: none;
}

.filter__tags {
	margin-bottom: 30px;
}

.filter__tags h6 {
	font-size: 15px;
	color: #323232;
	margin-bottom: 20px;
}

.filter__tags label {
	font-size: 15px;
	color: #323232;
	position: relative;
	display: block;
	padding-left: 24px;
	cursor: pointer;
	margin-bottom: 15px;
}

.filter__tags label input {
	position: absolute;
	visibility: hidden;
}

.filter__tags label input:checked~.checkmark {
	background: #a8a8a8;
}

.filter__tags label .checkmark {
	position: absolute;
	left: 0;
	top: 4px;
	height: 14px;
	width: 14px;
	border: 2px solid #a8a8a8;
	content: "";
	border-radius: 4px;
}

.filter__btns button {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	background: #1373ef;
	border: none;
	border-radius: 2px;
	width: 100%;
	padding: 14px 0 12px;
}

.filter__btns button.filter__reset {
	background: #f2f2f2;
	color: #323232;
	margin-top: 15px;
}

/*---------------------
  Listing
-----------------------*/

.nice-scroll {
	height: 100%;
	overflow-y: hidden;
}

.listing__text__top {
	overflow: hidden;
	margin-bottom: 25px;
}

.listing__text__top__left {
	float: left;
}

.listing__text__top__left h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 600;
	display: inline-block;
	margin-right: 15px;
}

.listing__text__top__left span {
	font-size: 15px;
	color: #707070;
	display: inline-block;
}

.listing__text__top__right {
	font-size: 15px;
	color: #323232;
	float: right;
}

.listing__text__top__right i {
	font-size: 16px;
	margin-left: 6px;
}

.listing {
	width: 100%;
	height: 100%;
	padding: 0 40px;
	padding-top: 140px;
	overflow-y: auto;
	float: left;
}

.listing .listing__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -30px;
}

.listing .listing__list .listing__item {
	max-width: calc(50% - 30px);
	float: left;
	margin-right: 30px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	width: 100%;
	height: 100%;
}

.listing__item {
	-webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.listing__item__pic {
	position: relative;
}

.listing__item__pic img {
	position: absolute;
	width: 60px;
	height: 60px;
	left: 30px;
	bottom: -30px;
	border-radius: 50%;
}

.listing__item__pic__tag {
	font-size: 12px;
	color: #ffffff;
	background: #1373ef;
	font-weight: 600;
	display: inline-block;
	padding: 5px 15px 5px 10px;
	border-radius: 2px;
	position: absolute;
	left: 20px;
	top: 20px;
}

.listing__item__pic__tag.top_rate {
	background: #00a7ea;
}

.listing__item__pic__tag.hot_deal {
	background: #D9D137;
}

.listing__item__pic__btns {
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.listing__item__pic__btns a {
	font-size: 13px;
	color: #ffffff;
	height: 34px;
	width: 34px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	line-height: 34px;
	text-align: center;
	display: inline-block;
	margin-right: 6px;
}

.listing__item__pic__btns a:last-child {
	margin-right: 0;
}

.listing__item__text {
	padding-left: 30px;
	padding-right: 30px;
}

.listing__item__text__inside h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 600;
	margin-bottom: 6px;
}

.listing__item__text__inside ul {
	margin-bottom: 20px;
}

.listing__item__text__inside ul li {
	font-size: 15px;
	color: #323232;
	list-style: none;
	line-height: 25px;
	position: relative;
	padding-left: 25px;
}

.listing__item__text__inside ul li span {
	color: #A8A8A8;
	position: absolute;
	left: 0;
	top: 5px;
}

.listing__item__text__rating {
	overflow: hidden;
	margin-bottom: 10px;
}

.listing__item__text__rating .listing__item__rating__star {
	float: left;
}

.listing__item__text__rating .listing__item__rating__star span {
	font-size: 14px;
	color: #F09D17;
	margin-right: -3px;
}

.listing__item__text__rating .listing__item__rating__star span:last-child {
	margin-right: 0;
}

.listing__item__text__rating h6 {
	font-size: 15px;
	color: #1373ef;
	font-weight: 600;
	float: right;
}

.listing__item__text__info {
	padding: 10px 30px;
	border-top: 1px solid #e1e1e1;
	overflow: hidden;
	margin-left: -30px;
	margin-right: -30px;
}

.listing__item__text__info__left {
	float: left;
}

.listing__item__text__info__left img {
	display: inline-block;
	margin-right: 10px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
}

.listing__item__text__info__left span {
	font-size: 14px;
	color: #323232;
	font-weight: 600;
}

.listing__item__text__info__right {
	float: right;
	font-size: 14px;
	color: #50D437;
	font-weight: 700;
}

.listing__item__text__info__right.closed {
	color: #1373ef;
}

.listing__map {
	height: 100%;
	width: 45%;
	margin-top: 105px;
	float: left;
}

.listing__map iframe {
	width: 100%;
	height: 100%;
}

/*---------------------
  Listing Hero
-----------------------*/

.listing-hero {
	padding-top: 230px;
	padding-bottom: 40px;
}

.listing__hero__icon {
	float: left;
	margin-right: 30px;
}

.listing__hero__text {
	overflow: hidden;
}

.listing__hero__text h2 {
	font-size: 40px;
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 6px;
}

.listing__hero__text p {
	font-size: 15px;
	color: #E1DEDE;
}

.listing__hero__text p span {
	color: #a8a8a8;
	margin-right: 5px;
}

.listing__hero__widget .listing__hero__widget__rating {
	display: inline-block;
	margin-right: 40px;
	position: relative;
	margin-bottom: 15px;
}

.listing__hero__widget .listing__hero__widget__rating:before {
	position: absolute;
	right: -27px;
	top: 11px;
	height: 1px;
	width: 4px;
	background: #ffffff;
	content: "";
}

.listing__hero__widget .listing__hero__widget__rating span {
	font-size: 15px;
	color: #F09D17;
	margin-right: -3px;
	display: inline-block;
}

.listing__hero__widget div {
	font-size: 15px;
	color: #E1DEDE;
	display: inline-block;
}

.listing__hero__btns {
	text-align: right;
	padding-top: 85px;
}

.listing__hero__btns .primary-btn {
	font-size: 15px;
}

.listing__hero__btns .primary-btn.share-btn {
	background: rgba(255, 255, 255, 0.2);
	margin-right: 6px;
}

.listing__hero__btns .primary-btn i {
	margin-right: 5px;
}

/*---------------------
  Listing Details
-----------------------*/

.listing__details__about {
	margin-bottom: 35px;
}

.listing__details__about h4 {
	color: #323232;
	font-weight: 600;
	margin-bottom: 18px;
}

.listing__details__about p {
	font-size: 15px;
	line-height: 25px;
	margin-bottom: 0;
}

.listing__details__gallery {
	border-top: 1px solid #e1e1e1;
	padding-top: 12px;
	margin-bottom: 50px;
}

.listing__details__gallery h4 {
	color: #323232;
	font-weight: 600;
	margin-bottom: 18px;
}

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

.listing__details__gallery__item span {
	display: block;
	font-size: 15px;
	color: #ffffff;
	position: absolute;
	left: 20px;
	bottom: 20px;
}

.listing__details__gallery__item span i {
	margin-right: 5px;
}

.listing__details__gallery__item__large {
	min-width: 100%;
}

.listing__details__gallery__slider img {
	cursor: pointer;
}

.listing__details__amenities {
	border-top: 1px solid #e1e1e1;
	padding-top: 12px;
	margin-bottom: 20px;
}

.listing__details__amenities h4 {
	color: #323232;
	font-weight: 600;
	margin-bottom: 28px;
}

.listing__details__amenities__item {
	text-align: center;
	margin-bottom: 30px;
}

.listing__details__amenities__item h6 {
	font-size: 15px;
	color: #293A54;
	margin-top: 6px;
}

.listing__details__rating {
	margin-bottom: 50px;
	border-top: 1px solid #e1e1e1;
	padding-top: 12px;
}

.listing__details__rating h4 {
	color: #323232;
	font-weight: 600;
	margin-bottom: 28px;
}

.listing__details__rating__overall {
	text-align: center;
	float: left;
	margin-right: 75px;
}

.listing__details__rating__overall h2 {
	font-size: 50px;
	color: #323232;
	font-weight: 700;
	margin-bottom: 5px;
}

.listing__details__rating__overall .listing__details__rating__star {
	margin-bottom: 6px;
}

.listing__details__rating__overall .listing__details__rating__star span {
	font-size: 16px;
	color: #F09D17;
	margin-right: -2px;
	display: inline-block;
}

.listing__details__rating__overall span {
	font-size: 15px;
	color: #707070;
}

.listing__details__rating__bar {
	overflow: hidden;
}

.listing__details__rating__bar__item {
	margin-bottom: 5px;
}

.listing__details__rating__bar__item span {
	font-size: 15px;
	color: #323232;
	display: inline-block;
}

.listing__details__rating__bar__item span.right {
	float: right;
}

.listing__details__rating__bar__item .barfiller {
	display: inline-block;
	width: 460px;
	margin-bottom: 0;
	height: 8px;
	border-radius: 50px;
	border: none;
	border-radius: 50px;
	background: #efefef;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	margin-left: 10px;
}

.listing__details__rating__bar__item .barfiller .fill {
	border-radius: 50px;
}

.listing__details__comment {
	border-top: 1px solid #e1e1e1;
	padding-top: 12px;
}

.listing__details__comment h4 {
	color: #323232;
	font-weight: 600;
	margin-bottom: 35px;
}

.listing__details__comment__item {
	margin-bottom: 40px;
}

.listing__details__comment__item__pic {
	float: left;
	margin-right: 25px;
}

.listing__details__comment__item__pic img {
	height: 60px;
	width: 60px;
	border-radius: 50%;
}

.listing__details__comment__item__text {
	overflow: hidden;
	position: relative;
}

.listing__details__comment__item__text .listing__details__comment__item__rating {
	position: absolute;
	right: 0;
	top: 0;
}

.listing__details__comment__item__text .listing__details__comment__item__rating i {
	font-size: 16px;
	color: #E9AA13;
	margin-left: -2px;
}

.listing__details__comment__item__text span {
	font-size: 13px;
	color: #1373ef;
}

.listing__details__comment__item__text h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 600;
	margin-top: 5px;
	margin-bottom: 15px;
}

.listing__details__comment__item__text ul li {
	list-style: none;
	display: inline-block;
	font-size: 15px;
	color: #323232;
	margin-right: 30px;
}

.listing__details__comment__item__text ul li:last-child {
	margin-right: 0;
}

.listing__details__comment__item__text ul li i {
	color: #a8a8a8;
	margin-right: 3px;
}

.listing__details__review {
	border-top: 1px solid #e1e1e1;
	padding-top: 12px;
}

.listing__details__review h4 {
	color: #323232;
	font-weight: 600;
	margin-bottom: 35px;
}

.listing__details__review form input {
	width: 100%;
	height: 50px;
	padding-left: 20px;
	border: 1px solid #e1e1e1;
	background: transparent;
	font-size: 15px;
	color: #a8a8a8;
	border-radius: 2px;
	margin-bottom: 20px;
}

.listing__details__review form input::-webkit-input-placeholder {
	color: #a8a8a8;
}

.listing__details__review form input::-moz-placeholder {
	color: #a8a8a8;
}

.listing__details__review form input:-ms-input-placeholder {
	color: #a8a8a8;
}

.listing__details__review form input::-ms-input-placeholder {
	color: #a8a8a8;
}

.listing__details__review form input::placeholder {
	color: #a8a8a8;
}

.listing__details__review form textarea {
	width: 100%;
	height: 100px;
	padding-left: 20px;
	padding-top: 12px;
	border: 1px solid #e1e1e1;
	background: transparent;
	font-size: 15px;
	color: #a8a8a8;
	border-radius: 2px;
	resize: none;
	margin-bottom: 24px;
}

.listing__details__review form textarea::-webkit-input-placeholder {
	color: #a8a8a8;
}

.listing__details__review form textarea::-moz-placeholder {
	color: #a8a8a8;
}

.listing__details__review form textarea:-ms-input-placeholder {
	color: #a8a8a8;
}

.listing__details__review form textarea::-ms-input-placeholder {
	color: #a8a8a8;
}

.listing__details__review form textarea::placeholder {
	color: #a8a8a8;
}

.listing__details__review form button {
	text-transform: none;
	font-size: 15px;
	border-radius: 2px;
	padding: 13px 38px 12px;
}

/*---------------------
  Listing Sidebar
-----------------------*/

.listing__sidebar__contact {
	-webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
	background: #ffffff;
	margin-bottom: 44px;
}

.listing__sidebar__contact__map {
	height: 200px;
	position: relative;
}

.listing__sidebar__contact__map iframe {
	width: 100%;
}

.listing__sidebar__contact__map img {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-13.5px, -18.5px);
	-ms-transform: translate(-13.5px, -18.5px);
	transform: translate(-13.5px, -18.5px);
}

.listing__sidebar__contact__text {
	padding: 34px 30px 30px 30px;
}

.listing__sidebar__contact__text h4 {
	color: #333333;
	font-weight: 600;
	margin-bottom: 16px;
}

.listing__sidebar__contact__text ul {
	margin-bottom: 20px;
}

.listing__sidebar__contact__text ul li {
	list-style: none;
	font-size: 15px;
	color: #323232;
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
}

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

.listing__sidebar__contact__text ul li span {
	color: #a8a8a8;
	margin-right: 5px;
	position: absolute;
	left: 0;
	top: 4px;
}

.listing__sidebar__contact__social a {
	display: inline-block;
	font-size: 15px;
	color: #ffffff;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	background: #3D589F;
	border-radius: 50%;
	margin-right: 6px;
}

.listing__sidebar__contact__social a:last-child {
	margin-right: 0;
}

.listing__sidebar__contact__social a.linkedin {
	background: #64ADF3;
}

.listing__sidebar__contact__social a.twitter {
	background: #D34B32;
}

.listing__sidebar__contact__social a.google {
	background: #2A79B9;
}

.listing__sidebar__working__hours {
	background: #ffffff;
	-webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
	padding: 30px 30px 20px 30px;
}

.listing__sidebar__working__hours h4 {
	color: #333333;
	font-weight: 600;
	margin-bottom: 16px;
}

.listing__sidebar__working__hours ul li {
	font-size: 15px;
	list-style: none;
	color: #323232;
	line-height: 32px;
}

.listing__sidebar__working__hours ul li span {
	float: right;
}

.listing__sidebar__working__hours ul li span.opening {
	color: #50D437;
}

.listing__sidebar__working__hours ul li span.closed {
	color: #1373ef;
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-area {
	padding-top: 200px;
	padding-bottom: 120px;
}

.breadcrumb__text h2 {
	font-size: 40px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 10px;
}

.breadcrumb__option a {
	display: inline-block;
	font-size: 15px;
	color: #ffffff;
	font-weight: 600;
	margin-right: 20px;
	position: relative;
}

.breadcrumb__option a i {
	color: #1373ef;
}

.breadcrumb__option a:after {
	position: absolute;
	right: -15px;
	top: 0;
	font-family: "FontAwesome";
	color: #ffffff;
	content: "";
}

.breadcrumb__option span {
	display: inline-block;
	font-size: 15px;
	color: #a8a8a8;
	font-weight: 600;
}

/*---------------------
  Checkout
-----------------------*/

.categories {
	padding-bottom: 70px;
	background: #f9f9f9;
	overflow: hidden;
}

.categories__item__list {
	margin-right: -16px;
}

.categories__item {
	width: calc(20% - 16px);
	float: left;
	text-align: center;
	margin-right: 16px;
	-webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	padding-top: 40px;
	padding-bottom: 15px;
	margin-bottom: 30px;
	border-radius: 5px;
	background: #ffffff;
}

.categories__item h5 {
	color: #323232;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 4px;
}

.categories__item span {
	font-size: 14px;
	color: #707070;
	display: block;
	font-weight: 600;
}

/*---------------------
  Blog
-----------------------*/

.blog__item {
	margin-bottom: 30px;
	-webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}

.blog__item__pic {
	height: 210px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.blog__item__pic .play-btn {
	height: 50px;
	width: 50px;
	background: #1373ef;
	border-radius: 50%;
	line-height: 50px;
	text-align: center;
	font-size: 22px;
	display: inline-block;
	color: #ffffff;
}

.blog__item__text {
	padding: 20px 30px 25px;
}

.blog__item__text .blog__item__tags {
	margin-bottom: 5px;
}

.blog__item__text .blog__item__tags li {
	list-style: none;
	display: inline-block;
	font-weight: 700;
	text-transform: uppercase;
	margin-right: 15px;
	color: #1373ef;
	position: relative;
	font-size: 12px;
}

.blog__item__text .blog__item__tags li:after {
	position: absolute;
	right: -12px;
	top: 6px;
	height: 4px;
	width: 4px;
	background: #1373ef;
	border-radius: 50%;
	content: "";
}

.blog__item__text .blog__item__tags li:last-child {
	margin-right: 0;
}

.blog__item__text .blog__item__tags li:last-child:after {
	display: none;
}

.blog__item__text .blog__item__tags li i {
	color: #707070;
	margin-right: 5px;
}

.blog__item__text h5,
.blog__item__text h3 {
	margin-bottom: 10px;
}

.blog__item__text h5 a,
.blog__item__text h3 a {
	font-size: 20px;
	color: #323232;
	font-weight: 700;
	line-height: 30px;
}

.blog__item__text .blog__item__widget li {
	list-style: none;
	display: inline-block;
	font-size: 15px;
	color: #a8a8a8;
	margin-right: 30px;
}

.blog__item__text .blog__item__widget li:last-child {
	margin-right: 0;
}

.blog__item__text .blog__item__widget li i {
	margin-right: 5px;
}

.news-post {
	padding-top: 0px;
	padding-bottom: 70px;
}

.blog__item__large {
	-webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	border-radius: 5px;
	background: #ffffff;
}

.blog__item__large .blog__item__pic {
	height: 390px;
	border-radius: 5px 5px 0 0;
}

.blog__item__large .blog__item__text {
	padding: 25px 30px 40px;
}

.blog__item__large .blog__item__text .blog__item__tags {
	margin-bottom: 10px;
}

.blog__item__large .blog__item__text .blog__item__tags li {
	font-size: 14px;
}

.blog__item__large .blog__item__text h3 a {
	font-size: 30px;
}

.blog__item__large .blog__item__text .blog__item__widget {
	margin-bottom: 25px;
}

.blog__item__large .blog__item__text p {
	margin-bottom: 0;
}

.blog__pagination {
	margin-top: 20px;
}

.blog__pagination a {
	font-size: 15px;
	color: #707070;
	display: inline-block;
	padding: 12px 20px 10px;
	border: 1px solid #e4e4e4;
	margin-right: -5px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__pagination a:hover {
	background: #1373ef;
	color: #ffffff;
	border-color: #1373ef;
}

/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar__search {
	margin-bottom: 50px;
}

.blog__sidebar__search form {
	position: relative;
}

.blog__sidebar__search form input {
	width: 100%;
	height: 43px;
	border-radius: 2px;
	font-size: 15px;
	color: #a8a8a8;
	padding-left: 20px;
	border: 1px solid #e1e1e1;
}

.blog__sidebar__search form input::-webkit-input-placeholder {
	color: #a8a8a8;
}

.blog__sidebar__search form input::-moz-placeholder {
	color: #a8a8a8;
}

.blog__sidebar__search form input:-ms-input-placeholder {
	color: #a8a8a8;
}

.blog__sidebar__search form input::-ms-input-placeholder {
	color: #a8a8a8;
}

.blog__sidebar__search form input::placeholder {
	color: #a8a8a8;
}

.blog__sidebar__search form button {
	font-size: 15px;
	color: #323232;
	background: transparent;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	padding: 0 15px;
}

.blog__sidebar__recent {
	-webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	background: #ffffff;
	padding: 30px 30px 10px 30px;
	margin-bottom: 50px;
}

.blog__sidebar__recent h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 600;
	margin-bottom: 22px;
}

.blog__sidebar__recent__item {
	display: block;
	margin-bottom: 20px;
}

.blog__sidebar__recent__item__pic {
	float: left;
	margin-right: 15px;
}

.blog__sidebar__recent__item__pic img {
	border-radius: 2px;
}

.blog__sidebar__recent__item__text {
	overflow: hidden;
}

.blog__sidebar__recent__item__text span {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 700;
	color: #1373ef;
	margin-bottom: 10px;
}

.blog__sidebar__recent__item__text span i {
	font-size: 14px;
	color: #707070;
	margin-right: 2px;
}

.blog__sidebar__recent__item__text h6 {
	font-size: 15px;
	color: #323232;
	font-weight: 600;
	margin-bottom: 5px;
}

.blog__sidebar__recent__item__text p {
	font-size: 15px;
	color: #a8a8a8;
	margin-bottom: 0;
}

.blog__sidebar__recent__item__text p i {
	margin-right: 2px;
}

.blog__sidebar__categories {
	background: #ffffff;
	border-radius: 5px;
	-webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	padding: 30px 30px 20px 30px;
	margin-bottom: 50px;
}

.blog__sidebar__categories h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 600;
	margin-bottom: 22px;
}

.blog__sidebar__categories ul li {
	list-style: none;
}

.blog__sidebar__categories ul li a {
	font-size: 15px;
	color: #323232;
	line-height: 36px;
}

.blog__sidebar__categories ul li a span {
	font-weight: 600;
	float: right;
}

.blog__sidebar__tags {
	padding: 30px 30px 20px 30px;
	background: #ffffff;
	-webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}

.blog__sidebar__tags h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 600;
	margin-bottom: 22px;
}

.blog__sidebar__tags a {
	font-size: 11px;
	color: #a8a8a8;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	padding: 6px 15px 3px;
	background: #f2f2f2;
	border-radius: 2px;
	margin-right: 6px;
	margin-bottom: 10px;
}

/*---------------------
  Blog Details Hero
-----------------------*/

.blog-details-hero {
	padding-top: 170px;
	padding-bottom: 30px;
}

.blog__hero__text .label {
	font-size: 13px;
	color: #ffffff;
	background: #1373ef;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
	padding: 4px 15px 4px;
	border-radius: 2px;
}

.blog__hero__text h2 {
	font-size: 42px;
	color: #ffffff;
	font-weight: 700;
	line-height: 50px;
	margin-top: 25px;
	margin-bottom: 15px;
}

.blog__hero__text ul li {
	list-style: none;
	display: inline-block;
	font-size: 15px;
	color: #a8a8a8;
	margin-right: 30px;
}

.blog__hero__text ul li:last-child {
	margin-right: 0;
}

.blog__hero__text ul li i {
	margin-right: 5px;
}

.blog-details {
	overflow: hidden;
}

.blog__details__text {
	margin-bottom: 70px;
}

.blog__details__text p {
	line-height: 27px;
}

.blog__details__text h5 {
	font-size: 20px;
	font-weight: 600;
	color: #323232;
	margin-top: 32px;
	margin-bottom: 12px;
}

.blog__details__text img {
	border-radius: 5px;
	margin-top: 16px;
	margin-bottom: 30px;
}

.blog__details__video {
	height: 400px;
	border-radius: 5px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 30px;
}

.blog__details__video .play-btn {
	height: 60px;
	width: 60px;
	background: #1373ef;
	border-radius: 50%;
	line-height: 60px;
	text-align: center;
	font-size: 22px;
	display: inline-block;
	color: #ffffff;
}

.blog__details__tags {
	margin-bottom: 40px;
}

.blog__details__tags span {
	font-size: 15px;
	color: #323232;
	font-weight: 600;
	display: inline-block;
	margin-right: 18px;
}

.blog__details__tags a {
	font-size: 11px;
	color: #707070;
	font-weight: 600;
	padding: 6px 18px 3px 15px;
	background: #f2f2f2;
	border-radius: 2px;
	margin-right: 6px;
	display: inline-block;
	text-transform: uppercase;
}

.blog__details__share {
	margin-right: -34px;
	overflow: hidden;
	margin-bottom: 40px;
}

.blog__details__share__item {
	display: inline-block;
	background: #37589C;
	border-radius: 2px;
	padding: 10px 10px 8px 16px;
	width: calc(25% - 34px);
	float: left;
	margin-right: 34px;
	margin-bottom: 25px;
}

.blog__details__share__item.twitter {
	background: #54ADF0;
}

.blog__details__share__item.google {
	background: #DC4C39;
}

.blog__details__share__item.linkedin {
	background: #0179B6;
}

.blog__details__share__item i {
	font-size: 18px;
	color: #ffffff;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	padding-right: 15px;
	display: inline-block;
}

.blog__details__share__item span {
	font-size: 15px;
	color: #ffffff;
	font-weight: 600;
	display: inline-block;
	margin-left: 10px;
}

.blog__details__new__post {
	margin-bottom: 35px;
}

.blog__details__new__post__title,
.blog__details__comment__title {
	margin-bottom: 30px;
	text-align: center;
}

.blog__details__new__post__title h4,
.blog__details__comment__title h4 {
	color: #323232;
	font-weight: 700;
}

.blog__details__comment__form form .input-list {
	margin-right: -20px;
}

.blog__details__comment__form form .input-list .input-item {
	width: calc(33.33% - 20px);
	margin-right: 20px;
	float: left;
	margin-bottom: 20px;
}

.blog__details__comment__form form .input-list .input-item p {
	color: #323232;
	margin-bottom: 10px;
}

.blog__details__comment__form form .input-list .input-item input {
	width: 100%;
	height: 46px;
	font-size: 15px;
	color: #323232;
	border-radius: 2px;
	border: 1px solid #e1e1e1;
	padding-left: 20px;
	padding-right: 5px;
}

.blog__details__comment__form form .input-comment {
	margin-bottom: 24px;
}

.blog__details__comment__form form .input-comment p {
	color: #323232;
	margin-bottom: 10px;
}

.blog__details__comment__form form .input-comment textarea {
	width: 100%;
	height: 265px;
	font-size: 15px;
	color: #323232;
	border-radius: 2px;
	border: 1px solid #e1e1e1;
	resize: none;
	padding-left: 20px;
	padding-top: 12px;
	padding-right: 5px;
}

.blog__details__comment__form form button {
	text-transform: none;
	border-radius: 2px;
	font-size: 15px;
	padding: 13px 38px 12px;
}

/*---------------------
  About
-----------------------*/

.about__title h2 {
	font-size: 40px;
	font-weight: 700;
	color: #323232;
	line-height: 54px;
	margin-bottom: 26px;
}

.about__text h5 {
	font-size: 20px;
	color: #323232;
	line-height: 34px;
	margin-bottom: 16px;
}

.about__text p {
	font-size: 20px;
	line-height: 34px;
	margin-bottom: 0;
}

.about__video {
	height: 600px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.about__video .play-btn {
	height: 90px;
	width: 90px;
	background: #1373ef;
	border-radius: 50%;
	line-height: 92px;
	text-align: center;
	font-size: 34px;
	display: inline-block;
	color: #ffffff;
}

/*---------------------
  Team
-----------------------*/

.team {
	padding-bottom: 70px;
}

.team__item {
	text-align: center;
	margin-bottom: 30px;
}

.team__item img {
	border-radius: 2px;
	margin-bottom: 20px;
}

.team__item span {
	font-size: 13px;
	color: #1373ef;
	font-weight: 600;
	display: block;
	text-transform: uppercase;
}

.team__item h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 600;
	margin-top: 5px;
	margin-bottom: 12px;
}

.team__item .team__item__social a {
	display: inline-block;
	height: 38px;
	width: 38px;
	background: #344973;
	line-height: 38px;
	text-align: center;
	border-radius: 50%;
	margin-right: 6px;
}

.team__item .team__item__social a:last-child {
	margin-right: 0;
}

.team__item .team__item__social a.twitter {
	background: #2C83AE;
}

.team__item .team__item__social a.google {
	background: #DD4437;
}

.team__item .team__item__social a i {
	font-size: 15px;
	color: #ffffff;
}

/*---------------------
  Contact
-----------------------*/

.contact__map {
	height: 550px;
	-webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
	margin-bottom: 90px;
	border-radius: 15px;
}

.contact__map iframe {
	width: 100%;
}

.contact__widget__address,
.contact__widget__time {
	margin-bottom: 45px;
}

.contact__widget__address h4,
.contact__widget__time h4 {
	color: #323232;
	font-weight: 700;
	margin-bottom: 18px;
}

.contact__widget__address ul li,
.contact__widget__time ul li {
	list-style: none;
	font-size: 18px;
	color: #323232;
	line-height: 34px;
}

.contact__widget__address ul li i,
.contact__widget__time ul li i {
	color: #a8a8a8;
	margin-right: 5px;
}

.contact__form input {
	width: 100%;
	height: 50px;
	background: #f9f9f9;
	border: 1px solid #e5e5e5;
	border-radius: 2px;
	padding-left: 24px;
	padding-right: 5px;
	font-size: 15px;
	color: #777C81;
	margin-bottom: 20px;
}

.contact__form input::-webkit-input-placeholder {
	color: #777C81;
}

.contact__form input::-moz-placeholder {
	color: #777C81;
}

.contact__form input:-ms-input-placeholder {
	color: #777C81;
}

.contact__form input::-ms-input-placeholder {
	color: #777C81;
}

.contact__form input::placeholder {
	color: #777C81;
}

.contact__form textarea {
	width: 100%;
	height: 110px;
	background: #f9f9f9;
	border: 1px solid #e5e5e5;
	border-radius: 2px;
	padding-left: 24px;
	padding-right: 5px;
	font-size: 15px;
	color: #777C81;
	margin-bottom: 34px;
	padding-top: 14px;
}

.contact__form textarea::-webkit-input-placeholder {
	color: #777C81;
}

.contact__form textarea::-moz-placeholder {
	color: #777C81;
}

.contact__form textarea:-ms-input-placeholder {
	color: #777C81;
}

.contact__form textarea::-ms-input-placeholder {
	color: #777C81;
}

.contact__form textarea::placeholder {
	color: #777C81;
}

.contact__form button {
	font-size: 15px;
	font-weight: 600;
	border-radius: 2px;
	padding: 13px 42px 12px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1400px) and (max-width: 1920px) {
	.header {
		padding: 0 60px;
	}
}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

@media only screen and (max-width: 1366px) {
	.listing {
		width: 100%;
	}
	.listing__map {
		width: 35%;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header__menu ul li {
		margin-right: 26px;
	}
	.listing {
		width: 100%;
	}
	.listing__map {
		width: 40%;
	}
	.listing .listing__list {
		display: block;
		margin-right: 0;
	}
	.listing .listing__list .listing__item {
		max-width: 100%;
	}
	.listing__hero__btns .primary-btn {
		padding: 12px 22px 10px;
	}
	.listing__details__rating__bar__item .barfiller {
		width: 340px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header__menu__right .primary-btn {
		display: none;
	}
	.header__menu ul li {
		margin-right: 25px;
	}
	.hero__search__form form input {
		width: 50%;
	}
	.hero__search__form form .select__option {
		width: 50%;
	}
	.hero__search__form form button {
		width: 50%;
	}
	.categories__item {
		width: calc(33.33% - 16px);
	}
	.most__search__tab .nav-tabs .nav-item {
		margin-right: 15px;
	}
	.listing {
		width: 100%;
	}
	.listing__map {
		width: 40%;
	}
	.listing .listing__list {
		display: block;
		margin-right: 0;
	}
	.listing .listing__list .listing__item {
		max-width: 100%;
	}
	.listing__item__text {
		padding-left: 15px;
		padding-right: 15px;
	}
	.listing__hero__btns {
		text-align: left;
		padding-top: 30px;
	}
	.filter {
		width: 240px;
	}
	.ov-hid {
		overflow: hidden;
		padding-left: 240px;
	}
	.listing__details__rating__bar__item .barfiller {
		width: 425px;
	}
	.listing__sidebar {
		padding-top: 50px;
	}
	.blog__sidebar {
		padding-top: 50px;
	}
	.listing__text__top__left {
		float: none;
		text-align: center;
		margin-bottom: 10px;
	}
	.listing__text__top__right {
		float: none;
		text-align: center;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.header .container-fluid {
		position: relative;
	}
	.header__menu {
		display: none;
	}
	.header__nav {
		text-align: right;
		padding: 30px 0;
		display: none;
	}
	.slicknav_menu {
		background: transparent;
		padding: 0;
		display: block;
	}
	.header__menu__right {
		display: none;
	}
	.slicknav_nav {
		background: #ffffff;
		border-radius: 12px;
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
		margin-top: 10px;
		padding: 10px 0;
		border: 1px solid #e5e5e5;
	}
	.slicknav_nav ul {
		margin: 0;
		padding: 0;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 14px 25px;
		margin: 0;
		color: #2c3e50;
		font-size: 15px;
		font-weight: 500;
		border-bottom: 1px solid #f0f0f0;
		transition: all 0.3s ease;
	}
	.slicknav_nav .slicknav_row:last-child,
	.slicknav_nav a:last-child {
		border-bottom: none;
	}
	.slicknav_nav a:hover,
	.slicknav_nav a:focus {
		border-radius: 0;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: #ffffff;
		padding-left: 30px;
	}
	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: #ffffff;
		padding-left: 30px;
	}
	/* Mobil menüde Paket Karşılaştır butonu */
	.slicknav_nav .mobile-compare-btn {
		background: linear-gradient(135deg, #1373ef 0%, #0d5bb8 100%) !important;
		color: #ffffff !important;
		font-weight: 700 !important;
		margin: 10px 15px !important;
		border-radius: 10px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 8px !important;
		padding: 14px 20px !important;
		box-shadow: 0 4px 15px rgba(19, 115, 239, 0.3) !important;
		transition: all 0.3s ease !important;
	}
	.slicknav_nav .mobile-compare-btn:hover {
		background: linear-gradient(135deg, #0d5bb8 0%, #0a4788 100%) !important;
		transform: translateY(-2px) !important;
		box-shadow: 0 6px 20px rgba(19, 115, 239, 0.4) !important;
		color: #ffffff !important;
		padding-left: 20px !important;
	}
	.slicknav_nav .mobile-compare-btn i {
		font-size: 16px;
	}
	.slicknav_nav .mobile-compare-link {
		border-bottom: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	.slicknav_nav .mobile-compare-link .slicknav_row,
	.slicknav_nav .mobile-compare-link a {
		border-bottom: none !important;
	}
	.compare-count-badge {
		background: #ff4444;
		color: white;
		border-radius: 50%;
		width: 20px;
		height: 20px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 11px;
		font-weight: 700;
		margin-left: 5px;
		line-height: 1;
	}
	
	/* Desktop'ta mobil compare link'i gizle */
	.header__menu ul li.mobile-compare-link {
		display: none;
	}
	.slicknav_btn {
		margin: 0;
		border-radius: 12px;
		background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		position: absolute;
		right: 15px;
		top: 35px;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
		transition: all 0.3s ease;
		border: none;
		padding: 0;
	}
	
	/* Menü metnini gizle */
	.slicknav_menu .slicknav_menutxt {
		display: none !important;
	}
	.slicknav_btn:hover {
		transform: scale(1.05);
		box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
	}
	.slicknav_btn .slicknav_icon {
		margin: 0;
		width: 24px;
		height: 24px;
	}
	.slicknav_btn .slicknav_icon-bar {
		background: #ffffff;
		width: 24px;
		height: 3px;
		border-radius: 2px;
		margin: 4px 0;
		transition: all 0.3s ease;
	}
	.slicknav_btn.slicknav_open .slicknav_icon-bar:nth-child(1) {
		transform: rotate(45deg) translate(7px, 7px);
	}
	.slicknav_btn.slicknav_open .slicknav_icon-bar:nth-child(2) {
		opacity: 0;
	}
	.slicknav_btn.slicknav_open .slicknav_icon-bar:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -7px);
	}
	.slicknav_menu .slicknav_menutxt {
		display: none !important;
		width: 0 !important;
		height: 0 !important;
		overflow: hidden !important;
		text-indent: -9999px !important;
	}
	
	/* Hero section mobil padding */
	.hero {
		padding-top: 180px;
		padding-bottom: 40px;
	}
	
	.hero__text .section-title h2 {
		font-size: 28px;
		line-height: 1.3;
		margin-bottom: 15px;
	}
	
	.hero__text .section-title p {
		font-size: 14px;
		line-height: 1.6;
	}
	
	.hero__search__form {
		margin-top: 25px;
		margin-bottom: 20px;
		padding: 0;
	}
	
	.hero .container {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.hero__search__form form input {
		width: 100%;
	}
	.hero__search__form form .select__option {
		width: 100%;
	}
	.hero__search__form form button {
		width: 100%;
	}
	.categories__item {
		width: calc(50% - 16px);
	}
	.most__search__tab .nav-tabs .nav-item {
		margin-right: 5px;
		margin-bottom: 10px;
	}
	.newslatter__text {
		margin-bottom: 30px;
	}
	.ov-hid {
		overflow: visible;
		padding-left: 0;
	}
	.filter {
		position: relative;
		width: auto;
		height: auto;
		padding: 30px 34px 30px 30px;
		overflow-y: auto;
		padding-top: 140px;
	}
	.listing {
		width: 100%;
		height: auto;
		padding-top: 45px;
	}
	.listing .listing__list {
		display: block;
		margin-right: 0;
	}
	.listing .listing__list .listing__item {
		max-width: 100%;
	}
	.listing__map {
		height: 100%;
		width: 100%;
		margin-top: 40px;
		float: left;
	}
	.listing__hero__btns {
		text-align: left;
		padding-top: 30px;
	}
	.listing__sidebar {
		padding-top: 50px;
	}
	.blog__sidebar {
		padding-top: 50px;
	}
	.listing__details__rating__bar__item .barfiller {
		width: 180px;
	}
	.blog__details__share__item {
		width: calc(33.33% - 34px);
	}
	.blog__details__comment__form form .input-list .input-item {
		width: 100%;
		margin-right: 0;
	}
	.about__title {
		margin-bottom: 30px;
	}
	.testimonial__slider.owl-carousel .owl-nav {
		text-align: center;
	}
	.testimonial__slider.owl-carousel .owl-nav button {
		position: relative;
		top: 20px;
		left: 0;
		margin-right: 10px;
	}
	.testimonial__slider.owl-carousel .owl-nav button:last-child {
		margin-right: 0;
	}
	.footer__copyright {
		text-align: center;
	}
	.footer__copyright__text {
		float: none;
		margin-bottom: 10px;
	}
	.footer__copyright__links {
		float: none;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.header__logo {
		padding: 38px 0 30px;
		max-width: 140px;
	}
	.categories__item__list {
		margin-right: 0;
	}
	.categories__item {
		width: 100%;
		margin-right: 0;
	}
	.hero__search__form form .select__option:before {
		display: none;
	}
	.listing__hero__icon {
		float: none;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.listing__hero__btns .primary-btn {
		padding: 12px 20px 10px;
	}
	.listing__details__rating__overall {
		text-align: left;
		float: none;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.blog__hero__text h2 {
		font-size: 30px;
		line-height: normal;
	}
	.blog__details__share__item {
		width: calc(50% - 34px);
	}
	.listing__text__top__left {
		float: none;
		text-align: center;
		margin-bottom: 10px;
	}
	.listing__text__top__right {
		float: none;
		text-align: center;
	}
	.listing__details__comment__item__pic {
		float: none;
		margin-bottom: 15px;
	}
	.blog__details__tags a {
		margin-bottom: 5px;
	}
}
/* ===========================
   Modern Search and Filter Styles
   =========================== */

/* Search Input Wrapper with Icon */
.search-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.search-input-wrapper .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #1373ef;
    font-size: 18px;
    z-index: 1;
    pointer-events: none;
}

.hero__search__form input[type="text"] {
    padding-left: 45px !important;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.hero__search__form input[type="text"]:focus {
    border-color: #1373ef;
    box-shadow: 0 0 0 3px rgba(19, 115, 239, 0.1);
    outline: none;
}

/* Select Option with Icons */
.select__option {
    position: relative;
}

.select__option .select-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #1373ef;
    font-size: 16px;
    z-index: 10;
    pointer-events: none;
}

.select__option select {
    padding-left: 45px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231373ef" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpolyline points="6 9 12 15 18 9"%3e%3c/polyline%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.select__option select:focus {
    border-color: #1373ef;
    box-shadow: 0 0 0 3px rgba(19, 115, 239, 0.1);
    outline: none;
}

/* Select2 Modern Styling */
.select2-container--default .select2-selection--single {
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    height: 50px;
    padding-left: 40px;
    transition: all 0.3s ease;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #1373ef;
    box-shadow: 0 0 0 3px rgba(19, 115, 239, 0.1);
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px;
    color: #333;
    padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    right: 10px;
}

/* Eski Select2 kuralı - Yeni kural üstte */

.select2-results__option {
    padding: 12px 15px;
    transition: all 0.2s ease;
}

.select2-results__option--highlighted {
    background-color: #1373ef !important;
    color: white !important;
}

/* Modern Button Styling */
.hero__search__form button[type="submit"] {
    background: linear-gradient(135deg, #007bff 0%, #667eea 100%);
    border: none;
    color: white;
    padding: 10px 10px 10px 10px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    cursor: pointer;
    letter-spacing: 1px;
}

.hero__search__form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.hero__search__form button[type="submit"] i {
    margin-right: 8px;
}

/* Responsive Modern Cards */
@media (max-width: 768px) {
    .categories__item__list {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
        gap: 15px !important;
    }
    
    .modern-card {
        padding: 20px 15px !important;
    }
}

/* Animation for Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.categories__item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.categories__item:nth-child(1) { animation-delay: 0.1s; }
.categories__item:nth-child(2) { animation-delay: 0.2s; }
.categories__item:nth-child(3) { animation-delay: 0.3s; }
.categories__item:nth-child(4) { animation-delay: 0.4s; }
.categories__item:nth-child(5) { animation-delay: 0.5s; }
.categories__item:nth-child(6) { animation-delay: 0.6s; }

/* ===========================
   Hero Categories Tags Modern Style
   =========================== */

.hero__categories__tags {
    margin-top: 20px;
}

.modern-tag-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-tag-btn img {
    transition: transform 0.3s ease;
}

.modern-tag-btn:hover img {
    transform: rotate(5deg) scale(1.1);
}

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

@media (max-width: 991px) {
    .hero__search__form {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero__search__form input,
    .hero__search__form .select__option,
    .hero__search__form button {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .select__option .select-icon {
        left: 12px;
    }
    
    .search-input-wrapper .search-icon {
        left: 12px;
    }
    
    .hero__categories__tags {
        gap: 8px !important;
        padding: 0 10px;
    }
    
    .modern-tag-btn {
        font-size: 13px !important;
        padding: 8px 16px !important;
    }
}

@media (max-width: 576px) {
    .hero__categories__tags {
        flex-direction: column;
        align-items: stretch;
    }
    
    .modern-tag-btn {
        justify-content: center;
        width: 100%;
    }
    
    .categories__item__list {
        grid-template-columns: 1fr !important;
        padding: 10px !important;
    }
}

/* ===========================
   Section Title Enhancement
   =========================== */

.section-title h2 {
    position: relative;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* ===========================
   Smooth Scrolling
   =========================== */

html {
    scroll-behavior: smooth;
}

/* ===========================
   Loading State for Select2
   =========================== */

.select2-container--default .select2-results__option[aria-disabled=true] {
    display: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 14px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #1373ef;
    outline: none;
}

/* ===========================
   Select2 Özel Stiller
   =========================== */

/* Select2 Container */
.select2-container--default .select2-selection--single {
    height: 50px;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #1373ef;
    box-shadow: 0 0 0 3px rgba(19, 115, 239, 0.1);
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px;
    padding-left: 0;
    color: #333;
    font-size: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    right: 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #1373ef transparent transparent transparent;
    border-width: 6px 5px 0 5px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #1373ef transparent;
    border-width: 0 5px 6px 5px;
}

/* Eski Select2 kuralı - Yeni kural üstte */

.select2-search--dropdown {
    padding: 12px;
    background: #f8f9fa;
}

.select2-search--dropdown .select2-search__field {
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #1373ef;
    outline: none;
    box-shadow: 0 0 0 3px rgba(19, 115, 239, 0.1);
}

/* Results */
.select2-results__options {
    max-height: 300px;
}

.select2-results__option {
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.select2-results__option--highlighted {
    background-color: #1373ef !important;
    color: white !important;
}

.select2-results__option--highlighted strong {
    color: white !important;
}

.select2-results__option[aria-selected=true] {
    background-color: #e3f2fd;
    color: #1373ef;
}

/* Loading State */
.select2-results__option--loading {
    padding: 15px;
    text-align: center;
    color: #999;
}

/* No Results */
.select2-results__message {
    padding: 15px;
    text-align: center;
    color: #999;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .select2-dropdown {
        width: 100% !important;
    }
}

/* ===========================
   Hero Search Form Modern Layout
   =========================== */

.hero__search__form form {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero__search__form input[type="text"] {
    transition: all 0.3s ease;
}

.hero__search__form input[type="text"]:focus {
    border-color: #1373ef !important;
    box-shadow: 0 0 0 3px rgba(19, 115, 239, 0.1) !important;
    outline: none !important;
}

/* Select2 için özel stiller - Hero Search Form */
.hero__search__form .select2-container {
    z-index: 1000;
}

.hero__search__form .select2-container--default .select2-selection--single {
    height: 50px !important;
    border: 2px solid #e5e5e5 !important;
    border-radius: 5px !important;
    padding: 8px 12px !important;
}

.hero__search__form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px !important;
    padding-left: 5px !important;
}

/* Responsive Hero Search Form */
@media (max-width: 1200px) {
    .hero__search__form form {
        gap: 12px !important;
    }
    
    .hero__search__form input[type="text"] {
        min-width: 200px !important;
    }
    
    .hero__search__form .select__option {
        min-width: 180px !important;
    }
}

@media (max-width: 991px) {
    .hero__search__form form {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }
    
    .hero__search__form input[type="text"],
    .hero__search__form .select__option,
    .hero__search__form button {
        width: 100% !important;
        min-width: 100% !important;
        flex: 1 1 100% !important;
    }
    
    .hero__search__form button {
        margin-top: 5px !important;
    }
}

@media (max-width: 576px) {
    .hero__search__form {
        padding: 0 15px;
    }
    
    .hero__search__form input[type="text"] {
        font-size: 13px !important;
        padding: 10px 15px !important;
    }
    
    .hero__search__form button {
        font-size: 14px !important;
        padding: 12px 20px !important;
    }
}

/* Select2 Container Z-Index Fix */
.select2-container--open {
    z-index: 9999999 !important;
}

/* ===========================
   Modern Search Form - Yeni Düzen
   =========================== */

.modern-search-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.search-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Search Input */
.search-input-container {
    width: 100%;
}

.search-input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 2px solid #e5e5e5;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    border-color: #1373ef;
    box-shadow: 0 0 0 3px rgba(19, 115, 239, 0.1);
    outline: none;
}

/* Select Containers */
.select-container {
    width: 100%;
}

.select-container .select2-container {
    width: 100% !important;
}

.select-container .select2-container--default .select2-selection--single {
    height: 50px !important;
    border: 2px solid #e5e5e5 !important;
    border-radius: 25px !important;
    padding: 0 15px !important;
    background: white !important;
    transition: all 0.3s ease !important;
}

.select-container .select2-container--default .select2-selection--single:hover {
    border-color: #1373ef !important;
}

.select-container .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px !important;
    padding-left: 5px !important;
    color: #333 !important;
    font-size: 14px !important;
}

.select-container .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 15px !important;
}

/* Search Button */
.button-container {
    width: 100%;
}

.search-button {
    width: 100%;
    height: 50px;
    padding: 0 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.search-button:active {
    transform: translateY(0);
}

.search-button i {
    margin-right: 8px;
}

/* Responsive Grid Layout */
@media (max-width: 1200px) {
    .search-grid {
        grid-template-columns: 1.5fr 1fr 1fr auto;
        gap: 10px;
        padding: 12px;
    }
    
    .search-button {
        padding: 0 25px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .search-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 20px;
        border-radius: 25px;
    }
    
    .search-input-container {
        grid-column: 1 / -1;
    }
    
    .button-container {
        grid-column: 1 / -1;
    }
    
    .search-button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .search-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
        border-radius: 20px;
    }
    
    .select-container,
    .search-input-container,
    .button-container {
        grid-column: 1;
    }
    
    .search-input,
    .search-button {
        height: 48px;
        font-size: 13px;
    }
}

/* Hero Categories Tags Modern */
.hero__categories__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
    padding: 0;
    list-style: none;
}

.hero__categories__tags li {
    margin: 0;
}

.hero__categories__tags li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero__categories__tags li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(19, 115, 239, 0.25);
    border-color: #1373ef;
}

.hero__categories__tags li a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Select2 Dropdown için özel stiller */
.select2-container--default .select2-results__option {
    padding: 12px 15px;
    font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #1373ef !important;
    color: white !important;
}

.select2-dropdown {
    border: 2px solid #1373ef !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

.select2-search--dropdown {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 15px 15px 0 0;
}

.select2-search--dropdown .select2-search__field {
    border: 2px solid #e5e5e5;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 14px;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #1373ef;
    outline: none;
}

/* ===========================
   Hero Search Form Override - Eski Stilleri Temizle
   =========================== */

.hero__search__form {
    margin-top: 35px;
}

/* Eski nice-select stillerini temizle */
.hero__search__form .nice-select {
    display: none !important;
}

/* Grid Layout için max-width */
.search-grid {
    max-width: 100%;
}

/* Select2 container'ı grid içinde düzgün hizala */
.select-container .select2-container--default.select2-container--focus .select2-selection--single,
.select-container .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #667eea !important;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1) !important;
}

/* Placeholder rengi */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999 !important;
}

/* Search input focus rengi */
.search-input:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

/* Z-index düzenlemeleri */
.select2-container {
    z-index: 100 !important;
}

.select2-dropdown {
    z-index: 9999 !important;
}

/* Mobil uyumluluk iyileştirmeleri */
@media (max-width: 767px) {
    .hero__search__form {
        padding: 0 10px;
    }
    
    .search-grid {
        gap: 10px;
        padding: 12px;
    }
}

/* Tablet optimizasyonu */
@media (min-width: 768px) and (max-width: 991px) {
    .search-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .search-input-container {
        grid-column: 1 / -1;
    }
}

/* Desktop optimizasyonu */
@media (min-width: 1400px) {
    .modern-search-form {
        max-width: 1300px;
    }
    
    .search-grid {
        padding: 18px;
        gap: 15px;
    }
}

/* Hover states için smooth animasyonlar */
.search-input,
.select-container .select2-container--default .select2-selection--single,
.search-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states için glow efekti */
.search-input:focus,
.select-container .select2-container--default.select2-container--focus .select2-selection--single {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15), 0 10px 30px rgba(102, 126, 234, 0.1) !important;
}

/* ===========================
   Modern Search Form - Düzeltilmiş Düzen
   =========================== */

.search-grid {
    display: grid;
    grid-template-columns: 3fr 1.2fr 1.2fr 1fr;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Search Button - Daha geniş */
.search-button {
    width: 100%;
    min-width: 140px;
    height: 50px;
    padding: 0 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Hero Categories Tags - Text renkleri düzeltildi */
.hero__categories__tags li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero__categories__tags li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(19, 115, 239, 0.3);
    border-color: #1373ef;
    background: white;
    color: #1373ef;
}

/* Responsive Grid Layout - Düzeltilmiş */
@media (max-width: 1200px) {
    .search-grid {
        grid-template-columns: 2.5fr 1fr 1fr auto;
        gap: 10px;
        padding: 12px;
    }
    
    .search-button {
        min-width: 120px;
        font-size: 13px;
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .search-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 20px;
        border-radius: 25px;
    }
    
    .search-input-container {
        grid-column: 1 / -1;
    }
    
    .button-container {
        grid-column: 1 / -1;
    }
    
    .search-button {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .search-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
        border-radius: 20px;
    }
    
    .select-container,
    .search-input-container,
    .button-container {
        grid-column: 1;
    }
}

/* Desktop optimizasyonu - Daha geniş ekranlar için */
@media (min-width: 1400px) {
    .search-grid {
        grid-template-columns: 3.5fr 1.2fr 1.2fr 1fr;
        padding: 18px;
        gap: 15px;
    }
    
    .search-button {
        min-width: 160px;
        font-size: 15px;
    }
}

/* ===========================
   Hero Categories Tags - İyileştirilmiş Renkler
   =========================== */

.hero__categories__tags {
    margin-top: 0px !important;
}

.tag-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 24px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
}

.tag-link span {
    color: #2c3e50 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.tag-link:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(19, 115, 239, 0.3) !important;
    border-color: #1373ef !important;
    background: white !important;
}

.tag-link:hover span {
    color: #1373ef !important;
}

.tag-link-all {
    background: linear-gradient(135deg, #007bff 0%, #667eea 100%) !important;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4) !important;
    border: 2px solid transparent !important;
}

.tag-link-all:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5) !important;
}

.tag-link-all span {
    color: white !important;
    font-weight: 700 !important;
}

/* Tag image düzenlemeleri */
.tag-link img {
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.tag-link:hover img {
    filter: brightness(1);
    transform: scale(1.1) rotate(5deg);
}

/* Responsive tag düzenlemeleri */
@media (max-width: 767px) {
    .hero__categories__tags {
        gap: 8px !important;
        padding: 0 10px;
    }
    
    .tag-link {
        font-size: 13px !important;
        padding: 10px 18px !important;
    }
    
    .tag-link span {
        font-size: 13px !important;
    }
}

/* ===========================
   HERO SEARCH FORM - Temiz Implementasyon
   =========================== */

/* Nice-select'i gizle */
.hero__search__form .nice-select {
    display: none !important;
}

/* Overflow düzeltmesi */
.hero,
.hero .container,
.hero .row,
.hero .col-lg-12,
.hero__text {
    overflow: visible !important;
}

/* Form Wrapper */
.search-form-wrapper {
    display: grid;
    grid-template-columns: 3fr 1.3fr 1.3fr 1fr;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    position: relative;
    z-index: 1;
}

/* Arama Input */
.form-search-input {
    width: 100%;
    height: 52px;
    padding: 0 25px;
    border: 2px solid #e5e5e5;
    border-radius: 26px;
    font-size: 15px;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-search-input::placeholder {
    color: #999;
}

/* Select Boxes */
.form-select {
    width: 100%;
    height: 52px;
    padding: 0 20px;
    border: 2px solid #e5e5e5;
    border-radius: 26px;
    font-size: 14px;
    color: #333;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.form-select:hover {
    border-color: #667eea;
}

.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Select2 Container */
.hero__search__form .select2-container {
    width: 100% !important;
}

.hero__search__form .select2-container--default .select2-selection--single {
    height: 52px !important;
    border: 2px solid #e5e5e5 !important;
    border-radius: 26px !important;
    padding: 0 20px !important;
    background: white !important;
    transition: all 0.3s ease !important;
}

.hero__search__form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px !important;
    padding-left: 5px !important;
    color: #333 !important;
    font-size: 14px !important;
}

.hero__search__form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    right: 15px !important;
}

.hero__search__form .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

/* Search Button */
.form-search-btn {
    width: 100%;
    min-width: 150px;
    height: 52px;
    padding: 0 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 26px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    white-space: nowrap;
}

.form-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.form-search-btn:active {
    transform: translateY(0);
}

.form-search-btn i {
    margin-right: 8px;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .search-form-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 18px;
        border-radius: 30px;
    }
    
    .form-search-input {
        grid-column: 1 / -1;
    }
    
    .form-search-btn {
        grid-column: 1 / -1;
        min-width: 100%;
    }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
    .search-form-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px 20px;
        border-radius: 20px;
        margin: 0 15px;
        width: calc(100% - 30px);
    }
    
    .form-search-input,
    .form-select,
    .form-search-btn {
        grid-column: 1;
        height: 50px;
        font-size: 15px;
        border-radius: 15px;
    }
    
    .form-search-input,
    .form-select {
        padding: 0 20px;
    }
    
    .form-search-btn {
        padding: 0 25px;
    }
    
    .hero__search__form .select2-container--default .select2-selection--single {
        height: 50px !important;
        border-radius: 15px !important;
        padding: 0 !important;
    }
    
    .hero__search__form .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 50px !important;
        padding-left: 20px !important;
        padding-right: 40px !important;
        font-size: 15px !important;
        color: #333 !important;
    }
    
    .hero__search__form .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 50px !important;
        right: 18px !important;
    }
    
    .hero__search__form .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border-color: #667eea transparent transparent transparent !important;
        border-width: 6px 5px 0 5px !important;
        margin-top: -3px !important;
    }
}

/* Desktop Large */
@media (min-width: 1400px) {
    .search-form-wrapper {
        max-width: 1300px;
        grid-template-columns: 3.5fr 1.3fr 1.3fr 1fr;
        gap: 15px;
        padding: 18px 25px;
    }
    
    .form-search-btn {
        min-width: 170px;
        font-size: 15px;
    }
}

/* ===========================
   Select2 Dropdown Stilleri
   =========================== */

.select2-dropdown {
    border: 2px solid #667eea !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    z-index: 999999 !important;
    background: white !important;
}

.select2-search--dropdown {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 15px 15px 0 0;
}

.select2-search--dropdown .select2-search__field {
    border: 2px solid #e5e5e5;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 14px;
    width: 100%;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.select2-results__option {
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.select2-results__option--highlighted[aria-selected] {
    background-color: #667eea !important;
    color: white !important;
}

.select2-container--default .select2-results__option--highlighted strong {
    color: white !important;
}

/* ===========================
   FEATURED COMPANIES - Modern Tasarım
   =========================== */

/* Grid Layout */
.featured-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Company Card Link */
.company-card-link {
    text-decoration: none;
    display: block;
}

/* Company Card */
.company-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    overflow: hidden;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.company-card:hover::before {
    transform: scaleX(1);
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

/* Badge */
.company-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2c3e50;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.company-badge i {
    margin-right: 4px;
    color: #ff9800;
}

/* Logo Wrapper */
.company-logo-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.company-card:hover .company-logo-wrapper {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.company-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.95);
    transition: filter 0.3s ease;
}

.company-card:hover .company-logo {
    filter: brightness(1);
}

/* Company Info */
.company-info {
    margin-top: 20px;
}

.company-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.company-card:hover .company-name {
    color: #667eea;
}

/* Company Stats */
.company-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.company-card:hover .stat-item {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.stat-item i {
    font-size: 16px;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Button */
.company-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid #667eea;
    border-radius: 25px;
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.company-card:hover .company-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: translateX(5px);
}

.company-cta i {
    transition: transform 0.3s ease;
}

.company-card:hover .company-cta i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .featured-companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .featured-companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .company-card {
        padding: 25px 20px;
    }
    
    .company-logo-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .company-name {
        font-size: 18px;
        min-height: 40px;
    }
    
    .stat-number {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .featured-companies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-card {
        max-width: 100%;
    }
}

/* Section Title Enhancements */
.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

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

.company-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.company-card:nth-child(1) { animation-delay: 0.1s; }
.company-card:nth-child(2) { animation-delay: 0.2s; }
.company-card:nth-child(3) { animation-delay: 0.3s; }
.company-card:nth-child(4) { animation-delay: 0.4s; }
.company-card:nth-child(5) { animation-delay: 0.5s; }
.company-card:nth-child(6) { animation-delay: 0.6s; }

/* ===========================
   FEATURED PACKAGES - Modern Tasarım
   =========================== */

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Package Card Link */
.package-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.package-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Package Card */
.package-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

/* Karşılaştırma Butonu - Paket Kartlarında */
.package-compare-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid #e0e0e0;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.package-compare-btn:hover {
    background: #1373ef;
    border-color: #1373ef;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(19, 115, 239, 0.3);
}

.package-compare-btn.added {
    background: #28a745;
    border-color: #28a745;
    color: white;
    animation: checkPulse 0.5s ease;
}

@keyframes checkPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.package-compare-btn-detay {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid #e0e0e0;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.package-compare-btn-detay:hover {
    background: #1373ef;
    border-color: #1373ef;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(19, 115, 239, 0.3);
}

.package-compare-btn-detay.added {
    background: #28a745;
    border-color: #28a745;
    color: white;
    animation: checkPulse 0.5s ease;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

/* Package Badge */
.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    z-index: 2;
}

.package-badge i {
    margin-right: 4px;
    animation: pulse 2s infinite;
}

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

/* Package Logo */
.package-logo-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: all 0.3s ease;
}

.package-card:hover .package-logo-wrapper {
    transform: scale(1.05);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.package-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Package Header */
.package-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #e9ecef;
}

.package-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.package-card:hover .package-name {
    color: #667eea;
}

.package-company {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6c757d;
    background: #f8f9fa;
    padding: 6px 14px;
    border-radius: 15px;
}

.package-company i {
    color: #667eea;
}

/* Package Features */
.package-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(5px);
}

.feature-item i {
    font-size: 18px;
    color: #667eea;
    min-width: 20px;
    transition: color 0.3s ease;
}

/* Öne Çıkan Özellikler - Anasayfa Paket Kartları */
.feature-item.one-cikan-features {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 237, 78, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-item.one-cikan-features i {
    color: #ffd700;
    margin-bottom: 8px;
}

.one-cikan-list {
    width: 100%;
}

.one-cikan-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.one-cikan-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.one-cikan-item {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 215, 0, 0.15);
    color: #2c3e50;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.one-cikan-more {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.feature-item:hover i {
    color: white;
}

.feature-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-item:hover .feature-label {
    color: rgba(255, 255, 255, 0.9);
}

.feature-value {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin-left: auto;
}

.feature-item:hover .feature-value {
    color: white;
}

.feature-item.special {
    background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
    color: white;
}

.feature-item.special i {
    color: white;
}

.feature-item.special .feature-value {
    color: white;
    margin-left: 0;
}

/* Package Price */
.package-price {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.package-card:hover .package-price {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 42px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.price-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Package CTA Button */
.package-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid #667eea;
    border-radius: 25px;
    color: #667eea;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.package-cta:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.package-cta i {
    transition: transform 0.3s ease;
}

.package-cta:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }
    
    .package-card {
        padding: 25px 20px;
    }
    
    .package-name {
        font-size: 18px;
        min-height: 45px;
    }
    
    .price-amount {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Animation */
.package-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }
.package-card:nth-child(4) { animation-delay: 0.4s; }
.package-card:nth-child(5) { animation-delay: 0.5s; }
.package-card:nth-child(6) { animation-delay: 0.6s; }

/* ===========================
   MODERN FİRMALAR SAYFASI
   =========================== */

/* Page Header */
.page-header {
    background: white;
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.page-title {
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 8px;
}

.page-title i {
    color: #667eea;
    margin-right: 10px;
}

.page-subtitle {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

/* Quick Filter Form */
.quick-filter-form {
    margin-top: 20px;
}

.filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-input,
.filter-select {
    flex: 1;
    min-width: 150px;
    height: 48px;
    padding: 0 15px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.filter-input:focus,
.filter-select:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23667eea" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpolyline points="6 9 12 15 18 9"%3e%3c/polyline%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.filter-btn {
    height: 48px;
    padding: 0 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    white-space: nowrap;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.filter-btn i {
    margin-right: 6px;
}

/* Firmalar Grid */
.firmalar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* Firma Card */
.firma-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.firma-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.firma-card:hover::before {
    transform: scaleX(1);
}

.firma-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

/* Firma Featured Badge */
.firma-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2c3e50;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    z-index: 2;
}

.firma-featured-badge i {
    color: #ff9800;
    margin-right: 4px;
}

/* Firma Logo Container */
.firma-logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.firma-card:hover .firma-logo-container {
    transform: scale(1.05);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.firma-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Firma Header */
.firma-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px dashed #e9ecef;
    margin-bottom: 20px;
}

.firma-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.firma-card:hover .firma-name {
    color: #667eea;
}

.firma-parent {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6c757d;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 12px;
}

.firma-parent i {
    color: #667eea;
}

/* Firma Details */
.firma-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.detail-item i {
    font-size: 16px;
    color: #667eea;
    min-width: 18px;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.detail-item:hover i {
    color: white;
}

.detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.detail-label {
    font-size: 11px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item:hover .detail-label {
    color: rgba(255, 255, 255, 0.8);
}

.detail-value {
    font-size: 13px;
    color: #2c3e50;
    font-weight: 600;
}

.detail-item:hover .detail-value {
    color: white;
}

.phone-link {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #667eea;
}

.detail-item:hover .phone-link {
    color: white;
}

/* Firma Actions */
.firma-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
    flex: 0 0 auto;
    min-width: 45px;
    width: auto;
}

.action-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.action-btn i {
    margin: 0;
}

.btn-call {
    background: transparent;
    color: #667eea;
    border-color: #667eea;
}

.btn-call:hover {
    background: #667eea;
    color: white;
}

.btn-call:active {
    transform: scale(0.95);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
}

.btn-whatsapp:active {
    transform: scale(0.95);
}

.btn-maps {
    background: transparent;
    color: #ea4335;
    border-color: #ea4335;
}

.btn-maps:hover {
    background: #ea4335;
    color: white;
}

.btn-maps:active {
    transform: scale(0.95);
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-results i {
    font-size: 64px;
    color: #e0e0e0;
    margin-bottom: 20px;
    display: block;
}

.no-results h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.no-results p {
    font-size: 15px;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 991px) {
    .page-header .row {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-row {
        flex-direction: column;
    }
    
    .filter-input,
    .filter-select,
    .filter-btn {
        width: 100%;
        min-width: 100%;
    }
    
    .firmalar-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 20px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .firmalar-grid {
        grid-template-columns: 1fr;
    }
    
    .firma-actions {
        gap: 6px;
    }
    
    .action-btn {
        padding: 8px 12px;
        font-size: 14px;
        min-width: 40px;
    }
}

/* Animation */
.firma-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.firma-card:nth-child(1) { animation-delay: 0.05s; }
.firma-card:nth-child(2) { animation-delay: 0.1s; }
.firma-card:nth-child(3) { animation-delay: 0.15s; }
.firma-card:nth-child(4) { animation-delay: 0.2s; }
.firma-card:nth-child(5) { animation-delay: 0.25s; }
.firma-card:nth-child(6) { animation-delay: 0.3s; }

/* ===========================
   YATAY FİLTRE ÇUBUĞU - Modern Tasarım
   =========================== */

/* Page Header Top */
.page-header-top {
    background: white;
    padding: 25px 35px;
    border-radius: 20px 20px 0 0;
    border-bottom: 3px solid #f0f0f0;
}

.page-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.result-count {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
}

.filter-badge {
    display: inline-block;
    background: #f8f9fa;
    color: #2c3e50;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 8px;
}

/* Horizontal Filter Bar */
.horizontal-filter-bar {
    background: white;
    padding: 25px 35px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.horizontal-filter-form {
    width: 100%;
}

.filter-items {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr auto;
    gap: 20px;
    align-items: end;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 13px;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-label i {
    color: #667eea;
    font-size: 14px;
}

.filter-input-horizontal,
.filter-select-horizontal {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 14px;
    color: #2c3e50;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-input-horizontal:focus,
.filter-select-horizontal:focus {
    background: white;
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-input-horizontal::placeholder {
    color: #999;
}

.filter-select-horizontal {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23667eea" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpolyline points="6 9 12 15 18 9"%3e%3c/polyline%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
    cursor: pointer;
}

/* Filter Button */
.filter-btn-horizontal {
    width: 100%;
    min-width: 140px;
    height: 50px;
    padding: 0 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.filter-btn-horizontal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.filter-btn-horizontal i {
    font-size: 16px;
}

/* Select2 Override for Horizontal Filters */
.horizontal-filter-bar .select2-container--default .select2-selection--single {
    height: 50px !important;
    border: 2px solid #e5e5e5 !important;
    border-radius: 12px !important;
    padding: 0 18px !important;
    background: #f8f9fa !important;
    transition: all 0.3s ease !important;
}

.horizontal-filter-bar .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px !important;
    padding-left: 0 !important;
    color: #2c3e50 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.horizontal-filter-bar .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 15px !important;
}

.horizontal-filter-bar .select2-container--default.select2-container--focus .select2-selection--single {
    background: white !important;
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

/* Responsive Horizontal Filter */
@media (max-width: 1200px) {
    .filter-items {
        grid-template-columns: 2fr 1fr 1fr auto;
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .page-header-top,
    .horizontal-filter-bar {
        padding: 20px 25px;
    }
    
    .filter-items {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .filter-item:first-child {
        grid-column: 1 / -1;
    }
    
    .filter-action {
        grid-column: 1 / -1;
    }
    
    .filter-btn-horizontal {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .page-header-top,
    .horizontal-filter-bar {
        padding: 12px 15px;
        border-radius: 12px;
        margin: 0 10px 20px;
        overflow: visible;
    }
    
    .page-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .page-title {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .filter-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .filter-item {
        width: 100%;
    }
    
    .filter-item:first-child {
        grid-column: 1;
    }
    
    .filter-label {
        font-size: 11px;
        margin-bottom: 6px;
        font-weight: 600;
    }
    
    .filter-input-horizontal,
    .filter-select-horizontal {
        height: 44px;
        font-size: 14px;
        padding: 0 15px;
        width: 100%;
        border-radius: 10px;
    }
    
    .filter-btn-horizontal {
        height: 44px;
        font-size: 14px;
        font-weight: 600;
        width: 100%;
        padding: 0 20px;
        border-radius: 10px;
        margin-top: 5px;
    }
    
    .filter-action {
        grid-column: 1;
        width: 100%;
    }
    
    .filter-badge {
        display: block;
        margin-left: 0;
        margin-top: 5px;
        font-size: 11px;
        padding: 4px 8px;
    }
    
    /* Select2 mobil görünümü - Firmalar sayfası */
    .horizontal-filter-bar .select2-container--default .select2-selection--single {
        height: 44px !important;
        padding: 0 15px !important;
        border-radius: 10px !important;
    }
    
    .horizontal-filter-bar .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 42px !important;
        font-size: 14px !important;
        padding-left: 0 !important;
    }
    
    .horizontal-filter-bar .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 42px !important;
        right: 12px !important;
    }
    
    .horizontal-filter-bar .select2-container {
        width: 100% !important;
    }
    
    /* Select2 dropdown mobil görünümü - body'ye eklendiğinde */
    body > .select2-dropdown {
        z-index: 99999 !important;
        border-radius: 10px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
        max-height: 250px !important;
        overflow-y: auto !important;
    }
    
    /* Horizontal filter bar overflow düzeltmesi */
    .horizontal-filter-bar {
        overflow: visible !important;
    }
}

/* Animation for Filter Bar */
.horizontal-filter-bar {
    animation: slideDown 0.4s ease-out;
}

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

/* ===========================
   MODERN FİRMALAR SAYFASI - Header Padding Fix
   =========================== */

/* Header fixed olduğu için içeriğin üstten boşluk bırakması gerekiyor */
.modern-firmalar-page {
    position: relative;
    z-index: 1;
    background: #0c2756;
    min-height: 100vh;
    padding-top: 200px;
    padding-bottom: 40px;
}

/* Responsive header padding */
@media (max-width: 991px) {
    .modern-firmalar-page {
        padding-top: 100px;
    }
}

/* ===========================
   FİRMA DETAY SAYFASI - Modern Tasarım
   =========================== */

.firma-detay-page {
    position: relative;
    z-index: 1;
    background: #0c2756;
    min-height: 100vh;
    padding: 40px 0 60px;
    margin-top: 0;
}

/* Header padding fix - firma detay sayfası için */
.firma-detay-page {
    padding-top: 140px !important;
}

@media (max-width: 991px) {
    .firma-detay-page {
        padding-top: 120px !important;
    }
}

@media (max-width: 576px) {
    .firma-detay-page {
        padding-top: 100px !important;
    }
}

/* Breadcrumb */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 15px;
    color: #6c757d;
    padding: 15px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.breadcrumb-nav a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 8px;
}

.breadcrumb-nav a:hover {
    color: #764ba2;
    background: #f8f9fa;
    transform: translateX(2px);
}

.breadcrumb-nav i {
    font-size: 12px;
    color: #adb5bd;
    margin: 0 5px;
}

.breadcrumb-nav span {
    color: #2c3e50;
    font-weight: 700;
    padding: 5px 10px;
}

/* Firma Header */
.firma-detay-header {
    background: white;
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.firma-detay-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.firma-header-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.firma-logo-large {
    width: 150px;
    height: 150px;
    border-radius: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.firma-logo-large:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
}

.firma-logo-large .logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.firma-header-info {
    flex: 1;
}

.firma-detay-title {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.firma-meta-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.meta-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.meta-item.featured {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.meta-item i {
    color: #667eea;
    font-size: 16px;
}

.meta-item.featured i {
    color: #2c3e50;
}

/* Firma Bilgileri Üstte */
.firma-info-section-top {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.firma-info-half .firma-info-card-top {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.firma-info-section-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.firma-info-card-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row-top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-row-top:hover {
    background: white;
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
    transform: translateY(-3px);
}

.info-icon-top {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.info-icon-top i {
    color: white;
    font-size: 20px;
}

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

.info-label-top {
    font-size: 12px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-value-top {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.5;
}

.info-value-top a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
}

.info-value-top a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.info-actions-top {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
    padding-top: 25px;
    border-top: 2px solid #e9ecef;
}

/* Firma Bilgileri ve Harita Aynı Kartta */
.firma-info-map-combined {
    background: white;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.firma-info-map-combined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.firma-info-map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.firma-info-half {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.maps-half {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.maps-half .maps-container-main {
    min-height: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.maps-half .maps-container-main iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.maps-half .maps-link-btn {
    margin-top: 15px;
    align-self: flex-start;
}

/* Ekspertiz Paketleri Full Section */
.paketler-full-section {
    margin-top: 40px;
}

.paketler-grid-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.maps-section-main {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.maps-section-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.maps-container-main iframe {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.maps-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.maps-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.maps-link-btn i {
    font-size: 16px;
}

.section-header {
    margin-bottom: 25px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: #667eea;
    font-size: 22px;
}

/* Firma Info Section */
.firma-info-section {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.firma-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.firma-info-section:hover {
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.firma-info-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-row:hover {
    background: white;
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.info-row:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.info-icon i {
    color: white;
    font-size: 24px;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 12px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.info-value {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.6;
}

.info-value a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
}

.info-value a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

/* Maps Section Main */
.maps-section-main {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.maps-section-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.maps-section-main:hover {
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.maps-container-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.maps-container-main iframe {
    border-radius: 20px;
    width: 100%;
    display: block;
}

.maps-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.maps-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.maps-link-btn:active {
    transform: scale(0.95);
}

/* Paketler List */
.paketler-section {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.paketler-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.paketler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.paketler-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.paket-card-detay-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.paket-card-detay-link:hover {
    text-decoration: none;
    color: inherit;
}

.paket-card-detay {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paket-card-detay-link:hover .paket-card-detay {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: #667eea;
}

.paket-badge-detay {
    position: absolute;
    top: 15px;
    left: 25px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    z-index: 2;
}

.paket-name-detay {
    font-size: 20px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 50px;
    padding-right: 50px;
    line-height: 1.3;
    min-height: 60px;
}

/* Badge varsa başlığa ekstra margin */
.paket-card-detay:has(.paket-badge-detay) .paket-name-detay {
    margin-top: 50px;
}

.paket-card-detay:not(:has(.paket-badge-detay)) .paket-name-detay {
    margin-top: 0;
}

.paket-price-detay {
    margin-bottom: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.paket-price-detay .price-amount-detay {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.paket-info-detay {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #495057;
    margin-bottom: 12px;
    line-height: 1.6;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}


.paket-info-detay i {
    color: #667eea;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Öne Çıkan Özellikler - Firma Detay Paket Kartları */
.paket-one-cikan-detay {
    margin: 15px 0;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 237, 78, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.one-cikan-label-detay {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.one-cikan-label-detay i {
    font-size: 14px;
}

.one-cikan-items-detay {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.one-cikan-item-detay {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.15);
    color: #2c3e50;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.paket-features-detay {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 3px solid #667eea;
    flex-grow: 1;
}

.features-label {
    font-size: 13px;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.features-text-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: #495057;
    line-height: 1.6;
    width: 100%;
}

.features-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

.features-item-hidden {
    display: none !important;
}

.features-list-short {
    position: relative;
}

.features-list-short::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #f8f9fa);
    pointer-events: none;
    z-index: 1;
}

.features-list-expanded {
    position: relative;
}

.features-list-expanded::after {
    display: none;
}

.features-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.1);
}

.features-toggle-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.features-toggle-btn:active {
    transform: scale(0.95);
}

.features-toggle-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.features-toggle-btn:hover i {
    transform: translateY(2px);
}

.features-text {
    font-size: 15px;
    color: #495057;
    line-height: 1.8;
}

.no-results-small {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.no-results-small i {
    font-size: 48px;
    color: #e0e0e0;
    margin-bottom: 15px;
    display: block;
}

.no-results-small p {
    color: #6c757d;
    font-size: 14px;
}

/* Firma Name Link */
.firma-name-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.firma-name-link:hover .firma-name {
    color: #667eea;
}

/* Responsive */
@media (max-width: 991px) {
    .firma-detay-layout {
        grid-template-columns: 1fr;
    }
    
    .firma-header-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .firma-info-map-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .maps-half {
        min-height: 400px;
    }
    
    .maps-half .maps-container-main {
        min-height: 300px;
    }
    
    .firma-header-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .firma-meta-info {
        justify-content: center;
    }
    
    .firma-info-card-top {
        display: flex;
        flex-direction: column;
    }
    
    .paketler-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 576px) {
    .firma-detay-page {
        padding: 30px 0 50px;
    }
    
    .firma-detay-header {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .firma-logo-large {
        width: 120px;
        height: 120px;
        border-radius: 20px;
    }
    
    .firma-detay-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .firma-meta-info {
        justify-content: center;
        gap: 10px;
    }
    
    .meta-item {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .firma-info-map-combined {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .firma-info-map-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .maps-half {
        min-height: 350px;
    }
    
    .maps-half .maps-container-main {
        min-height: 350px;
    }
    
    .firma-info-section-top,
    .paketler-full-section {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .firma-info-section-top {
        padding: 30px 20px;
    }
    
    .firma-info-card-top {
        display: flex;
        flex-direction: column;
    }
    
    .info-row-top {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .info-icon-top {
        width: 50px;
        height: 50px;
    }
    
    .info-icon-top i {
        font-size: 20px;
    }
    
    .info-value-top {
        font-size: 16px;
    }
    
    .info-actions-top {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .maps-container-main iframe {
        height: 300px;
    }
    
    .paket-card-detay {
        padding: 25px 20px;
    }
    
    .paket-name-detay {
        font-size: 20px;
        padding-right: 80px;
    }
    
    .paket-price-detay .price-amount-detay {
        font-size: 28px;
    }
    
    .paketler-grid-main {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Karşılaştırma Sayfası
   =========================== */

.compare-page {
    padding: 140px 0 80px;
    background: #0c2756;
    min-height: 100vh;
}

.breadcrumb-nav {
    margin-bottom: 30px;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb-nav a {
    color: #1373ef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #0d5fd6;
}

.breadcrumb-nav i {
    margin: 0 10px;
    color: #ccc;
}

.compare-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.compare-page-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.compare-page-title i {
    color: #1373ef;
    margin-right: 10px;
}

.compare-page-subtitle {
    font-size: 18px;
    color: #ffffff;
}

/* Hata Mesajı */
.compare-error-message {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 64px;
    color: #ffc107;
    margin-bottom: 20px;
}

.compare-error-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.compare-error-message p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #1373ef;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: #0d5fd6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 115, 239, 0.3);
}

/* Karşılaştırma Tablosu */
.compare-table-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.compare-table-container {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.compare-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: sticky;
    top: 0;
    z-index: 100;
}

.compare-table th {
    padding: 25px 20px;
    text-align: left;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.compare-sticky-col {
    position: sticky;
    left: 0;
    background: #f8f9fa;
    z-index: 5;
    min-width: 200px;
    font-weight: 600;
    color: #2c3e50;
}

.compare-table thead .compare-sticky-col {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.compare-package-col {
    min-width: 250px;
    text-align: center;
    vertical-align: top;
    position: relative;
}

.compare-package-col.best-package {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-left: 3px solid #ffd700;
    border-right: 3px solid #ffd700;
}

.best-package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2c3e50;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.best-package-badge i {
    margin-right: 5px;
    animation: trophyPulse 2s infinite;
}

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

.compare-package-header {
    padding: 25px 20px;
    position: relative;
}

.compare-package-logo {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.compare-package-col.best-package .compare-package-logo {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    border: 2px solid #ffd700;
}

.compare-package-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.compare-package-name {
    font-size: 24px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 10px;
}

.compare-package-col.best-package .compare-package-name {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
}

.compare-package-company {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.compare-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    padding: 0;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.compare-remove-btn:active {
    transform: scale(0.95);
}

.compare-table tbody tr {
    border-bottom: 1px solid #e9ecef;
}

.compare-table tbody tr:last-child {
    border-bottom: none;
}

.compare-table tbody td {
    padding: 20px;
    color: #495057;
    font-size: 15px;
}

.compare-table tbody .compare-sticky-col {
    background: #f8f9fa;
    border-right: 2px solid #e9ecef;
}

.compare-table tbody tr:hover .compare-sticky-col {
    background: #e9ecef;
}

.compare-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.compare-price-amount {
    font-size: 32px;
    font-weight: 800;
    color: #1373ef;
}

.compare-price-currency {
    font-size: 20px;
    color: #6c757d;
}

.compare-check-yes {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #28a745;
    font-weight: 600;
}

.compare-check-no {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #dc3545;
    font-weight: 600;
}

.compare-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.compare-features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #495057;
    font-size: 14px;
}

.compare-features-list li:last-child {
    border-bottom: none;
}

.compare-features-list li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

.compare-empty {
    color: #ccc;
    font-style: italic;
}

.compare-row-price {
    background: #f8f9fa;
}

.compare-row-features,
.compare-row-detailed {
    background: #fafafa;
}

/* Karşılaştırma İşlemleri */
.compare-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn-add-more,
.btn-clear-all {
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-add-more {
    background: #1373ef;
    color: white;
}

.btn-add-more:hover {
    background: #0d5fd6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 115, 239, 0.3);
}

.btn-clear-all {
    background: #dc3545;
    color: white;
}

.btn-clear-all:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .compare-page {
        padding: 120px 0 60px;
    }
    
    .compare-page-title {
        font-size: 32px;
    }
    
    .compare-table {
        min-width: 600px;
    }
}

@media (max-width: 576px) {
    .compare-page {
        padding: 100px 0 40px;
    }
    
    .compare-page-title {
        font-size: 24px;
    }
    
    .compare-page-subtitle {
        font-size: 14px;
    }
    
    .compare-table th,
    .compare-table td {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .compare-package-logo {
        width: 60px;
        height: 60px;
    }
    
    .compare-package-name {
        font-size: 18px;
    }
    
    .compare-price-amount {
        font-size: 24px;
    }
    
    .compare-actions {
        flex-direction: column;
    }
    
    .btn-add-more,
    .btn-clear-all {
        width: 100%;
        justify-content: center;
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 300px;
    max-width: 400px;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-notification i {
    font-size: 20px;
}

.toast-notification span {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
}

.toast-success {
    border-left: 4px solid #28a745;
}

.toast-success i {
    color: #28a745;
}

.toast-error {
    border-left: 4px solid #dc3545;
}

.toast-error i {
    color: #dc3545;
}

@media (max-width: 576px) {
    .toast-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
}

/* ===========================
   Paket Detay Sayfası
   =========================== */

.package-detail-page {
    padding: 140px 0 80px;
    background: #0c2756;
    min-height: 100vh;
}

.package-detail-header {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.package-detail-logo-wrapper {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.package-detail-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.package-detail-title-section {
    flex: 1;
    min-width: 200px;
}

.package-detail-title {
    font-size: 36px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.package-detail-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2c3e50;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.package-detail-company {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #6c757d;
    font-weight: 600;
}

.package-detail-company i {
    color: #667eea;
}

.package-detail-price-section {
    text-align: center;
    flex-shrink: 0;
}

.package-detail-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.package-detail-price-amount {
    font-size: 48px;
    font-weight: 900;
    color: #667eea;
    line-height: 1;
}

.package-detail-price-currency {
    font-size: 28px;
    color: #6c757d;
    font-weight: 700;
}

.package-detail-compare-btn {
    padding: 12px 24px;
    background: #1373ef;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.package-detail-compare-btn:hover {
    background: #0d5fd6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 115, 239, 0.3);
}

.package-detail-compare-btn.added {
    background: #28a745;
}

.package-detail-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.package-detail-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.package-detail-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.package-detail-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.package-detail-card-title i {
    color: #667eea;
    font-size: 24px;
}

.package-detail-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-detail-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.package-detail-info-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateX(5px);
}

.package-detail-info-item.special {
    background: linear-gradient(135deg, rgba(82, 196, 26, 0.1) 0%, rgba(115, 209, 61, 0.05) 100%);
    border: 1px solid rgba(82, 196, 26, 0.3);
}

.info-item-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.package-detail-info-item.special .info-item-icon {
    background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
}

.info-item-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-item-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item-value {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

.package-detail-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-detail-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.package-detail-feature-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    transform: translateX(5px);
}

.package-detail-feature-item i {
    color: #28a745;
    font-size: 16px;
    flex-shrink: 0;
}

.package-detail-feature-item span {
    font-size: 15px;
    color: #495057;
    font-weight: 500;
}

.package-detail-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.package-detail-sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    text-align: center;
}

.sidebar-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sidebar-card-title i {
    color: #667eea;
}

.sidebar-firma-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-firma-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sidebar-firma-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.sidebar-view-firms-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.sidebar-view-firms-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .package-detail-info-grid {
        grid-template-columns: 1fr;
    }
    
    .package-detail-sidebar {
        position: static;
    }
    
    .package-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .package-detail-title-section {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .package-detail-page {
        padding: 100px 0 40px;
    }
    
    .package-detail-header {
        padding: 25px 20px;
    }
    
    .package-detail-title {
        font-size: 24px;
    }
    
    .package-detail-price-amount {
        font-size: 36px;
    }
    
    .package-detail-card {
        padding: 20px;
    }
    
    .package-detail-card-title {
        font-size: 18px;
    }
}

/* ============================================
   Blog Sayfaları Stilleri
   ============================================ */

/* Blog Liste Sayfası */
.blog-page {
    padding: 120px 0 80px;
    background: #0c2756;
    min-height: 100vh;
}

.blog-page-header {
	margin-top: 70px;
    text-align: center;
    margin-bottom: 50px;
}

.blog-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.blog-page-title i {
    color: #1373ef;
    margin-right: 10px;
}

.blog-page-subtitle {
    font-size: 18px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

.blog-categories-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.category-filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #ffffff;
    color: #323232;
    border: 2px solid #e4e4e4;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.category-filter-btn i {
    margin-right: 8px;
    color: #1373ef;
}

.category-filter-btn:hover,
.category-filter-btn.active {
    background: #1373ef;
    color: #ffffff;
    border-color: #1373ef;
}

.category-filter-btn.active i,
.category-filter-btn:hover i {
    color: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
}

.blog-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffd700;
    color: #323232;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-featured-badge i {
    color: #ff6b00;
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(19, 115, 239, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.blog-card:hover .blog-image-overlay {
    opacity: 1;
}

.blog-image-overlay i {
    color: #ffffff;
    font-size: 32px;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: #f0f7ff;
    color: #1373ef;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-category i {
    margin-right: 5px;
}

.blog-title {
    margin-bottom: 15px;
}

.blog-title a {
    font-size: 22px;
    font-weight: 700;
    color: #323232;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #1373ef;
}

.blog-excerpt {
    font-size: 15px;
    color: #707070;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e4e4e4;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #a8a8a8;
}

.blog-meta-item i {
    color: #1373ef;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #1373ef;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.blog-read-more:hover {
    gap: 12px;
}

.blog-empty {
    text-align: center;
    padding: 80px 20px;
}

.blog-empty i {
    font-size: 64px;
    color: #d4d4d4;
    margin-bottom: 20px;
}

.blog-empty h3 {
    font-size: 24px;
    color: #323232;
    margin-bottom: 10px;
}

.blog-empty p {
    font-size: 16px;
    color: #707070;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    color: #323232;
    border: 2px solid #e4e4e4;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.pagination-btn:hover {
    background: #1373ef;
    color: #ffffff;
    border-color: #1373ef;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
}

.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #323232;
    border: 2px solid #e4e4e4;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.pagination-number:hover,
.pagination-number.active {
    background: #1373ef;
    color: #ffffff;
    border-color: #1373ef;
}

/* Blog Detay Sayfası */
.blog-detail-page {
    padding: 120px 0 80px;
    background: #0c2756;
    min-height: 100vh;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: #1373ef;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: #0d5bb8;
}

.breadcrumb-nav i {
    color: #a8a8a8;
    font-size: 12px;
}

.breadcrumb-nav span {
    color: #707070;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.blog-detail-main {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}

.blog-detail-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e4e4e4;
}

.blog-detail-category {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: #f0f7ff;
    color: #1373ef;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-detail-category i {
    margin-right: 5px;
}

.blog-detail-featured-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: #ffd700;
    color: #323232;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 10px;
}

.blog-detail-featured-badge i {
    color: #ff6b00;
    margin-right: 5px;
}

.blog-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #323232;
    line-height: 1.4;
    margin-bottom: 20px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.blog-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #707070;
}

.blog-detail-meta-item i {
    color: #1373ef;
}

.blog-detail-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-excerpt {
    font-size: 20px;
    color: #707070;
    line-height: 1.7;
    font-style: italic;
    padding: 25px;
    background: #f9f9f9;
    border-left: 4px solid #1373ef;
    margin: 30px 0;
    border-radius: 5px;
}

.blog-detail-content {
    font-size: 16px;
    color: #323232;
    line-height: 1.8;
    margin-top: 30px;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-sidebar-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card-title i {
    color: #1373ef;
}

.related-blogs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-blog-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s;
}

.related-blog-item:hover {
    transform: translateX(5px);
}

.related-blog-image {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
}

.related-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-blog-content {
    flex: 1;
}

.related-blog-title {
    font-size: 15px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-blog-date {
    font-size: 12px;
    color: #a8a8a8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cta-card {
    background: linear-gradient(135deg, #1373ef 0%, #0d5bb8 100%);
    color: #ffffff;
}

.cta-card .sidebar-card-title {
    color: #ffffff;
}

.cta-card .sidebar-card-title i {
    color: #ffd700;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.7;
}

.sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #ffffff;
    color: #1373ef;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.sidebar-cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-page {
        padding: 100px 0 60px;
    }
    
    .blog-page-title {
        font-size: 32px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-detail-main {
        padding: 25px;
    }
    
    .blog-detail-title {
        font-size: 28px;
    }
}

/* ============================================
   İletişim Sayfası Stilleri
   ============================================ */
.contact-page {
    padding: 120px 0 80px;
    background: #0c2756;
    min-height: 100vh;
}

.contact-page-header {
	margin-top: 70px;
    text-align: center;
    margin-bottom: 50px;
}

.contact-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-page-title i {
    color: #1373ef;
    margin-right: 10px;
}

.contact-page-subtitle {
    font-size: 18px;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form-title i {
    color: #1373ef;
    font-size: 24px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.alert-success-modern {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.alert-error-modern {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-contact {
    margin-bottom: 0;
}

.form-label-contact {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label-contact i {
    color: #1373ef;
    font-size: 16px;
}

.required {
    color: #dc3545;
}

.form-input-contact {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
}

.form-input-contact:focus {
    outline: none;
    border-color: #1373ef;
    background: white;
    box-shadow: 0 0 0 3px rgba(19, 115, 239, 0.1);
}

textarea.form-input-contact {
    resize: vertical;
    min-height: 150px;
}

.btn-submit-contact {
    padding: 16px 32px;
    background: linear-gradient(135deg, #1373ef 0%, #0d5bb8 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(19, 115, 239, 0.3);
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 115, 239, 0.4);
}

.btn-submit-contact i {
    font-size: 18px;
}

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

.contact-info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.contact-info-title {
    font-size: 28px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-title i {
    color: #1373ef;
    font-size: 24px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

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

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1373ef 0%, #0d5bb8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(19, 115, 239, 0.2);
}

.contact-info-icon i {
    color: white;
    font-size: 22px;
}

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

.contact-info-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 8px;
}

.contact-info-content p {
    font-size: 15px;
    color: #707070;
    line-height: 1.6;
    margin: 0;
}

.contact-social {
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.contact-social-title {
    font-size: 20px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-social-title i {
    color: #1373ef;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateX(5px);
    border-color: #1373ef;
    background: #f0f7ff;
}

.social-link i {
    font-size: 22px;
    width: 24px;
    text-align: center;
}

.social-link.instagram i {
    color: #E4405F;
}

.social-link.facebook i {
    color: #1877F2;
}

.social-link.twitter i {
    color: #1DA1F2;
}

.social-link span {
    font-size: 15px;
    font-weight: 600;
    color: #323232;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        position: static;
    }
    
    .contact-page-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 100px 0 60px;
    }
    
    .contact-page-title {
        font-size: 28px;
    }
    
    .contact-page-subtitle {
        font-size: 16px;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .form-row-contact {
        grid-template-columns: 1fr;
    }
    
    .contact-form-title,
    .contact-info-title {
        font-size: 24px;
    }
    
    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info-icon {
        margin-bottom: 10px;
    }
}

/* ============================================
   Hakkımızda Sayfası Stilleri
   ============================================ */
.about-page {
    padding: 120px 0 80px;
    background: #0c2756;
    min-height: 100vh;
}

.about-page-header {
	margin-top: 60px;
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1373ef 0%, #0d5bb8 100%);
    border-radius: 15px;
    color: white;
}

.about-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-page-title i {
    color: #ffd700;
    margin-right: 10px;
}

.about-page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.mission-card,
.vision-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1373ef 0%, #0d5bb8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(19, 115, 239, 0.3);
}

.vision-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.mission-icon i,
.vision-icon i {
    color: white;
    font-size: 32px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    color: #707070;
    line-height: 1.8;
    margin: 0;
}

.about-features {
    margin-bottom: 60px;
}

.about-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #323232;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.about-section-title i {
    color: #1373ef;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1373ef 0%, #0d5bb8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(19, 115, 239, 0.3);
}

.feature-icon i {
    color: white;
    font-size: 36px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: #707070;
    line-height: 1.7;
    margin: 0;
}

.about-stats {
    margin-bottom: 60px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #0c2756 0%, #1a4a8a 100%);
    border-radius: 15px;
}

.about-stats .about-section-title {
    color: white;
}

.about-stats .about-section-title i {
    color: #ffd700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    display: block;
}

.stat-label {
    font-size: 16px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-icon {
    margin-top: 15px;
    opacity: 0.3;
}

.stat-icon i {
    color: white;
    font-size: 32px;
}

.about-how-it-works {
    margin-bottom: 60px;
}

.how-it-works-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.step-card {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1373ef 0%, #0d5bb8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(19, 115, 239, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1373ef 0%, #0d5bb8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
    box-shadow: 0 4px 15px rgba(19, 115, 239, 0.3);
}

.step-icon i {
    color: white;
    font-size: 36px;
}

.step-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 14px;
    color: #707070;
    line-height: 1.7;
    margin: 0;
}

.step-arrow {
    flex-shrink: 0;
    color: #1373ef;
    font-size: 32px;
}

.about-cta {
    background: linear-gradient(135deg, #1373ef 0%, #0d5bb8 100%);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: #1373ef;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #1373ef;
}

.cta-button i {
    font-size: 18px;
}

/* ============================================
   Gizlilik Sözleşmesi Sayfası Stilleri
   ============================================ */
.privacy-page {
    padding: 120px 0 80px;
    background: #0c2756;
    min-height: 100vh;
}

.privacy-page-header {
    text-align: center;
	margin-top: 50px;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}

.privacy-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 20px;
}

.privacy-page-title i {
    color: #1373ef;
    margin-right: 10px;
}

.privacy-page-subtitle {
    font-size: 18px;
    color: #707070;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.privacy-last-update {
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-last-update i {
    color: #1373ef;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}

.privacy-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.privacy-section-title i {
    color: #1373ef;
    font-size: 20px;
}

.privacy-section-content {
    font-size: 16px;
    color: #707070;
    line-height: 1.8;
}

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

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

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-list li:last-child {
    border-bottom: none;
}

.privacy-list li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #1373ef;
    font-size: 14px;
}

.privacy-list li strong {
    color: #323232;
    font-weight: 700;
}

.privacy-contact-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: #323232;
}

.contact-info-item i {
    color: #1373ef;
    font-size: 18px;
    width: 24px;
}

.contact-info-item a {
    color: #1373ef;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.privacy-consent {
    margin-top: 40px;
}

.consent-card {
    background: linear-gradient(135deg, #1373ef 0%, #0d5bb8 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: white;
}

.consent-card i {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
    display: block;
}

.consent-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.consent-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 15px;
}

.consent-card p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .about-mission-vision {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-page,
    .privacy-page {
        padding: 100px 0 60px;
    }
    
    .about-page-title,
    .privacy-page-title {
        font-size: 32px;
    }
    
    .about-page-subtitle,
    .privacy-page-subtitle {
        font-size: 16px;
    }
    
    .mission-card,
    .vision-card,
    .privacy-section {
        padding: 25px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section-title {
        font-size: 28px;
        flex-direction: column;
        gap: 8px;
    }
    
    .privacy-section-title {
        font-size: 20px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .consent-card {
        padding: 25px 20px;
    }
    
    .consent-card h3 {
        font-size: 24px;
    }
}
