/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

/* Fix for H1UserAgentFontSizeInSection deprecation warning */
section h1 {
	font-size: 2rem;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.6;
	color: #073763;
	background-color: #FFFFFF;
}

a {
	color: #073763;
	text-decoration: none;
}

a:hover {
	color: #003662;
}

/* Container */
.container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

/* Top Bar - EXACT COLORS FROM ORIGINAL */
.top-bar {
	background-color: #00c2f7 !important;
	color: #073763 !important;
	padding: 8px 0;
	font-size: 14px;
}

.top-bar-content {
	display: flex;
	justify-content: flex-end;
}

.contact-info {
	list-style: none;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.contact-info li {
	display: flex;
	align-items: center;
	font-weight: 500;
}

.contact-info a {
	color: #073763;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.contact-info a:hover {
	color: #003662;
}

/* Header - EXACT COLORS FROM ORIGINAL */
.site-header {
	background: #00c2f7 none repeat scroll 0 0 !important;
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	max-height: 100px;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.logo {
	line-height: 89px;
}

.logo img {
	height: 80px !important;
	width: auto;
}

.main-navigation .menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 35px;
	padding: 5px 10px;
	line-height: 95px;
	color: #fff;
	margin-left: 15px;
}

.menu-toggle:hover {
	color: #003662;
}

.fa-bars:before {
	content: "\f0f2" !important;
	font-size: 35px;
}

.main-navigation .menu {
	list-style: none;
	display: flex;
	gap: 0;
	align-items: center;
	flex-wrap: wrap;
}

.main-navigation .menu li {
	display: inline-block;
}

.main-navigation .menu a {
	display: inline-block;
	padding: 0 20px;
	line-height: 89px;
	font-size: 14px;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 1px;
	color: #003662;
	margin: 0;
	transition: all 0.3s ease;
}

.main-navigation .menu a:hover,
.main-navigation .menu .current a {
	font-weight: 600;
	background-color: #fff;
	color: #003662;
}

/* Main Content */
.main-content {
	padding: 20px 0;
}

/* Hero Section */
.hero-section {
	padding: 0;
	text-align: center;
}

.hero-section h1,
.hero-text {
	font-size: 2rem;
	line-height: 1.4;
	color: #073763;
	font-weight: 400;
	margin: 0;
}

/* Luggage Sizes Section - WITH DIFFERENT COLORED BORDERS */
.luggage-sizes-section {
	padding: 60px 0;
}

.luggage-grid {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 30px;
	align-items: start;
}

.luggage-item {
	text-align: center;
	padding: 20px;
	background-color: #fff;
	position: relative;
	box-sizing: border-box;
	min-height: 840px;
}

/* Small luggage - first border color (lime green from live site: rgb(157, 247, 8) = #9df708) */
.luggage-item:first-child {
	border: 30px solid #9df708;
}

/* Large luggage - different border color (dark blue) */
.luggage-item:last-child {
	border: 30px solid #073763;
}

.luggage-specs {
	margin-bottom: 20px;
}

.luggage-specs p {
	margin: 5px 0;
	font-size: 16px;
}

.luggage-item img {
	max-width: 100%;
	height: auto;
	margin: 15px 0;
	border-radius: 4px;
}

.luggage-price {
	font-size: 32px;
	color: #073763;
	margin-top: 15px;
	font-weight: 700;
}

.booking-form-container {
	min-height: 770px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 10px;
	background-color: #f9f9f9;
}

.booking-form-container iframe {
	width: 100%;
	height: 810px;
	border: none;
	border-radius: 4px;
}

/* Offices Info Section */
.offices-info-section {
	padding: 40px 0;
	text-align: center;
	font-size: 18px;
}

.offices-info-text {
	font-weight: 500;
	font-size: 28px;
	line-height: 34px;
	color: rgb(250, 4, 4);
}

/* Airport Maps Section (Hidden on mobile/tablet) */
.airport-maps-section {
	padding: 0;
	display: block;
}

.airport-maps-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0;
	align-items: center;
}

.map-item {
	border: 30px solid;
	box-sizing: border-box;
}

.map-item:nth-child(1) {
	border-color: #FA0404;
}

.map-item:nth-child(3) {
	border-color: #0CC97A;
}

.map-item iframe {
	width: 100%;
	height: 450px;
	border: none;
}

/* Iframe border removal - for all iframes */
iframe {
	border: 0;
}

.map-image {
	text-align: center;
	padding: 20px;
}

.map-image img {
	max-width: 100%;
	height: auto;
}

/* WhatsApp Section */
.whatsapp-section {
	padding: 25px 0;
	text-align: center;
	background-image: url('images/whatsapp.png'), url('images/whatsapp.png');
	background-size: contain, contain;
	background-position: center left, center right;
	background-repeat: no-repeat, no-repeat;
	background-color: transparent;
	position: relative;
}

.whatsapp-section a {
	color: #003662;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	transition: color 0.3s ease;
}

.whatsapp-section a:hover {
	color: #00C2F7;
}

.whatsapp-section p {
	margin-bottom: 15px;
	color: #073763;
}

.whatsapp-question {
	font-weight: 700;
	font-size: 32px;
	line-height: 40px;
	color: rgb(12, 201, 122);
}

.whatsapp-question a {
	font-weight: 700;
	font-size: 32px;
	line-height: 40px;
	color: rgb(12, 201, 122);
}

/* Cruise/Flight Section */
.cruise-flight-section {
	padding: 25px 0 0;
	background-color: #f8f8f8;
	max-height: 800px;
	overflow: hidden;
}

.cruise-container-inner {
	width: 100%;
	margin: 0;
	padding: 0;
}

.cruise-row {
	display: flex;
	margin: 0;
	padding: 0;
	gap: 0;
	align-items: stretch;
	width: 100%;
	/* height: 775px; */
	max-height: 775px;
}

.cruise-text-column {
	width: 50%;
	padding: 0;
	text-align: start;
	flex-shrink: 0;
	max-width: 800px;
	margin-left: auto;
	padding-left: 50px;
	padding-right: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cruise-text-column h2 {
	font-size: 36px;
	margin-bottom: 25px;
	color: #003662;
	line-height: 1.2;
	font-weight: 700;
}

.cruise-text-column p {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	color: #073763;
}

.cruise-image-column {
	width: 50%;
	padding: 0;
	text-align: center;
	flex-shrink: 0;
	position: relative;
	height: 100%;
	overflow: hidden;
}

.cruise-image-column img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	border: 30px solid pink;
	box-sizing: border-box;
	display: block;
}

/* Luggage Transfer Section */
.luggage-transfer-section {
	padding: 0 0 75px;
	background-color: #00C2F7;
	max-height: 800px;
	overflow: hidden;
}

.transfer-container-inner {
	width: 100%;
	margin: 0;
	padding: 0;
}

.transfer-row {
	display: flex;
	margin: 0;
	padding: 0;
	gap: 0;
	align-items: stretch;
	width: 100%;
	/* height: 775px; */
	max-height: 775px;
}

.transfer-map-column {
	width: 50%;
	padding: 0;
	text-align: center;
	flex-shrink: 0;
	position: relative;
	height: 100%;
	overflow: hidden;
}

.transfer-map-column iframe {
	width: 100%;
	height: 810px;
	border: none;
	border-radius: 0;
	display: block;
}

.transfer-info-column {
	width: 50%;
	padding: 0;
	text-align: start;
	flex-shrink: 0;
	max-width: 800px;
	margin-right: auto;
	padding-left: 50px;
	padding-right: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #FFFFFF;
}

.transfer-info-column h2 {
	font-size: 36px;
	margin-bottom: 25px;
	line-height: 1.2;
	font-weight: 700;
}

.transfer-info-column p {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
}

.transfer-info-column a {
	color: #FFFFFF;
	text-decoration: underline;
}

.transfer-info-column strong {
	font-weight: 700;
}

/* Advantages Section */
.advantages-section {
	padding: 80px 0;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.advantage-item {
	text-align: center;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 20px;
	background-color: #fff;
}

.advantage-item img {
	width: 100%;
	max-width: 310px;
	height: auto;
	margin-bottom: 20px;
	border-radius: 8px;
}

.advantage-item h3 {
	font-size: 28px;
	margin-bottom: 15px;
	color: #003662;
	font-weight: 700;
}

.advantage-item p {
	margin-bottom: 10px;
	color: #073763;
}


/* Other Services Section */
.other-services-section {
	padding: 80px 0;
	background-image: url('images/paralax-from-message-600px.jpg');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.other-services-section .container {
	position: relative;
}

.services-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.services-intro {
	text-align: center;
}

.services-intro a {
	color: #003662;
	text-decoration: none;
	font-weight: 500;
}

.other-services-section .services-content h2 {
	font-size: 32px;
	line-height: 1.3;
	color: #fff;
	text-align: center;
	font-weight: 700;
	margin: 0;
}

.services-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	width: 100%;
	justify-items: center;
	text-align: center;
}

.other-services-section .service-item {
	display: block;
	padding: 25px;
	background-color: #003662a6;
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.other-services-section .service-item:hover {
	background-color: #003662cc;
	transform: translateY(-2px);
}

.other-services-section .service-item p {
	margin-bottom: 10px;
	color: #fff;
}

.other-services-section .service-item p:first-child {
	font-weight: 500;
}

/* FAQ Section */
.faq-section {
	padding: 80px 0;
	background-color: #f8f8f8;
}

.faq-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
}

.faq-content h2 {
	font-size: 3rem;
	margin-bottom: 40px;
	color: #003662;
	font-weight: 700;
}

.accordion {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.accordion-item {
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	background-color: #FFFFFF;
	overflow: hidden;
}

.accordion-header {
	width: 100%;
	padding: 20px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 18px;
	font-weight: 500;
	color: #000000;
	transition: background-color 0.3s ease;
}

.accordion-header:hover {
	background-color: #f5f5f5;
}

.accordion-number {
	font-weight: 700;
	color: #003662;
	min-width: 30px;
}

.accordion-title {
	flex: 1;
}

.accordion-icon {
	font-size: 20px;
	color: #003662;
	transition: transform 0.3s ease;
}

.accordion-content {
	padding: 0 20px 20px 65px;
	color: #333333;
	line-height: 1.8;
}

.accordion-content a {
	color: #003662;
	text-decoration: none;
	font-weight: 500;
}

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

.faq-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

/* Testimonials Section */
.testimonials-section {
	padding: 80px 0;
}

.testimonials-section h2 {
	font-size: 42px;
	text-align: center;
	margin-bottom: 50px;
	color: #003662;
	font-weight: 700;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.testimonial-item {
	background-color: #f8f8f8;
	padding: 25px;
	border-radius: 8px;
}

.testimonial-item blockquote {
	margin-bottom: 20px;
}

.testimonial-item blockquote p {
	font-style: italic;
	line-height: 1.8;
	margin-bottom: 15px;
	color: #073763;
}

.testimonial-item footer {
	display: flex;
	align-items: center;
	gap: 10px;
}

.testimonial-item footer a {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #333333;
	transition: color 0.3s ease;
}

.testimonial-item footer a:hover {
	color: #003662;
}

.testimonial-item footer img {
	border-radius: 50%;
	width: 48px;
	height: 48px;
	object-fit: cover;
}

/* Locations Section */
.locations-section {
	padding: 80px 0;
	background-color: rgb(0, 194, 247);
	border-color: rgb(250, 4, 4);
	border-width: 30px 0px 0px 0px;
	border-style: solid;
}

.locations-section h2 {
	font-size: 42px;
	text-align: center;
	margin-bottom: 30px;
	color: #003662;
	font-weight: 700;
}

.locations-section p {
	font-weight: 100;
	font-size: 18px;
	color: #fff;
	line-height: 24px;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}

.locations-section a {
	color: #003662;
	text-decoration: none;
	font-weight: 500;
}

.locations-section a:hover {
	text-decoration: underline;
}

.location-map-section {
	padding: 0;
	background-color: #00C2F7;
	min-height: 760px;
	/* overflow: hidden; */
}

.location-container-inner {
	width: 100%;
	margin: 0;
	padding: 0;
}

.location-row {
	display: flex;
	margin: 0;
	padding: 0;
	gap: 0;
	align-items: stretch;
	width: 100%;
	/* height: 775px; */
	max-height: 775px;
}

.location-map-column {
	width: 50%;
	padding: 0;
	text-align: center;
	flex-shrink: 0;
	position: relative;
	height: 100%;
	overflow: hidden;
}

.location-map-column iframe {
	width: 100%;
	height: 760px;
	border: none;
	border-radius: 0;
	display: block;
}

.location-info-column {
	width: 50%;
	padding: 0;
	text-align: start;
	flex-shrink: 0;
	max-width: 800px;
	margin-right: auto;
	padding-left: 50px;
	padding-right: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #FFFFFF;
}

.location-info-column article {
	margin-bottom: 10px;
}

.location-info-column h3 {
	font-size: 32px;
	/* margin-bottom: 15px; */
	color: rgb(0, 54, 98);
	font-weight: 700;
}

.location-info-column h6 {
	font-size: 24px;
	margin-bottom: 15px;
	color: #003662;
	font-weight: 700;
}

.location-info-column p {
	margin-bottom: 15px;
	line-height: 1.8;
}

.location-info-column a {
	color: #FFFFFF;
	text-decoration: none;
	transition: color 0.3s ease;
}

.location-info-column a:hover {
	color: #003662;
}

.location-info-column a img {
	margin-right: 8px;
	vertical-align: middle;
}

/* Contact Section */
.contact-section {
	padding: 60px 0;
}

.contact-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.contact-header h1 {
	font-size: 80px;
	color: #00C2F7;
	text-transform: uppercase;
	line-height: 1;
	font-weight: 700;
}

.contact-methods p {
	margin-bottom: 20px;
}

.contact-methods a {
	color: #003662;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: color 0.3s ease;
}

.contact-methods a:hover {
	color: #00C2F7;
}

.contact-methods a img {
	vertical-align: middle;
}

/* Footer - EXACT COLORS FROM ORIGINAL */
.site-footer {
	border-bottom: 30px solid #073763;
	background: #fff;
	padding: 30px 0;
	text-align: center;
}

.site-footer .copyright {
	margin: 0;
	font-size: 14px;
	font-weight: 300;
	color: #073763;
}

.site-footer a {
	color: #073763;
	text-decoration: none;
	font-weight: 600 !important;
	transition: color 0.3s ease;
}

.site-footer a:hover {
	color: #003662;
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100vh;
	background-color: rgb(0, 155, 198);
	color: #fff;
	box-shadow: -2px 0 8px rgba(0,0,0,0.2);
	z-index: 2000;
	transition: right 0.3s ease;
	overflow-y: auto;
}

.mobile-menu.active {
	right: 0;
}

.close-menu {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: 1px solid #003662;
	color: #003662;
	font-size: 32px;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 4px;
}

.mobile-menu-content {
	padding: 60px 30px 30px;
}

.mobile-menu-content h3 {
	margin-bottom: 30px;
	font-size: 24px;
	color: #fff;
}

.mobile-menu-content ul {
	list-style: none;
}

.mobile-menu-content ul li {
	margin-bottom: 15px;
}

.mobile-menu-content ul a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	display: block;
	padding: 10px 0;
	transition: background 0.3s ease;
}

.mobile-menu-content ul a:hover,
.mobile-menu-content ul .current a {
	background: none !important;
	color: #fff;
}

/* Scroll to Top */
.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background-color: #003662;
	color: #FFFFFF;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	font-size: 24px;
	z-index: 1000;
	transition: background-color 0.3s ease, transform 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	display: none;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.scroll-to-top:hover {
	background-color: #00C2F7;
	transform: translateY(-3px);
}

/* Error Page */
.error-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 20px;
}

.error-content h1 {
	font-size: 120px;
	color: #003662;
	margin-bottom: 20px;
	line-height: 1;
	font-weight: 700;
}

.error-message {
	font-size: 24px;
	margin-bottom: 30px;
	color: #666666;
}

.home-link {
	display: inline-block;
	padding: 12px 30px;
	background-color: #003662;
	color: #FFFFFF;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s ease;
	font-weight: 500;
}

.home-link:hover {
	background-color: #00C2F7;
}

/* Responsive Design */
@media (max-width: 1400px) {
	.main-navigation .menu {
		display: none !important;
	}
	
	.main-navigation .menu-toggle {
		display: block;
		line-height: 110px;
	}
}

@media (max-width: 1024px) {
	.luggage-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.content-grid {
		grid-template-columns: 1fr;
	}

	.location-row {
		flex-direction: column;
	}

	.location-map-column,
	.location-info-column {
		width: 100%;
	}

	.location-info-column {
		margin-right: 0;
		margin-left: auto;
	}

	.location-map-column {
		margin-top: 0;
		height: 400px;
	}

	.transfer-row {
		flex-direction: column;
	}

	.transfer-map-column,
	.transfer-info-column {
		width: 100%;
	}

	.transfer-info-column {
		margin-right: 0;
		margin-left: auto;
	}

	.transfer-map-column {
		margin-top: 0;
		height: 400px;
	}

	.cruise-row {
		flex-direction: column;
	}

	.cruise-text-column,
	.cruise-image-column {
		width: 100%;
	}

	.cruise-image-column {
		margin-top: 30px;
	}

	.faq-grid {
		grid-template-columns: 1fr;
	}

	.advantages-grid {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.services-list {
		grid-template-columns: 1fr;
	}

	.airport-maps-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 991px) {
	.airport-maps-section {
		display: none;
	}
}

@media (max-width: 768px) {
	html {
		font-size: 14px;
	}

	.top-bar-content {
		justify-content: center;
	}

	.hero-text {
		font-size: 22px;
	}

	.content-text h2,
	.transfer-info h2 {
		font-size: 28px;
	}

	.contact-header {
		flex-direction: column;
		text-align: center;
	}

	.contact-header h1 {
		font-size: 48px;
	}

	.faq-content h1 {
		font-size: 36px;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.luggage-transfer-section .location-grid {
		grid-template-columns: 1fr;
	}

	.location-map-column iframe {
		height: 100%;
	}

	.transfer-map-column iframe {
		height: 100%;
	}

	.booking-form-container {
		min-height: 1000px;
	}

	.luggage-item {
		min-height: 600px;
	}

	.location-row {
		height: unset;
		max-height: none;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.contact-info {
		flex-direction: column;
		gap: 10px;
	}

	.logo img {
		height: 60px !important;
	}

	.header-content {
		padding: 0 15px;
	}

	.contact-header h1 {
		font-size: 36px;
	}

	.accordion-header {
		font-size: 16px;
		padding: 15px;
	}

	.accordion-content {
		padding: 0 15px 15px 50px;
	}

	.scroll-to-top {
		bottom: 20px;
		right: 20px;
		width: 45px;
		height: 45px;
		font-size: 20px;
	}
}
