	:root {
		--primary: #FFCC00;
		--dark: #0B1325;
		--light-bg: #F8F9FA;
		--text-dark: #333333;
		--text-muted: #666666;
		--white: #ffffff;
		--transition: all 0.3s ease;
	}

	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		font-family: 'Poppins', sans-serif;
	}

	body {
		color: var(--text-dark);
		background-color: var(--white);
		overflow-x: hidden;
	}

	/* Utility Classes */
	.container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 20px;
	}

	.btn {
		position: relative;
		overflow: hidden;
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 12px 28px;
		border-radius: 50px;
		font-weight: 600;
		text-decoration: none;
		transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
		cursor: pointer;
		border: none;
	}
	
	.btn i {
		transition: transform 0.25s ease;
	}

	.btn:hover {
		transform: translateY(-2px);
	}

	.btn:hover i {
		transform: translateX(5px);
	}



	.btn-outline:hover {
		border-color: var(--primary);
		color: var(--dark);
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
	}

	.btn-primary::before {
		content: "";
		position: absolute;
		top: 0;
		left: -80%;
		width: 50%;
		height: 100%;
		background: linear-gradient(
			120deg,
			transparent,
			rgba(255,255,255,0.45),
			transparent
		);
		transform: skewX(-20deg);
		transition: left 0.5s ease;
	}

	.btn-primary:hover::before {
		left: 130%;
	}

	.btn-primary span,
	.btn-primary i {
		position: relative;
		z-index: 1;
	}

	.btn-primary {
		background-color: var(--primary);
		color: var(--dark);
	}

	.btn-primary:hover {
		background-color: #e5b800;
	}

	.btn-outline {
		background-color: var(--white);
		color: var(--dark);
		border: 2px solid #E0E0E0;
	}

	.highlight {
		color: var(--primary);
	}

	/* Header & Navigation */
	header {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 100;
		padding: 20px 0;
	}

	.nav-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.logo {
		display: flex;
		align-items: center;
		gap: 10px;
		color: var(--white);
		text-decoration: none;
		font-weight: 700;
		font-size: 1.2rem;
	}

	.logo-sun {
		width: 35px;
		height: 35px;
		background: var(--primary);
		border-radius: 50%;
		position: relative;
	}

	.nav-links {
		display: flex;
		list-style: none;
		gap: 30px;
	}

	.nav-links a {
		position: relative;
		color: var(--white);
		text-decoration: none;
		font-size: 0.95rem;
		font-weight: 600;
		transition: color 0.25s ease, transform 0.25s ease;
		display: inline-flex;
		align-items: center;
	}
	
	.nav-links a.active {
		color: var(--primary);
	}

	.nav-links a.active::after {
		width: 100%;
	}
	
	.nav-links a::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: -8px;
		width: 0;
		height: 2px;
		background: var(--primary);
		border-radius: 999px;
		transition: width 0.25s ease;
	}

	.nav-links a:hover {
		color: var(--primary);
		transform: translateY(-2px);
	}

	.nav-links a:hover::after {
		width: 100%;
	}

	.nav-right {
		display: flex;
		align-items: center;
		gap: 20px;
	}

	.hamburger {
		display: none;
		color: var(--white);
		font-size: 1.5rem;
		cursor: pointer;
	}

	/* Hero Slider Section */
	.hero {
		position: relative;
		height: 100vh;
		min-height: 650px;
		overflow: hidden;
		display: flex;
		align-items: center;
		color: var(--white);
	}

	.slider-container {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
	}

	.slide {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center;
		opacity: 0;
		transition: opacity 1s ease-in-out;
		display: flex;
		align-items: center;
	}

	.slide::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(to right, rgba(11,19,37,0.85) 30%, rgba(11,19,37,0.2) 100%);
	}

	.slide.active {
		opacity: 1;
	}
	
	.slide:nth-child(1) { background-image: url('assets/site-images/slide-1.webp'); }
	.slide:nth-child(2) { background-image: url('assets/site-images/slide-2.webp'); }
	.slide:nth-child(3) { background-image: url('assets/site-images/slide-3.webp'); }
	.slide:nth-child(4) { background-image: url('assets/site-images/slide-4.webp'); }
	.slide:nth-child(5) { background-image: url('assets/site-images/slide-5.webp'); }

	.hero-content {
		max-width: 600px;
		z-index: 10;
	}

	.hero-tag {
		text-transform: uppercase;
		font-size: 0.85rem;
		letter-spacing: 2px;
		color: var(--primary);
		font-weight: 600;
		margin-bottom: 15px;
		display: block;
	}

	.hero h1 {
		font-size: 3.5rem;
		line-height: 1.1;
		font-weight: 700;
		margin-bottom: 20px;
	}

	.hero p {
		font-size: 1.1rem;
		color: #E0E0E0;
		margin-bottom: 35px;
		line-height: 1.6;
	}

	.hero-btns {
		display: flex;
		gap: 15px;
		margin-bottom: 30px;
	}

	.slider-dots {
		position: absolute;
		right: 30px;
		top: 50%;
		transform: translateY(-50%);
		display: flex;
		flex-direction: column;
		gap: 15px;
		z-index: 20;
	}

	.dot {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: rgba(255,255,255,0.4);
		cursor: pointer;
		transition: var(--transition);
	}

	.dot.active {
		background: var(--primary);
		transform: scale(1.3);
	}

	/* Features Bar Section */
	.features-bar {
		background: var(--white);
		padding: 40px 0;
		box-shadow: 0 10px 30px rgba(0,0,0,0.05);
		margin-top: -50px;
		position: relative;
		z-index: 30;
		border-radius: 8px;
	}

	.features-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}

	.feature-item {
		display: flex;
		align-items: center;
		gap: 15px;
	}

	.feature-icon {
		width: 50px;
		height: 50px;
		background: rgba(255, 204, 0, 0.1);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--dark);
		font-size: 1.2rem;
		flex-shrink: 0;
	}

	.feature-info h4 {
		font-size: 0.95rem;
		font-weight: 600;
		margin-bottom: 2px;
	}

	.feature-info p {
		font-size: 0.8rem;
		color: var(--text-muted);
	}

	/* Services Section */
	.services {
		padding: 100px 0;
		background-color: var(--white);
	}

	.section-header {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		margin-bottom: 50px;
	}

	.section-title {
		max-width: 500px;
	}

	.section-title > span {
		text-transform: uppercase;
		font-size: 0.8rem;
		color: var(--primary);
		font-weight: 600;
		letter-spacing: 2px;
	}
	
	.section-title h2 .highlight {
		font-size: inherit;
		font-weight: inherit;
		line-height: inherit;
		letter-spacing: normal;
		text-transform: none;
		color: var(--primary);
	}

	.section-title h2 {
		font-size: 2.5rem;
		font-weight: 700;
		line-height: 1.2;
		margin-top: 10px;
	}

	.section-desc {
		max-width: 400px;
		color: var(--text-muted);
		font-size: 0.95rem;
	}

	.services-grid {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 20px;
	}

	.service-card {
		background: var(--white);
		border-radius: 12px;
		overflow: hidden;
		box-shadow: 0 10px 20px rgba(0,0,0,0.03);
		border: 1px solid #EFEFEF;
		transition: var(--transition);
		display: flex;
		flex-direction: column;
		min-height: 360px;
	}

	.service-card > div:first-child {
		display: flex;
		flex-direction: column;
		flex: 1;
	}

	.service-card > div:first-child .service-body {
		flex: 1;
	}

	.service-card > .service-body {
		flex: 0 0 auto;
		padding: 0 20px 28px;
	}

	.service-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(0,0,0,0.08);
	}
	
	.service-action {
		margin-top: auto;
		padding: 0 20px 28px;
	}
	
	.service-card:hover .service-link {
		color: var(--primary);
	}

	.service-card:hover .service-link i {
		transform: translateX(5px);
	}

	.service-img {
		height: 150px;
		background-size: cover;
		background-position: center;
		position: relative;
	}

	.service-icon-badge {
		position: absolute;
		bottom: -15px;
		left: 20px;
		width: 35px;
		height: 35px;
		background: var(--primary);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 0.85rem;
		color: var(--dark);
	}

	.service-body {
		padding: 30px 20px 20px;
		flex-grow: 1;
	}

	.service-body h3 {
		font-size: 1.1rem;
		font-weight: 600;
		margin-bottom: 10px;
	}

	.service-body p {
		font-size: 0.85rem;
		color: var(--text-muted);
		line-height: 1.5;
		margin-bottom: 20px;
	}

	.service-link {
		position: relative;
		font-size: 0.85rem;
		font-weight: 700;
		color: var(--dark);
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		gap: 8px;
		transition: color 0.25s ease;
	}
	
	.service-link::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: -5px;
		width: 0;
		height: 2px;
		background: var(--primary);
		border-radius: 999px;
		transition: width 0.25s ease;
	}

	.service-link i {
		transition: transform 0.25s ease;
	}

	.service-link:hover {
		color: var(--primary);
	}

	.service-link:hover::after {
		width: 100%;
	}

	.service-link:hover i {
		transform: translateX(5px);
	}

	/* Stats Banner Section */
	.stats-banner {
		background:
			linear-gradient(rgba(11,19,37,0.85), rgba(11,19,37,0.85)),
			url('assets/site-images/stats-banner-iceland-road.webp');
		background-size: cover;
		background-position: center;
		padding: 80px 0;
		color: var(--white);
	}

	.stats-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.stats-left {
		max-width: 500px;
	}

	.stats-grid {
		display: flex;
		gap: 20px;
	}

	.stat-box {
		background: rgba(255,255,255,0.05);
		border: 1px solid rgba(255,255,255,0.1);
		padding: 20px 35px;
		border-radius: 8px;
		text-align: center;
		min-width: 140px;
	}

	.stat-box h2 {
		font-size: 2.2rem;
		color: var(--white);
		font-weight: 700;
	}

	.stat-box p {
		font-size: 0.75rem;
		color: #A0A5B0;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin-top: 5px;
	}

	/* NEW BOXED SECTION 1: Why Choose Us & Testimonials */
	.why-choose-us {
		padding: 100px 0;
		background-color: var(--white);
	}

	.showcase-layout {
		display: grid;
		grid-template-columns: 1fr 1.2fr 1fr;
		align-items: center;
		gap: 30px;
		margin-bottom: 80px;
	}

	.showcase-center-car {
		text-align: center;
		position: relative;
	}

	.showcase-center-car img {
		width: 100%;
		height: auto;
	}

	.why-card {
		display: flex;
		gap: 20px;
		margin-bottom: 40px;
	}

	.why-card-icon {
		width: 45px;
		height: 45px;
		background-color: var(--primary);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--dark);
		font-size: 1rem;
		flex-shrink: 0;
	}

	.why-card-content h3 {
		font-size: 1.1rem;
		font-weight: 600;
		margin-bottom: 5px;
	}

	.why-card-content p {
		font-size: 0.85rem;
		color: var(--text-muted);
		line-height: 1.5;
	}

	.testimonial-block {
		background-color: #FFFDF3;
		border-radius: 16px;
		padding: 40px;
		display: grid;
		grid-template-columns: 1.2fr 1fr;
		gap: 40px;
		align-items: center;
	}
	
	.reviews-block {
		background-color: #FFFDF3;
		border-radius: 16px;
		padding: 48px;
		display: grid;
		grid-template-columns: 1.1fr 0.9fr;
		gap: 48px;
		align-items: center;
	}

	.reviews-kicker {
		display: inline-block;
		text-transform: uppercase;
		font-size: 0.75rem;
		color: var(--primary);
		font-weight: 700;
		letter-spacing: 2px;
		margin-bottom: 12px;
	}

	.reviews-content h2 {
		font-size: 2rem;
		line-height: 1.2;
		color: var(--dark);
		margin-bottom: 18px;
	}

	.reviews-rating {
		display: flex;
		align-items: center;
		gap: 16px;
		margin-bottom: 28px;
	}

	.stars {
		color: var(--primary);
		font-size: 0.95rem;
		white-space: nowrap;
	}

	.reviews-rating p {
		font-size: 0.9rem;
		color: var(--text-muted);
		line-height: 1.5;
	}

	.featured-review {
		background: var(--white);
		border: 1px solid rgba(0,0,0,0.05);
		border-radius: 14px;
		padding: 26px;
		margin-bottom: 22px;
	}

	.featured-review i {
		color: var(--primary);
		font-size: 1.6rem;
		margin-bottom: 14px;
	}

	.featured-review p {
		font-size: 1rem;
		line-height: 1.65;
		color: var(--dark);
		margin-bottom: 20px;
	}

	.review-author strong {
		display: block;
		font-size: 0.95rem;
		color: var(--dark);
	}

	.review-author span {
		display: block;
		font-size: 0.8rem;
		color: var(--text-muted);
		margin-top: 3px;
	}

	.mini-reviews {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin-bottom: 24px;
	}

	.mini-review {
		background: rgba(255,255,255,0.65);
		border: 1px solid rgba(0,0,0,0.05);
		border-radius: 12px;
		padding: 18px;
	}

	.mini-review p {
		font-size: 0.85rem;
		line-height: 1.55;
		color: var(--dark);
		margin-bottom: 12px;
	}

	.mini-review span {
		font-size: 0.78rem;
		color: var(--text-muted);
		font-weight: 500;
	}

	.reviews-link {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		color: var(--dark);
		font-size: 0.9rem;
		font-weight: 700;
		text-decoration: none;
	}

	.reviews-link:hover {
		color: var(--primary);
	}

	.reviews-photo-placeholder {
		min-height: 360px;
		border-radius: 16px;
			background-image: url('assets/site-images/reviews-driver-luggage.webp');
			background-size: cover;
			background-position: center;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		color: var(--white);
		overflow: hidden;
	}

	.reviews-photo-placeholder i {
		font-size: 2rem;
		margin-bottom: 12px;
		color: var(--primary);
	}

	.reviews-photo-placeholder p {
		font-size: 1rem;
		font-weight: 700;
		margin-bottom: 4px;
	}

	.reviews-photo-placeholder span {
		font-size: 0.82rem;
		opacity: 0.85;
	}

	/* App Download CTA Block */
	.cta-banner {
		background: var(--primary);
		padding: 60px 0;
		position: relative;
		overflow: hidden;
	}

	.cta-flex {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.cta-left h2 {
		font-size: 2.2rem;
		font-weight: 700;
		color: var(--dark);
		line-height: 1.2;
		margin-bottom: 8px;
	}

	.cta-left p {
		color: #444;
		font-size: 0.95rem;
	}

	.app-badges {
		display: flex;
		gap: 15px;
		margin-top: 20px;
	}

	.app-badges img {
		height: 45px;
		cursor: pointer;
	}

	.cta-right {
		display: flex;
		align-items: center;
		gap: 30px;
	}

	.qr-code {
		background: var(--white);
		padding: 10px;
		border-radius: 8px;
		width: 110px;
		height: 110px;
	}

	/* NEW BOXED SECTION 2: Footer */
	footer {
		background-color: var(--white);
		padding: 60px 0 20px;
		border-top: 1px solid #EFEFEF;
	}

	.footer-grid {
		display: grid;
		grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
		gap: 40px;
		margin-bottom: 50px;
	}

	.footer-brand p {
		font-size: 0.85rem;
		color: var(--text-muted);
		margin: 15px 0 20px;
		line-height: 1.6;
	}

	.social-icons {
		display: flex;
		gap: 15px;
	}

	.social-icons a {
		color: var(--dark);
		font-size: 1.2rem;
		transition: var(--transition);
	}

	.social-icons a:hover {
		color: var(--primary);
	}

	.footer-col h4 {
		font-size: 1rem;
		font-weight: 600;
		margin-bottom: 20px;
	}

	.footer-col ul {
		list-style: none;
	}

	.footer-col ul li {
		margin-bottom: 12px;
	}

	.footer-col ul li a {
		font-size: 0.85rem;
		color: var(--text-muted);
		text-decoration: none;
		transition: var(--transition);
	}

	.footer-col ul li a:hover {
		color: var(--dark);
		padding-left: 5px;
	}

	.contact-info li {
		display: flex;
		align-items: center;
		font-size: 0.85rem;
		color: var(--text-muted);
	}
		
	.contact-actions {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.contact-actions li {
		margin-bottom: 0;
	}

	.contact-actions a {
		display: flex;
		align-items: center;
		gap: 12px;
		color: var(--text-muted);
		text-decoration: none;
		padding: 10px 0;
		transition: color 0.25s ease, transform 0.25s ease;
	}

	.contact-actions a:hover {
		color: var(--dark);
		transform: translateX(4px);
	}

	.contact-icon {
		width: 38px;
		height: 38px;
		border-radius: 50%;
		background: rgba(255, 204, 0, 0.14);
		color: var(--dark);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
	}

	.contact-actions a:hover .contact-icon {
		background: var(--primary);
		transform: scale(1.05);
	}

	.contact-actions strong {
		display: block;
		font-size: 0.85rem;
		color: var(--dark);
		line-height: 1.2;
	}

	.contact-actions small {
		display: block;
		font-size: 0.78rem;
		color: var(--text-muted);
		margin-top: 3px;
		line-height: 1.3;
	}

	.footer-bottom {
		border-top: 1px solid #EFEFEF;
		padding-top: 20px;
		display: flex;
		justify-content: space-between;
		font-size: 0.75rem;
		color: var(--text-muted);
	}

	.footer-bottom-links a {
		color: var(--text-muted);
		text-decoration: none;
		margin-left: 20px;
	}

	/* Mobile Responsive Breakpoints */
	@media (max-width: 1024px) {
		.services-grid {
			grid-template-columns: repeat(3, 1fr);
		}
		.features-grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 30px;
		}
		.showcase-layout {
			grid-template-columns: 1fr;
		}
		.showcase-center-car {
			order: -1;
			max-width: 450px;
			margin: 0 auto;
		}
		.footer-grid {
			grid-template-columns: repeat(2, 1fr);
		}
		.hero-car-overlay {
			display: none;
		}
	}

	@media (max-width: 768px) {
		.nav-links {
			display: none;
			flex-direction: column;
			position: absolute;
			top: 100%;
			left: 0;
			width: 100%;
			background: var(--dark);
			padding: 20px;
			gap: 15px;
			text-align: center;
			border-top: 1px solid rgba(255,255,255,0.1);
		}

		.nav-links.mobile-active {
			display: flex;
		}

		.hamburger {
			display: block;
		}

		.nav-right .btn {
			display: none;
		}

		.hero h1 {
			font-size: 2.5rem;
		}

		.section-header {
			flex-direction: column;
			align-items: flex-start;
			gap: 20px;
		}

		.services-grid {
			grid-template-columns: repeat(1, 1fr);
		}

		.stats-container {
			flex-direction: column;
			align-items: flex-start;
			gap: 40px;
		}

		.stats-grid {
			width: 100%;
			justify-content: space-between;
		}

		.testimonial-block {
			grid-template-columns: 1fr;
		}

		.footer-grid {
			grid-template-columns: 1fr;
		}

		.footer-bottom {
			flex-direction: column;
			gap: 10px;
			text-align: center;
		}

		.cta-flex {
			flex-direction: column;
			align-items: flex-start;
			gap: 30px;
		}
		
		.features-grid {
			grid-template-columns: repeat(1, 1fr);
		}
		
		.reviews-block {
			grid-template-columns: 1fr;
			padding: 28px;
			gap: 28px;
		}

		.reviews-rating {
			flex-direction: column;
			align-items: flex-start;
		}

		.mini-reviews {
			grid-template-columns: 1fr;
		}

		.reviews-photo-placeholder {
			min-height: 240px;
		}
		
		.stats-banner {
			padding: 70px 0;
		}

		.stats-container {
			align-items: stretch;
		}

		.stats-left {
			max-width: 100%;
		}

		.stats-left h2 {
			font-size: 2rem !important;
			line-height: 1.2;
		}

		.stats-grid {
			display: grid;
			grid-template-columns: 1fr;
			gap: 14px;
			width: 100%;
		}

		.stat-box {
			width: 100%;
			min-width: 0;
			padding: 18px 20px;
		}

		.stat-box h2 {
			font-size: 1.8rem;
		}

		.stat-box p {
			font-size: 0.7rem;
		}
		
		.stats-banner {
			background-position: center;
		}
		
	}
	
	@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

	/* Airport Transfers Page */
	.airport-hero {
    position: relative;
    background:
        linear-gradient(to right, rgba(11,19,37,0.88) 0%, rgba(11,19,37,0.65) 45%, rgba(11,19,37,0.25) 100%),
        url('assets/site-images/airport-transfers.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	}

	.airport-hero::before {
		display: none;
	}

	.airport-hero-compact {
		height: 72vh;
		min-height: 520px;
	}

	.airport-hero-compact {
		height: 72vh;
		min-height: 520px;
	}

	.airport-hero-compact .hero-content {
		max-width: 680px;
	}

	.airport-summary-section {
		background: var(--white);
		position: relative;
		z-index: 30;
	}

	.transfer-summary-card {
		background: var(--white);
		border: 1px solid #EFEFEF;
		border-radius: 12px;
		box-shadow: 0 14px 36px rgba(0,0,0,0.07);
		margin-top: -52px;
		padding: 28px;
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 0;
	}

	.summary-row {
		border-right: 1px solid #EFEFEF;
		padding: 0 20px;
	}

	.summary-row:first-child {
		padding-left: 0;
	}

	.summary-row:last-child {
		border-right: none;
		padding-right: 0;
	}

	.summary-row span {
		display: block;
		color: var(--text-muted);
		font-size: 0.72rem;
		font-weight: 700;
		letter-spacing: 1px;
		margin-bottom: 8px;
		text-transform: uppercase;
	}

	.summary-row strong {
		display: block;
		color: var(--dark);
		font-size: 0.92rem;
		line-height: 1.45;
	}

	.summary-route i {
		color: var(--primary);
		font-size: 0.75rem;
		margin: 0 5px;
	}

	.airport-main {
		padding: 90px 0;
	}

	.transfer-detail-grid {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 360px;
		gap: 42px;
		align-items: start;
	}

	.transfer-info-panel {
		display: grid;
		gap: 28px;
	}

	.detail-block {
		border-top: 1px solid #EFEFEF;
		padding-top: 24px;
	}

	.detail-block h3 {
		color: var(--dark);
		font-size: 1.05rem;
		margin-bottom: 12px;
	}

	.detail-block p,
	.plain-detail-list li {
		color: var(--text-muted);
		font-size: 0.95rem;
		line-height: 1.75;
	}

	.plain-detail-list {
		padding-left: 18px;
	}

	.plain-detail-list li {
		margin-bottom: 8px;
	}

	.note-block {
		background: #FFFDF3;
		border: 1px solid rgba(255, 204, 0, 0.35);
		border-radius: 12px;
		padding: 24px;
	}

	.airport-check-list {
		display: flex;
		flex-direction: column;
		gap: 14px;
		list-style: none;
	}

	.airport-check-list li {
		display: flex;
		gap: 12px;
		color: var(--text-dark);
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.airport-check-list i {
		width: 24px;
		height: 24px;
		border-radius: 50%;
		background: var(--primary);
		color: var(--dark);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 0.75rem;
		flex-shrink: 0;
		margin-top: 2px;
	}

	.booking-checklist-card {
		position: sticky;
		top: 24px;
		background: var(--dark);
		border-radius: 12px;
		padding: 30px;
		color: var(--white);
		box-shadow: 0 18px 40px rgba(0,0,0,0.1);
	}

	.booking-checklist-card h2 {
		font-size: 1.45rem;
		line-height: 1.25;
		margin-bottom: 22px;
	}

	.booking-checklist-card ul {
		list-style: none;
		display: grid;
		gap: 14px;
		margin-bottom: 26px;
	}

	.booking-checklist-card li {
		display: flex;
		align-items: center;
		gap: 12px;
		color: #CDD1DA;
		font-size: 0.92rem;
	}

	.booking-checklist-card li i {
		width: 34px;
		height: 34px;
		border-radius: 50%;
		background: rgba(255, 204, 0, 0.12);
		color: var(--primary);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}

	.airport-options-section {
		background: var(--light-bg);
		padding: 80px 0;
	}

	.transfer-options-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 18px;
	}

	.transfer-option-card {
		background: var(--white);
		border: 1px solid #EFEFEF;
		border-radius: 12px;
		padding: 22px;
		color: var(--dark);
		text-decoration: none;
		display: flex;
		align-items: center;
		gap: 14px;
		min-height: 108px;
		box-shadow: 0 10px 20px rgba(0,0,0,0.03);
		transition: var(--transition);
	}

	.transfer-option-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 14px 28px rgba(0,0,0,0.07);
	}

	.transfer-option-card i {
		width: 42px;
		height: 42px;
		border-radius: 50%;
		background: rgba(255, 204, 0, 0.14);
		color: var(--dark);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}

	.transfer-option-card span {
		font-size: 0.95rem;
		font-weight: 700;
		line-height: 1.35;
	}

	.airport-faq {
		background: var(--white);
	}
	
	.airport-faq .section-header {
		align-items: flex-start;
	}

	.airport-faq .faq-list {
		width: 100%;
		max-width: 100%;
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.airport-faq .faq-item {
		width: 100%;
		height: auto;
		background: var(--white);
		border: 1px solid #EFEFEF;
		border-radius: 12px;
		padding: 24px 28px;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
	}

	.airport-faq .faq-item summary {
		cursor: pointer;
		font-weight: 700;
		color: var(--dark);
		list-style: none;
		display: flex;
		justify-content: space-between;
		gap: 20px;
	}

	.airport-faq .faq-item summary::-webkit-details-marker {
		display: none;
	}

	.airport-faq .faq-item summary::after {
		content: "⌄";
		color: var(--primary);
		font-size: 1rem;
		transition: transform 0.25s ease;
	}

	.airport-faq .faq-item[open] summary::after {
		transform: rotate(180deg);
	}

	.airport-faq .faq-item p {
		margin-top: 14px;
		font-size: 0.9rem;
		line-height: 1.65;
		color: var(--text-muted);
	}

	.faq-list {
		display: grid;
		gap: 16px;
		max-width: 900px;
	}

	.faq-item {
		background: var(--white);
		border: 1px solid #EFEFEF;
		border-radius: 12px;
		padding: 20px 24px;
		box-shadow: 0 10px 20px rgba(0,0,0,0.03);
	}

	.faq-item summary {
		cursor: pointer;
		font-weight: 700;
		color: var(--dark);
		list-style: none;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
	}

	.faq-item summary::-webkit-details-marker {
		display: none;
	}

	.faq-item summary::after {
		content: "\f107";
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		color: var(--primary);
		transition: transform 0.25s ease;
	}

	.faq-item[open] summary::after {
		transform: rotate(180deg);
	}

	.faq-item p {
		color: var(--text-muted);
		font-size: 0.9rem;
		line-height: 1.7;
		margin-top: 14px;
	}

	.airport-final-cta .cta-right .btn-outline {
		border-color: var(--dark);
	}

	@media (max-width: 1024px) {
		.transfer-summary-card {
			grid-template-columns: repeat(2, 1fr);
			gap: 22px 0;
		}

		.summary-row:nth-child(2n) {
			border-right: none;
			padding-right: 0;
		}

		.summary-row:nth-child(2n + 1) {
			padding-left: 0;
		}

		.transfer-detail-grid {
			grid-template-columns: 1fr;
		}

		.booking-checklist-card {
			position: static;
		}

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

	@media (max-width: 768px) {
		.airport-hero-compact {
			height: auto;
			min-height: 560px;
			padding-top: 120px;
			padding-bottom: 70px;
		}

		.airport-hero-compact .hero-btns {
			flex-direction: column;
			align-items: flex-start;
		}

		.transfer-summary-card,
		.transfer-options-grid {
			grid-template-columns: 1fr;
		}

		.transfer-summary-card {
			margin-top: -34px;
			padding: 24px;
		}

		.summary-row,
		.summary-row:nth-child(2n),
		.summary-row:nth-child(2n + 1) {
			border-right: none;
			border-bottom: 1px solid #EFEFEF;
			padding: 0 0 18px;
		}

		.summary-row:last-child {
			border-bottom: none;
			padding-bottom: 0;
		}

		.airport-main,
		.airport-options-section {
			padding: 70px 0;
		}

		.booking-checklist-card {
			padding: 26px;
		}

		.airport-final-cta .cta-right {
			width: 100%;
		}
		
		.airport-faq .faq-list {
			grid-template-columns: 1fr;
		}

		.airport-faq .faq-item {
			padding: 22px;
		}
	}


