/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 20px;
	max-width: 1300px;
	margin: 0 auto;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo-img {
	height: 60px;
	width: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-text span {
	color: #2E86AB;
	font-size: 0.9rem;
	font-weight: 500;
}

.nav-menu {
	display: flex;
	gap: 2rem;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	transition: all 0.3s ease;
}

.nav-link:hover {
	background: linear-gradient(135deg, #2E86AB 0%, #4A90B8 100%);
	color: white;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(46, 134, 171, 0.3);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.nav-toggle span {
	width: 25px;
	height: 3px;
	background: #2E86AB;
	transition: 0.3s;
}

/* Language Switcher */
.language-switcher {
	position: relative;
	margin-left: 1rem;
}

.lang-dropdown {
	position: relative;
}

.lang-current {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border: 2px solid #e2e8f0;
	border-radius: 25px;
	background: white;
	color: #666;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	min-width: 80px;
	user-select: none;
}

.lang-current:hover {
	border-color: #2E86AB;
	color: #2E86AB;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(46, 134, 171, 0.2);
}

.lang-current.active {
	background: linear-gradient(135deg, #2E86AB 0%, #4A90B8 100%);
	border-color: #2E86AB;
	color: white;
	box-shadow: 0 2px 8px rgba(46, 134, 171, 0.3);
}

.lang-current .flag {
	font-size: 1.1rem;
	line-height: 1;
}

.lang-current .lang-text {
	font-weight: 600;
	letter-spacing: 0.5px;
}

.lang-arrow {
	margin-left: 0.3rem;
	font-size: 0.8rem;
	transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-arrow {
	transform: rotate(180deg);
}

.lang-menu {
	position: absolute;
	top: calc(100% + 5px);
	right: 0;
	background: white;
	border: 2px solid #e2e8f0;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1000;
	min-width: 120px;
	overflow: hidden;
}

.lang-dropdown.open .lang-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lang-option {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 1rem;
	color: #666;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	background: none;
	width: 100%;
	text-align: left;
}

.lang-option:hover {
	background: #f8fafc;
	color: #2E86AB;
}

.lang-option.active {
	background: linear-gradient(135deg, #2E86AB 0%, #4A90B8 100%);
	color: white;
}

.lang-option .flag {
	font-size: 1.1rem;
	line-height: 1;
}

.lang-option .lang-text {
	font-weight: 600;
	letter-spacing: 0.5px;
}

/* Hero Slider Section */
.hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}

.slider-container {
	position: relative;
	height: 100%;
	width: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.slide.active {
	opacity: 1;
}

.slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(46, 134, 171, 0.7) 0%, rgba(74, 144, 184, 0.5) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	color: white;
	max-width: 800px;
	padding: 2rem;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #f0f7ff;
}

.hero-description {
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
	color: #e6f3ff;
	line-height: 1.7;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	font-size: 1rem;
}

.btn-primary {
	background: linear-gradient(135deg, #2E86AB 0%, #4A90B8 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(46, 134, 171, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(46, 134, 171, 0.4);
	background: linear-gradient(135deg, #236B8E 0%, #3A7BA8 100%);
}

.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
	background: white;
	color: #2E86AB;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Slider Navigation */
.slider-nav {
	position: absolute;
	top: 95%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 2rem;
	pointer-events: none;
}

.slider-btn {
	background: rgba(46, 134, 171, 0.8);
	border: 2px solid rgba(255, 255, 255, 0.8);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	pointer-events: all;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
}

.slider-btn:hover {
	background: rgba(46, 134, 171, 1);
	border-color: #2E86AB;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(46, 134, 171, 0.4);
}

.slider-btn i {
	font-size: 1.2rem;
}

/* Slider Dots */
.slider-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 1rem;
	z-index: 3;
}

.dot {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.dot.active,
.dot:hover {
	background: #2E86AB;
	border-color: white;
	transform: scale(1.2);
}

/* Section Styles */
.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2E86AB;
	margin-bottom: 1rem;
}

.section-header p {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

/* Services Section */
.services {
	padding: 6rem 0;
	background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
	position: relative;
}

.services::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0 10 Q 25 0 50 10 T 100 10 V 20 H 0 Z" fill="%232E86AB" opacity="0.03"/></svg>');
	background-size: 200px 100px;
	animation: wave 20s linear infinite;
}

@keyframes wave {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100px);
	}
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(46, 134, 171, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #2E86AB 0%, #4A90B8 100%);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(46, 134, 171, 0.2);
}

.service-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #2E86AB 0%, #4A90B8 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.service-icon i {
	font-size: 2rem;
	color: white;
}

.service-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #2E86AB;
	margin-bottom: 1rem;
}

.service-card p {
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.service-list {
	list-style: none;
}

.service-list li {
	color: #555;
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

.service-list li:before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #2E86AB;
	font-weight: bold;
}

/* Transfers Section */
.transfers {
	padding: 6rem 0;
	background: linear-gradient(135deg, #2E86AB 0%, #4A90B8 100%);
	color: white;
}

.transfers .section-header h2,
.transfers .section-header p {
	color: white;
}

.transfers-content {
	max-width: 800px;
	margin: 0 auto;
}

.transfers-text h3 {
	font-size: 1.8rem;
	margin-bottom: 2rem;
	text-align: center;
}

.transfer-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.transfer-feature {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: rgba(255, 255, 255, 0.1);
	padding: 2rem;
	border-radius: 15px;
	backdrop-filter: blur(10px);
}

.transfer-feature i {
	font-size: 2rem;
	color: #ffd700;
	flex-shrink: 0;
	margin-top: 0.5rem;
}

.transfer-feature h4 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.transfer-feature p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
}

/* Hotels Section */
.hotels {
	padding: 6rem 0;
	background: white;
	position: relative;
}

.hotels::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(135deg, transparent 0%, rgba(46, 134, 171, 0.05) 100%);
}

.hotels-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
}

.hotels-text {
	position: relative;
	z-index: 2;
}

.hotels-text h3 {
	font-size: 2rem;
	color: #2E86AB;
	margin-bottom: 1.5rem;
	position: relative;
}

.hotels-text h3::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(135deg, #2E86AB 0%, #4A90B8 100%);
	border-radius: 2px;
}

.hotels-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #666;
	margin-bottom: 2rem;
}

.hotel-types {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-bottom: 2rem;
}

.hotel-type {
	padding: 1.5rem;
	background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
	border-radius: 15px;
	transition: all 0.3s ease;
	border: 1px solid rgba(46, 134, 171, 0.1);
}

.hotel-type:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(46, 134, 171, 0.15);
	border-color: rgba(46, 134, 171, 0.3);
}

.hotel-type i {
	font-size: 2.5rem;
	color: #2E86AB;
	margin-bottom: 1rem;
}

.hotel-type h4 {
	font-size: 1.2rem;
	color: #2E86AB;
	margin-bottom: 0.5rem;
}

.hotel-type p {
	color: #666;
	font-size: 0.95rem;
}

.hotel-benefits {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.benefit {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: white;
	padding: 1rem 1.5rem;
	border-radius: 25px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.benefit i {
	color: #2E86AB;
	font-size: 1.2rem;
}

.benefit span {
	color: #333;
	font-weight: 500;
}

/* Gallery Section */
.gallery {
	padding: 6rem 0;
	background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
	position: relative;
}

.gallery::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, #2E86AB, transparent);
}

.gallery-slider {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(46, 134, 171, 0.2);
	background: white;
	padding: 1rem;
}

.gallery-container {
	position: relative;
	height: 500px;
	overflow: hidden;
	border-radius: 20px;
}

.gallery-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all 0.5s ease-in-out;
	transform: scale(1.1);
}

.gallery-slide.active {
	opacity: 1;
	transform: scale(1);
}

.gallery-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
	transition: transform 0.3s ease;
}

.gallery-slide:hover img {
	transform: scale(1.05);
}

/* Gallery Navigation */
.gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 1rem;
	z-index: 3;
}

.gallery-btn {
	background: rgba(255, 255, 255, 0.9);
	border: none;
	color: #2E86AB;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-btn:hover {
	background: #2E86AB;
	color: white;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(46, 134, 171, 0.3);
}

.gallery-btn i {
	font-size: 1.1rem;
}

/* Gallery Dots */
.gallery-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.8rem;
	z-index: 3;
}

.gallery-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.gallery-dot.active,
.gallery-dot:hover {
	background: #2E86AB;
	border-color: white;
	transform: scale(1.3);
}

/* Gallery Counter */
.gallery-counter {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	z-index: 3;
}

/* Lightbox */
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.lightbox.active {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
}

.lightbox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.lightbox-container {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-content {
	position: relative;
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
	max-width: 100%;
	max-height: 100%;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(0, 0, 0, 0.7);
	border: none;
	color: white;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	backdrop-filter: blur(5px);
}

.lightbox-close:hover {
	background: #2E86AB;
	transform: scale(1.1);
}

.lightbox-close i {
	font-size: 1.2rem;
}

#lightboxImage {
	width: 100%;
	height: auto;
	max-width: 80vw;
	max-height: 70vh;
	object-fit: contain;
	display: block;
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	z-index: 5;
}

.lightbox-btn {
	background: rgba(255, 255, 255, 0.9);
	border: none;
	color: #2E86AB;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lightbox-btn:hover {
	background: #2E86AB;
	color: white;
	transform: scale(1.1);
}

.lightbox-btn i {
	font-size: 1.3rem;
}

.lightbox-counter {
	position: absolute;
	top: 20px;
	left: 20px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 0.8rem 1.2rem;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: 500;
	backdrop-filter: blur(5px);
}

.lightbox-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: white;
	padding: 3rem 2rem 1.5rem;
	text-align: center;
}

.lightbox-caption p {
	font-size: 1.1rem;
	margin: 0;
	font-weight: 500;
}

/* Contact Section */
.contact {
	padding: 6rem 0;
	background: white;
	position: relative;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(46, 134, 171, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(74, 144, 184, 0.05) 0%, transparent 50%);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
	position: relative;
	z-index: 2;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item {
	padding: 1.5rem;
	gap: 1rem;
	background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
	border-radius: 20px;
	border-left: 5px solid #2E86AB;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contact-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -50px;
	width: 100px;
	height: 100%;
	background: linear-gradient(135deg, rgba(46, 134, 171, 0.1) 0%, transparent 100%);
	transform: skewX(-15deg);
	transition: all 0.3s ease;
}

.contact-item:hover {
	transform: translateY(-3px);
}

.contact-item:hover::before {
	right: -20px;
}

.contact-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #2E86AB 0%, #4A90B8 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-icon i {
	font-size: 1.5rem;
	color: white;
}

.contact-details h4 {
	font-size: 1.3rem;
	color: #2E86AB;
	margin-bottom: 0.5rem;
}

.contact-details p {
	color: #666;
	margin-bottom: 0.3rem;
}

.contact-details a {
	color: #2E86AB;
	text-decoration: none;
	font-weight: 600;
}

.contact-details a:hover {
	text-decoration: underline;
}

.contact-cta {
	padding: 2rem 1.5rem;
	margin-top: 2rem;
	background: linear-gradient(135deg, #2E86AB 0%, #4A90B8 100%);
	text-align: center;
	color: white;
	height: fit-content;
}

.contact-cta h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.contact-cta p {
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
	background: #1a202c;
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
	color: #2E86AB;
	margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
	color: #a0aec0;
	margin-bottom: 0.5rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section li {
	transition: color 0.3s ease;
}

.footer-section li:hover {
	color: white;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #2d3748;
	color: #718096;
}

.footer-legal-link {
	color: #a0aec0;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-legal-link:hover {
	color: #2E86AB;
	text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
	color: white;
	padding: 1.5rem 0;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.cookie-text h4 {
	color: #2E86AB;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.cookie-text p {
	margin: 0;
	line-height: 1.5;
	color: #e2e8f0;
}

.cookie-link {
	color: #2E86AB;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.cookie-link:hover {
	color: #4A90B8;
}

.cookie-actions {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.cookie-btn {
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.cookie-accept {
	background: linear-gradient(135deg, #2E86AB 0%, #4A90B8 100%);
	color: white;
}

.cookie-accept:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(46, 134, 171, 0.4);
}

.cookie-settings {
	background: transparent;
	color: #e2e8f0;
	border: 2px solid #4a5568;
}

.cookie-settings:hover {
	border-color: #2E86AB;
	color: #2E86AB;
}

.cookie-decline {
	background: transparent;
	color: #a0aec0;
	border: 2px solid #2d3748;
}

.cookie-decline:hover {
	border-color: #e53e3e;
	color: #e53e3e;
}

/* Cookie Modal */
.cookie-modal,
.privacy-modal,
.terms-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	z-index: 10001;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.cookie-modal.show,
.privacy-modal.show,
.terms-modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
}

.cookie-modal-content,
.privacy-modal-content,
.terms-modal-content {
	background: white;
	border-radius: 15px;
	max-width: 600px;
	max-height: 80vh;
	width: 90%;
	overflow: hidden;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.cookie-modal-header,
.privacy-modal-header,
.terms-modal-header {
	background: linear-gradient(135deg, #2E86AB 0%, #4A90B8 100%);
	color: white;
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cookie-modal-header h3,
.privacy-modal-header h3,
.terms-modal-header h3 {
	margin: 0;
	font-size: 1.3rem;
}

.cookie-modal-close,
.privacy-modal-close,
.terms-modal-close {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cookie-modal-close:hover,
.privacy-modal-close:hover,
.terms-modal-close:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.cookie-modal-body,
.privacy-modal-body,
.terms-modal-body {
	padding: 2rem;
	max-height: 400px;
	overflow-y: auto;
}

.cookie-category {
	margin-bottom: 1.5rem;
	padding: 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
}

.cookie-category-header {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.cookie-switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 25px;
	flex-shrink: 0;
	margin-top: 2px;
}

.cookie-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: 0.4s;
	border-radius: 25px;
}

.slider:before {
	position: absolute;
	content: "";
	height: 19px;
	width: 19px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}

input:checked+.slider {
	background-color: #2E86AB;
}

input:checked+.slider:before {
	transform: translateX(25px);
}

input:disabled+.slider {
	background-color: #4a5568;
	cursor: not-allowed;
}

.cookie-category-info h4 {
	margin: 0 0 0.5rem 0;
	color: #333;
	font-size: 1.1rem;
}

.cookie-category-info p {
	margin: 0;
	color: #666;
	font-size: 0.9rem;
	line-height: 1.4;
}

.cookie-modal-footer {
	padding: 1.5rem 2rem;
	border-top: 1px solid #e2e8f0;
	text-align: center;
}

/* Privacy Policy & Terms Styles */
.privacy-section,
.terms-section {
	margin-bottom: 2rem;
}

.privacy-section h4,
.terms-section h4 {
	color: #2E86AB;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.privacy-section p,
.terms-section p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.privacy-section ul,
.terms-section ul {
	color: #666;
	line-height: 1.6;
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

.privacy-section a,
.terms-section a {
	color: #2E86AB;
	text-decoration: none;
}

.privacy-section a:hover,
.terms-section a:hover {
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		height: 100vh;
		background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		transition: right 0.3s ease;
		backdrop-filter: blur(10px);
		border-left: 2px solid rgba(46, 134, 171, 0.2);
	}

	.nav-menu.active {
		right: 0;
		box-shadow: -10px 0 30px rgba(46, 134, 171, 0.1);
	}

	.nav-toggle {
		display: flex;
	}

	.nav-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
		background: #2E86AB;
	}

	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
		background: #2E86AB;
	}

	.slider-nav {
		padding: 0 1rem;
	}

	.language-switcher {
		position: fixed;
		top: 20px;
		left: 20px;
		z-index: 1001;
	}

	.lang-current {
		padding: 0.4rem 0.8rem;
		font-size: 0.8rem;
		min-width: 70px;
	}

	.lang-menu {
		right: auto;
		left: 0;
		min-width: 100px;
	}

	.lang-dropdown.open .lang-menu {
		box-shadow: 0 10px 30px rgba(46, 134, 171, 0.2);
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 100%;
		max-width: 300px;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		padding: 2rem;
	}

	.transfer-features {
		grid-template-columns: 1fr;
	}

	.hotel-types {
		grid-template-columns: 1fr;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contact-item {
		flex-direction: column;
		text-align: center;
	}

	.contact-cta {
		margin-top: 2rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hotel-benefits {
		flex-direction: column;
		align-items: center;
	}

	.gallery-container {
		height: 350px;
	}

	.gallery-nav {
		padding: 0 0.5rem;
	}

	.gallery-btn {
		width: 40px;
		height: 40px;
	}

	.gallery-btn i {
		font-size: 1rem;
	}

	.gallery-dots {
		gap: 0.6rem;
		bottom: 15px;
	}

	.gallery-dot {
		width: 10px;
		height: 10px;
	}

	.gallery-counter {
		top: 15px;
		right: 15px;
		padding: 0.4rem 0.8rem;
		font-size: 0.8rem;
	}

	.lightbox-close {
		top: 15px;
		right: 15px;
		width: 40px;
		height: 40px;
	}

	.lightbox-close i {
		font-size: 1.1rem;
	}

	.lightbox-btn {
		width: 45px;
		height: 45px;
	}

	.lightbox-btn i {
		font-size: 1.2rem;
	}

	.lightbox-nav {
		padding: 0 15px;
	}

	.lightbox-counter {
		top: 15px;
		left: 15px;
		padding: 0.6rem 1rem;
		font-size: 0.9rem;
	}

	.lightbox-caption {
		padding: 2rem 1.5rem 1rem;
	}

	.lightbox-caption p {
		font-size: 1rem;
	}

	#lightboxImage {
		max-width: 95vw;
		max-height: 75vh;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-content {
		padding: 1rem;
	}

	.service-card,
	.transfer-feature,
	.hotel-type {
		padding: 1.5rem;
	}

	.contact-item {
		padding: 1.5rem;
	}

	.contact-cta {
		padding: 2rem 1.5rem;
	}

	.gallery-container {
		height: 250px;
	}

	.gallery-slider {
		border-radius: 15px;
	}

	.gallery-nav {
		padding: 0 0.3rem;
	}

	.gallery-btn {
		width: 35px;
		height: 35px;
	}

	.gallery-btn i {
		font-size: 0.9rem;
	}

	.gallery-dots {
		gap: 0.5rem;
		bottom: 10px;
	}

	.gallery-dot {
		width: 8px;
		height: 8px;
	}

	.gallery-counter {
		top: 10px;
		right: 10px;
		padding: 0.3rem 0.6rem;
		font-size: 0.7rem;
	}

	.lightbox-close {
		top: 10px;
		right: 10px;
		width: 35px;
		height: 35px;
	}

	.lightbox-close i {
		font-size: 1rem;
	}

	.lightbox-btn {
		width: 40px;
		height: 40px;
	}

	.lightbox-btn i {
		font-size: 1.1rem;
	}

	.lightbox-nav {
		padding: 0 10px;
	}

	.lightbox-counter {
		top: 10px;
		left: 10px;
		padding: 0.5rem 0.8rem;
		font-size: 0.8rem;
	}

	.lightbox-caption {
		padding: 1.5rem 1rem 0.8rem;
	}

	.lightbox-caption p {
		font-size: 0.9rem;
	}

	#lightboxImage {
		max-width: 98vw;
		max-height: 80vh;
	}

	.lightbox-container {
		max-width: 98vw;
		max-height: 98vh;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.cookie-actions {
		flex-wrap: wrap;
		justify-content: center;
	}

	.cookie-btn {
		padding: 0.7rem 1.2rem;
		font-size: 0.85rem;
	}

	.cookie-modal-content,
	.privacy-modal-content,
	.terms-modal-content {
		max-height: 90vh;
		width: 95%;
	}

	.cookie-modal-header,
	.privacy-modal-header,
	.terms-modal-header {
		padding: 1rem 1.5rem;
	}

	.cookie-modal-body,
	.privacy-modal-body,
	.terms-modal-body {
		padding: 1.5rem;
		max-height: 60vh;
	}

	.cookie-category-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.8rem;
	}

	.cookie-switch {
		align-self: flex-start;
	}
}

/* Smooth animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.service-card,
.transfer-feature,
.hotel-type,
.contact-item {
	animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.service-card,
.hotel-type,
.contact-item {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.hotel-type:hover {
	transform: translateY(-8px);
}

/* Focus styles for accessibility */
.nav-link:focus,
.btn:focus {
	outline: 2px solid #2E86AB;
	outline-offset: 2px;
}

/* Print styles */
@media print {

	.header,
	.nav-toggle,
	.hero-buttons,
	.btn {
		display: none;
	}

	.hero {
		height: auto;
		padding: 2rem 0;
	}

	body {
		color: #000;
		background: #fff;
	}
}