/* Reset & Base */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
}

ul, li {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 20px;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.col-12 { width: 100%; padding: 0 15px; }
.col-6 { width: 50%; padding: 0 15px; }
.col-5 { width: 41.666%; padding: 0 15px; }
.col-7 { width: 58.333%; padding: 0 15px; }

.text-center { text-align: center; }
.text-right { text-align: right; }

/* Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

header::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.3);
	transition: opacity 0.5s ease;
}

header.scrolled {
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

header.scrolled::after {
	opacity: 0;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 50px;
}

.logo-container img {
	width: 250px;
	height: auto;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 30px;
}

.nav-menu a {
	color: #fff;
	font-size: 18px;
	transition: color 0.5s ease;
}

header.scrolled .nav-menu a {
	color: #333;
}

.nav-menu a:hover {
	opacity: 0.8;
}

/* Mobile Menu */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 30px;
	color: #fff;
	cursor: pointer;
	transition: color 0.5s ease;
}

header.scrolled .mobile-menu-btn {
	color: #333;
}

.mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 10000;
	padding: 20px 30px 30px;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
}

.mobile-nav.active {
	transform: translateX(0);
}

.mobile-nav-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 30px;
	cursor: pointer;
}

.mobile-nav a {
	display: block;
	padding: 15px 0;
	font-size: 20px;
	color: #333;
	border-bottom: 1px solid #eee;
}

.mobile-nav-logo {
	display: block;
	padding: 0 0 20px 0 !important;
	border-bottom: none !important;
}

.mobile-nav-logo img {
	width: 180px;
	height: auto;
}

.mobile-nav-card {
	margin-top: 25px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.mobile-nav-card-header {
	background: linear-gradient(135deg, #0d4f6e 0%, #1a3a5c 100%);
	padding: 25px 20px;
	text-align: center;
	position: relative;
}

.mobile-nav-card-badge {
	position: absolute;
	top: -1px;
	right: 15px;
	background: linear-gradient(135deg, #f5af19, #f12711);
	color: #fff;
	padding: 6px 12px;
	border-radius: 0 0 10px 10px;
	font-size: 12px;
	font-weight: 700;
}

.mobile-nav-card-header h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}

.mobile-nav-card-header p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
	padding: 0;
	border: none;
}

.mobile-nav-card-body {
	background: #fff;
	padding: 20px;
}

.mobile-nav-card-list {
	margin-bottom: 20px;
}

.mobile-nav-card-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
	color: #333;
	font-size: 14px;
}

.mobile-nav-card-list li:last-child {
	border-bottom: none;
}

.mobile-nav-card-list svg {
	width: 18px;
	height: 18px;
	color: #25d366;
	flex-shrink: 0;
}

.mobile-nav-whatsapp-btn {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 15px 20px !important;
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 600;
	border-radius: 12px;
	border: none !important;
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.mobile-nav-whatsapp-btn svg {
	width: 22px;
	height: 22px;
	fill: #fff;
}

.mobile-nav-card-note {
	text-align: center;
	margin-top: 12px;
	color: #666;
	font-size: 12px;
	padding: 0 !important;
	border: none !important;
}

/* Slider */
.slider-section {
	width: 100%;
	overflow: hidden;
}

.slider-section img {
	width: 100%;
	height: auto;
}

.slider-desktop {
	display: block;
}

.slider-mobile {
	display: none;
}

/* Hero CTA Section - YENİ EKLENEN */
.hero-cta {
	position: relative;
	padding: 80px 0;
	background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #0d4f6e 100%);
	overflow: hidden;
}

.hero-cta-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(46, 139, 192, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(20, 83, 116, 0.4) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(0, 150, 199, 0.2) 0%, transparent 40%);
	z-index: 0;
}

.hero-cta .container {
	position: relative;
	z-index: 2;
}

.hero-cta-content {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 60px;
	align-items: center;
}

.hero-badge {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 20px;
}

.hero-title {
	font-size: 52px;
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 25px;
}

.hero-title span {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin-bottom: 35px;
}

.hero-description strong {
	color: #4facfe;
}

.hero-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hero-feature {
	display: flex;
	align-items: center;
	gap: 15px;
}

.hero-feature-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
	border: 1px solid rgba(79, 172, 254, 0.3);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hero-feature-icon svg {
	width: 24px;
	height: 24px;
	color: #4facfe;
}

.hero-feature-text {
	display: flex;
	flex-direction: column;
}

.hero-feature-text strong {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
}

.hero-feature-text span {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}

.hero-card {
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.hero-card-header {
	background: linear-gradient(135deg, #0d4f6e 0%, #1a3a5c 100%);
	padding: 30px;
	text-align: center;
	position: relative;
}

.hero-card-badge {
	position: absolute;
	top: -1px;
	right: 20px;
	background: linear-gradient(135deg, #f5af19, #f12711);
	color: #fff;
	padding: 8px 16px;
	border-radius: 0 0 12px 12px;
	font-size: 14px;
	font-weight: 700;
}

.hero-card-header h3 {
	color: #fff;
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 8px;
}

.hero-card-header p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
}

.hero-card-body {
	padding: 30px;
}

.hero-card-list {
	margin-bottom: 25px;
}

.hero-card-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
	color: #333;
	font-size: 15px;
}

.hero-card-list li:last-child {
	border-bottom: none;
}

.hero-card-list svg {
	width: 20px;
	height: 20px;
	color: #25d366;
	flex-shrink: 0;
}

.hero-whatsapp-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	padding: 18px 30px;
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	border-radius: 14px;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.hero-whatsapp-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.hero-whatsapp-btn svg {
	width: 24px;
	height: 24px;
	fill: #fff;
}

.hero-card-note {
	text-align: center;
	margin-top: 15px;
	color: #666;
	font-size: 14px;
}

.bubbles {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.bubble {
	position: absolute;
	bottom: -100px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	animation: rise 15s infinite ease-in;
}

.bubble:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-duration: 12s; }
.bubble:nth-child(2) { width: 20px; height: 20px; left: 20%; animation-duration: 10s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 50px; height: 50px; left: 35%; animation-duration: 14s; animation-delay: 4s; }
.bubble:nth-child(4) { width: 25px; height: 25px; left: 50%; animation-duration: 11s; animation-delay: 1s; }
.bubble:nth-child(5) { width: 35px; height: 35px; left: 65%; animation-duration: 16s; animation-delay: 3s; }
.bubble:nth-child(6) { width: 45px; height: 45px; left: 80%; animation-duration: 13s; animation-delay: 5s; }
.bubble:nth-child(7) { width: 30px; height: 30px; left: 90%; animation-duration: 15s; animation-delay: 2s; }

@keyframes rise {
	0% { bottom: -100px; transform: translateX(0) scale(1); opacity: 0.5; }
	50% { transform: translateX(30px) scale(1.1); opacity: 0.3; }
	100% { bottom: 110%; transform: translateX(-20px) scale(0.8); opacity: 0; }
}

@media (max-width: 992px) {
	.hero-cta-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.hero-title { font-size: 38px; }
	.hero-card { max-width: 100%; }
}

@media (max-width: 768px) {
	.hero-cta { padding: 50px 0; }
	.hero-title { font-size: 32px; }
	.hero-description { font-size: 16px; }
	.hero-features { gap: 15px; }
	.hero-feature-icon { width: 44px; height: 44px; }
	.hero-card-header h3 { font-size: 22px; }
	.hero-whatsapp-btn { font-size: 16px; padding: 16px 24px; }
}
/* Hero CTA Section - YENİ EKLENEN BİTTİ */

/* Cards Section */
.hsection {
	padding: 60px 0;
}

.hsection .title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #333;
}

.hsection > .container > p {
	font-size: 18px;
	color: #666;
	margin-bottom: 30px;
}

.cards-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 3/4;
	display: block;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.card:hover img {
	transform: scale(1.05);
}

.card .payoff {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px 20px;
	background: linear-gradient(transparent, rgba(0,0,0,0.8));
	color: #fff;
	font-size: 20px;
	font-weight: 600;
}

.card .payoff .text {
	font-size: 14px;
	font-weight: 400;
	margin-top: 8px;
	opacity: 0.9;
}

/* Experiences Gallery Section */
.experiences-gallery {
	padding: 80px 0;
	background: linear-gradient(135deg, #0c2d48 0%, #145374 50%, #2e8bc0 100%);
}

.experiences-gallery .section-header {
	text-align: center;
	margin-bottom: 50px;
}

.experiences-gallery .title {
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}

.experiences-gallery .subtitle {
	font-size: 18px;
	color: rgba(255,255,255,0.8);
	max-width: 600px;
	margin: 0 auto;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 280px);
	gap: 20px;
}

.gallery-item {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
}

.gallery-item:first-child {
	grid-row: span 2;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
	z-index: 1;
	transition: background 0.4s ease;
}

.gallery-item:hover::before {
	background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.9) 100%);
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-item-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px;
	z-index: 2;
	transform: translateY(20px);
	transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-content {
	transform: translateY(0);
}

.gallery-item-icon {
	width: 50px;
	height: 50px;
	background: rgba(255,255,255,0.2);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-item-icon {
	opacity: 1;
	transform: translateY(0);
}

.gallery-item-icon svg {
	width: 24px;
	height: 24px;
	fill: #fff;
}

.gallery-item h3 {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 8px;
}

.gallery-item:first-child h3 {
	font-size: 28px;
}

.gallery-item p {
	font-size: 14px;
	color: rgba(255,255,255,0.8);
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.4s ease 0.15s;
}

.gallery-item:hover p {
	opacity: 1;
	transform: translateY(0);
}

.gallery-item .view-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 15px;
	padding: 10px 20px;
	background: #fff;
	color: #0c2d48;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.4s ease 0.2s;
}

.gallery-item:hover .view-btn {
	opacity: 1;
	transform: translateY(0);
}

.gallery-item .view-btn:hover {
	background: #2e8bc0;
	color: #fff;
}

/* Lightbox */
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.95);
	z-index: 10001;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.lightbox.active {
	display: flex;
	opacity: 1;
}

.lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
}

.lightbox-content img {
	max-width: 100%;
	max-height: 85vh;
	border-radius: 10px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
	text-align: center;
	color: #fff;
	margin-top: 20px;
	font-size: 20px;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 30px;
	background: none;
	border: none;
	color: #fff;
	font-size: 40px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.lightbox-close:hover {
	transform: rotate(90deg);
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.1);
	border: none;
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.lightbox-nav:hover {
	background: rgba(255,255,255,0.3);
}

.lightbox-prev {
	left: 30px;
}

.lightbox-next {
	right: 30px;
}

@media (max-width: 992px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 300px 250px 250px;
	}

	.gallery-item:first-child {
		grid-column: span 2;
		grid-row: span 1;
	}
}

@media (max-width: 768px) {
	.experiences-gallery {
		padding: 50px 0;
	}

	.experiences-gallery .title {
		font-size: 28px;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(6, 220px);
		gap: 15px;
	}

	.gallery-item:first-child {
		grid-column: span 1;
	}

	.gallery-item-content {
		transform: translateY(0);
	}

	.gallery-item-icon {
		opacity: 1;
		transform: translateY(0);
		width: 40px;
		height: 40px;
	}

	.gallery-item p {
		opacity: 1;
		transform: translateY(0);
	}

	.gallery-item .view-btn {
		opacity: 1;
		transform: translateY(0);
	}

	.lightbox-nav {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.lightbox-prev {
		left: 10px;
	}

	.lightbox-next {
		right: 10px;
	}
}

/* Private Cars Section */
.private-cars .cards-wrapper {
	grid-template-columns: repeat(3, 1fr);
}

.private-cars .card {
	aspect-ratio: auto;
}

.private-cars .card img {
	border-radius: 20px;
	height: auto;
}

/* Aquarium Info Section */
.acqvillage {
	background: #f8f9fa;
}

.acqvillage .title {
	font-size: 42px;
	line-height: 1.2;
}

.acqvillage .txt {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 20px;
}

.btn-primary {
	display: inline-block;
	padding: 12px 30px;
	background: #007bff;
	color: #fff;
	border-radius: 5px;
	font-size: 16px;
	transition: background 0.3s ease;
}

.btn-primary:hover {
	background: #0056b3;
}

/* Transport Info */
.ulasim {
	margin-top: 60px;
}

.ulasim p {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.ulasim img {
	width: 58px;
	height: 58px;
	flex-shrink: 0;
	margin-right: 15px;
}

.ulasimaciklama {
	font-size: 15px;
	line-height: 1.5;
}

.map {
	margin-top: 40px;
	border-radius: 10px;
}

/* Shuttle Schedule Section */
.shuttle-schedule {
	margin-top: 50px;
	background: linear-gradient(135deg, #0a1e3c 0%, #0d4f6e 50%, #145374 100%);
	border-radius: 24px;
	padding: 50px 40px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 25px 80px rgba(10, 30, 60, 0.4);
}

.shuttle-schedule::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 10% 90%, rgba(46, 139, 192, 0.3) 0%, transparent 40%),
		radial-gradient(circle at 90% 10%, rgba(0, 150, 199, 0.2) 0%, transparent 40%),
		radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.1) 0%, transparent 60%);
	pointer-events: none;
}

.shuttle-schedule-header {
	text-align: center;
	margin-bottom: 45px;
	position: relative;
	z-index: 2;
}

.shuttle-schedule-badge {
	display: inline-block;
	background: linear-gradient(135deg, #f5af19, #f12711);
	color: #fff;
	padding: 10px 25px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
	box-shadow: 0 8px 25px rgba(245, 175, 25, 0.35);
}

.shuttle-schedule-title {
	font-size: 42px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 4px;
}

.shuttle-schedule-subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
}

.shuttle-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 25px;
	position: relative;
	z-index: 2;
}

.shuttle-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 24px;
	padding: 35px 30px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.shuttle-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.shuttle-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.shuttle-card-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
	border: 2px solid rgba(79, 172, 254, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.shuttle-card-icon svg {
	width: 32px;
	height: 32px;
	fill: #4facfe;
}

.shuttle-card h3 {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
}

.shuttle-card-location {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.shuttle-card-location svg {
	width: 16px;
	height: 16px;
	fill: rgba(255, 255, 255, 0.6);
}

.shuttle-times {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.shuttle-time {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	background: rgba(255, 255, 255, 0.1);
	padding: 16px 24px;
	border-radius: 14px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.shuttle-time:hover {
	background: rgba(79, 172, 254, 0.2);
	border-color: rgba(79, 172, 254, 0.3);
}

.shuttle-time-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #4facfe, #00f2fe);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.shuttle-time-icon svg {
	width: 20px;
	height: 20px;
	fill: #fff;
}

.shuttle-time-text {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 2px;
}

.shuttle-card.return-card::before {
	background: linear-gradient(90deg, #25d366, #128c7e);
}

.shuttle-card.return-card .shuttle-card-icon {
	background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(18, 140, 126, 0.2));
	border-color: rgba(37, 211, 102, 0.3);
}

.shuttle-card.return-card .shuttle-card-icon svg {
	fill: #25d366;
}

.shuttle-card.return-card .shuttle-time-icon {
	background: linear-gradient(135deg, #25d366, #128c7e);
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.shuttle-card.return-card .shuttle-time:hover {
	background: rgba(37, 211, 102, 0.2);
	border-color: rgba(37, 211, 102, 0.3);
}

.shuttle-schedule-note {
	text-align: center;
	margin-top: 40px;
	padding: 25px 30px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 2;
}

.shuttle-schedule-note p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 15px;
	margin: 0;
	line-height: 1.6;
}

.shuttle-schedule-note strong {
	color: #4facfe;
}

.shuttle-schedule-note .note-icon {
	display: inline-block;
	margin-right: 8px;
}

/* Shuttle bubbles animation */
.shuttle-schedule .shuttle-bubbles {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.shuttle-schedule .shuttle-bubble {
	position: absolute;
	bottom: -50px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	animation: shuttleBubbleRise 12s infinite ease-in;
}

.shuttle-schedule .shuttle-bubble:nth-child(1) { width: 30px; height: 30px; left: 5%; animation-duration: 10s; }
.shuttle-schedule .shuttle-bubble:nth-child(2) { width: 20px; height: 20px; left: 25%; animation-duration: 14s; animation-delay: 2s; }
.shuttle-schedule .shuttle-bubble:nth-child(3) { width: 40px; height: 40px; left: 75%; animation-duration: 11s; animation-delay: 1s; }
.shuttle-schedule .shuttle-bubble:nth-child(4) { width: 25px; height: 25px; left: 90%; animation-duration: 13s; animation-delay: 3s; }

@keyframes shuttleBubbleRise {
	0% { bottom: -50px; transform: translateX(0) scale(1); opacity: 0.4; }
	50% { transform: translateX(20px) scale(1.1); opacity: 0.2; }
	100% { bottom: 110%; transform: translateX(-15px) scale(0.8); opacity: 0; }
}

@media (max-width: 992px) {
	.shuttle-grid {
		grid-template-columns: 1fr 1fr;
	}
	.shuttle-card.return-card {
		grid-column: span 2;
		max-width: 450px;
		margin: 0 auto;
	}
	.shuttle-schedule-title {
		font-size: 32px;
		letter-spacing: 2px;
	}
}

@media (max-width: 768px) {
	.shuttle-schedule {
		padding: 35px 20px;
		margin-top: 40px;
		border-radius: 20px;
	}
	.shuttle-schedule-badge {
		font-size: 12px;
		padding: 8px 18px;
	}
	.shuttle-schedule-title {
		font-size: 24px;
		letter-spacing: 1px;
	}
	.shuttle-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.shuttle-card {
		padding: 30px 25px;
	}
	.shuttle-card.return-card {
		grid-column: span 1;
		max-width: 100%;
	}
	.shuttle-card h3 {
		font-size: 20px;
	}
	.shuttle-time-text {
		font-size: 24px;
	}
	.shuttle-card-icon {
		width: 60px;
		height: 60px;
	}
	.shuttle-card-icon svg {
		width: 28px;
		height: 28px;
	}
}

/* Fixed Bottom Bar */
.ticketsbar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #04425d;
	color: #fff;
	padding: 17px 0;
	z-index: 9998;
}

.ticketsbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ticketsbar .title {
	font-size: 20px;
	font-weight: 600;
}

/* WhatsApp Float */
.whatsapp-float {
	position: fixed;
	width: 50px;
	height: 50px;
	bottom: 8px;
	right: 20px;
	background: #25d366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	z-index: 9999;
	transition: transform 0.3s ease;
}

.whatsapp-float:hover {
	transform: scale(1.1);
}

/* WhatsApp Icon SVG */
.whatsapp-icon {
	width: 30px;
	height: 30px;
	fill: #fff;
}

/* Footer */
footer {
	background: #fff;
	padding: 30px 0 100px;
	text-align: center;
}

.payment-img {
	margin: 0 auto 20px;
	max-width: 90%;
}

.copyright {
	font-size: 14px;
	color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
	.slider-desktop { display: none; }
	.slider-mobile { display: block; }
}

@media (max-width: 768px) {
	.header-inner {
		padding: 0 20px;
	}

	.nav-menu {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.mobile-nav {
		display: block;
	}

	.logo-container img {
		width: 180px;
	}

	.hsection .title {
		font-size: 28px;
	}

	.cards-wrapper {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.private-cars .cards-wrapper {
		grid-template-columns: 1fr;
	}

	.col-6, .col-5, .col-7 {
		width: 100%;
	}

	.experiences {
		min-height: 500px;
	}

	.acqvillage .title {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.ulasimaciklama {
		font-size: 14px;
	}

	.ticketsbar .title {
		font-size: 20px;
	}
	
/* WhatsApp Float */
.whatsapp-float {
	position: fixed;
	width: 50px;
	height: 50px;
	bottom: 4px;
	right: 20px;
	background: #25d366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	z-index: 9999;
	transition: transform 0.3s ease;
}
}

/* ========== TRANSPORTATION SECTION ========== */
.transport-section {
    margin-top: 50px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.transport-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.transport-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    margin-bottom: 35px;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.transport-item {
    background: #fff;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.transport-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.transport-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.transport-icon.metro {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.transport-icon.metrobus {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.transport-icon.bus {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.transport-icon.ido {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.transport-icon.airport {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.transport-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.transport-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.transport-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.transport-item p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .transport-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .transport-section {
        padding: 30px 20px;
    }
    .transport-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .transport-item {
        padding: 20px 12px;
    }
    .transport-icon {
        width: 50px;
        height: 50px;
    }
    .transport-item h4 {
        font-size: 13px;
    }
    .transport-item p {
        font-size: 11px;
    }
}

/* ========== SHUTTLE SCHEDULE SECTION ========== */
.shuttle-schedule {
    margin-top: 40px;
    background: linear-gradient(135deg, #0a1e3c 0%, #0d4f6e 50%, #145374 100%);
    border-radius: 20px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 30, 60, 0.4);
}

.shuttle-schedule::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(46, 139, 192, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(0, 150, 199, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.shuttle-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.shuttle-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f5af19, #f12711);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.shuttle-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.shuttle-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.shuttle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.shuttle-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.shuttle-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.shuttle-card-icon svg {
    width: 22px;
    height: 22px;
    fill: #4facfe;
}

.shuttle-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.shuttle-card-location {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-bottom: 15px;
}

.shuttle-times {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shuttle-time-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.06);
    padding: 10px 12px;
    border-radius: 10px;
    gap: 8px;
}

.shuttle-time-dep, .shuttle-time-arr {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shuttle-time-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shuttle-time-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.shuttle-time-dep .shuttle-time-value {
    color: #4facfe;
}

.shuttle-time-arr .shuttle-time-value {
    color: #25d366;
}

.shuttle-time-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
}

/* Return Card - Farklı Stil */
.shuttle-card.return-card {
    border-color: rgba(37, 211, 102, 0.3);
}

.shuttle-card.return-card .shuttle-card-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(18, 140, 126, 0.2));
    border-color: rgba(37, 211, 102, 0.3);
}

.shuttle-card.return-card .shuttle-card-icon svg {
    fill: #25d366;
}

.shuttle-card.return-card .shuttle-time-row {
    justify-content: center;
}

.shuttle-card.return-card .shuttle-time-value {
    font-size: 24px;
    color: #25d366;
}

.shuttle-note {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.shuttle-note p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 0;
}

.shuttle-note strong {
    color: #4facfe;
}

/* Responsive */
@media (max-width: 992px) {
    .shuttle-grid {
        grid-template-columns: 1fr 1fr;
    }
    .shuttle-card.return-card {
        grid-column: span 2;
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .shuttle-schedule {
        padding: 25px 15px;
    }
    .shuttle-title {
        font-size: 22px;
        letter-spacing: 1px;
    }
    .shuttle-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .shuttle-card {
        padding: 18px 15px;
    }
    .shuttle-card.return-card {
        grid-column: span 1;
        width: 100%;
    }
    .shuttle-card h3 {
        font-size: 16px;
    }
    .shuttle-time-value {
        font-size: 16px;
    }
    .shuttle-card.return-card .shuttle-time-value {
        font-size: 22px;
    }
}
/* Shuttle WhatsApp CTA */
.shuttle-whatsapp {
    margin-top: 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 14px;
    padding: 20px 25px;
    position: relative;
    z-index: 2;
}

.shuttle-whatsapp-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.shuttle-whatsapp-text {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.shuttle-whatsapp-icon {
    font-size: 28px;
}

.shuttle-whatsapp-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

.shuttle-whatsapp-text p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}

.shuttle-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #128c7e;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.shuttle-whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.shuttle-whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: #25d366;
}

@media (max-width: 600px) {
    .shuttle-whatsapp {
        padding: 18px 20px;
    }
    .shuttle-whatsapp-content {
        flex-direction: column;
        text-align: center;
    }
    .shuttle-whatsapp-text {
        flex-direction: column;
        gap: 10px;
    }
    .shuttle-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}