* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #333;
	background: #f8f9fa;
}

.header {
	background: linear-gradient(135deg, #7358b4 0%, #764ba2 100%);
	color: white;
	padding: 2rem 0;
	text-align: center;
}

.header img {
	width: 500px;
	height: auto;
	margin-bottom: 1rem;
	filter: invert(1);
}

.header-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 1rem;
}

.header-btn {
	padding: 0.5rem 1.5rem;
	border: none;
	background: transparent;
	color: white;
	font-size: 1.5rem;
	font-weight: 100;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	position: relative;
}

.header-btn:hover {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: underline;
}

.header-btn.primary {
	font-weight: 100;
}

.header-btn.primary:hover {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: underline;
}

/* Text display control for responsive design */
.mobile-text {
	display: none;
}

.desktop-text {
	display: inline;
}

.header h1 {
	font-size: 2.5rem;
	font-weight: 300;
	margin-bottom: 0.5rem;
}

.header p {
	font-size: 1.1rem;
	opacity: 0.9;
}

.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.main-content {
	background: white;
	margin: -2rem auto 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	overflow: hidden;
}

.section-header {
	background: #f8f9fa;
	padding: 1.5rem 2rem;
	border-bottom: 1px solid #dee2e6;
}

.filter-buttons {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.filter-btn {
	flex: 1;
	min-width: 100px;
	padding: 0.75rem 1rem;
	border: 2px solid #7358b4;
	background: white;
	color: #7358b4;
	font-size: 0.9rem;
	font-weight: 500;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: capitalize;
}

.filter-btn:hover {
	background: #7358b4;
	color: white;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.filter-btn.active {
	background: #7358b4;
	color: white;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.faq-list {
	padding: 0;
}

.faq-item {
	border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	width: 100%;
	padding: 1.5rem 2rem;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.2rem;
	font-weight: 500;
	color: #495057;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.2s ease;
}

.faq-question:hover {
	background: #f8f9fa;
	color: #754ca4;
}

.faq-question:focus {
	outline: none;
	background: #f8f9fa;
}

.faq-icon {
	font-size: 1.2rem;
	color: #6c757d;
	transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
	color: #754ca4;
}

.faq-answer {
	padding: 0 2rem 1.5rem;
	color: #6c757d;
	line-height: 1.7;
	display: none;
}

.faq-item.active .faq-answer {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-answer p {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

.faq-answer ul, .faq-answer ol {
	margin: 1rem 0;
	padding-left: 1.5rem;
}

.faq-answer li {
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.faq-answer strong {
	color: #495057;
	font-weight: 600;
}

.faq-answer a {
	color: #007bff;
	text-decoration: none;
}

.faq-answer a:hover {
	text-decoration: underline;
}

.image-container {
	text-align: center;
	margin: 1.5rem 0;
}

.image-container img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-caption {
	font-size: 0.9rem;
	color: #6c757d;
	margin-top: 0.5rem;
	font-style: italic;
}

.highlight {
	background: #fff3cd;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
	font-weight: 600;
	color: #856404;
}

/* Language Dropdown Styles */
.language-dropdown {
	position: relative;
	display: inline-block;
}

.language-dropdown .dropdown-content {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.95);
	min-width: 80px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	z-index: 1000;
	padding: 0.5rem 0;
	margin-top: 0.05rem;
	opacity: 0;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	visibility: hidden;
}

.language-dropdown .dropdown-content a {
	color: #333;
	padding: 0.5rem 1rem;
	text-decoration: none;
	display: block;
	font-weight: 500;
	transition: background-color 0.2s ease;
}

.language-dropdown .dropdown-content a:hover {
	background-color: rgba(102, 126, 234, 0.1);
	color: #7358b4;
}

.language-dropdown:hover .dropdown-content {
	display: block;
	opacity: 1;
	visibility: visible;
}

/* Add a small invisible bridge between EN and dropdown */
.language-dropdown::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 0.05rem;
	background: transparent;
	z-index: 999;
}

.language-dropdown .header-btn::after {
	content: ' ▼';
	font-size: 0.8rem;
	margin-left: 0.3rem;
	opacity: 0.7;
}

/* Footer Styles */
.footer-section {
	background: #f8f9fa;
	padding: 2rem 0 2rem;
	margin-top: 3rem;
	border-top: 1px solid #dee2e6;
}

.footer-content {
	margin-bottom: 2rem;
}

.footer-description {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #495057;
	text-align: justify;
	margin-bottom: 0;
}

.footer-link {
	color: #FF5A60;
	text-decoration: none;
	font-weight: 600;
}

.footer-link:hover {
	color: #e04348;
	text-decoration: underline;
}

.booking-cards {
	margin-bottom: 2rem;
}

.booking-card {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.booking-image {
	width: 100%;
	height: auto;
	display: block;
}

.footer-copyright {
	text-align: center;
}

.footer-copyright p {
	margin: 0;
	color: #6c757d;
	font-size: 0.95rem;
}

/* About Us Section */
.about-section {
	background: white;
	padding: 4rem 0;
	margin-top: 3rem;
}

.about-section .section-title {
	font-size: 2.5rem;
	font-weight: 300;
	color: #333;
	margin-bottom: 1rem;
}

.about-section .section-divider {
	width: 80px;
	height: 3px;
	background: linear-gradient(135deg, #7358b4 0%, #764ba2 100%);
	margin: 0 auto 3rem;
	border-radius: 2px;
}

.about-image {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 2rem;
	border: 4px solid #f8f9fa;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-content h3 {
	font-size: 1.8rem;
	color: #7358b4;
	margin-bottom: 1rem;
	font-weight: 500;
}

.about-description {
	font-size: 1.1rem;
	color: #6c757d;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.about-highlights {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	justify-content: center;
}

.about-highlights.text-center {
	align-items: center;
}

.highlight-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	color: #495057;
	justify-content: center;
}

.highlight-item i {
	color: #ffc107;
	font-size: 1.6rem;
}

/* Book a Tour Section */
.book-tour-section {
	padding: 4rem 0;
	margin-top: 3rem;
}

.book-tour-section .section-title {
	font-size: 2.5rem;
	font-weight: 300;
	color: #333;
	margin-bottom: 1rem;
}

.book-tour-section .section-divider {
	width: 80px;
	height: 3px;
	background: linear-gradient(135deg, #7358b4 0%, #764ba2 100%);
	margin: 0 auto 1rem;
	border-radius: 2px;
}

.book-tour-section .section-subtitle {
	font-size: 1.2rem;
	color: #6c757d;
	margin-bottom: 3rem;
	font-weight: 300;
}

.tour-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.tour-image {
	height: auto;
	overflow: hidden;
}

.tour-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
	transform: scale(1.05);
}

.tour-content {
	padding: 2rem;
}

.tour-content h4 {
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 1rem;
	font-weight: 500;
}

.tour-content p {
	color: #6c757d;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.tour-features {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

.tour-features li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	color: #495057;
}

.tour-features i {
	color: #28a745;
	font-size: 1rem;
}

.tour-cta {
	text-align: center;
}

.btn {
	display: inline-block;
	padding: 0.75rem 2rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
}

.btn-primary {
	background: linear-gradient(135deg, #7358b4 0%, #764ba2 100%);
	color: white;
	border-color: #7358b4;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #6343a0 0%, #6a4190 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(115, 88, 180, 0.3);
	color: white;
	text-decoration: none;
}

.btn-outline-primary {
	background: transparent;
	color: #7358b4;
	border-color: #7358b4;
}

.btn-outline-primary:hover {
	background: #7358b4;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(115, 88, 180, 0.3);
	text-decoration: none;
}

.contact-info {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	margin-top: 3rem;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-info h5 {
	color: #333;
	margin-bottom: 1rem;
	font-size: 1.3rem;
	font-weight: 500;
}

.contact-link {
	color: #7358b4;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.contact-link:hover {
	color: #6343a0;
	text-decoration: underline;
}

.contact-link i {
	margin-right: 0.5rem;
}

.divider {
	margin: 0 1rem;
	color: #dee2e6;
}

/* Back to Top Button */
#myBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: #7358b4;
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

#myBtn:hover {
	background-color: #5a4791;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

#myBtn:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
	#myBtn {
		bottom: 15px;
		right: 15px;
		width: 50px;
		height: 50px;
		padding: 12px;
		font-size: 16px;
	}
}

/* Responsive Styles */
@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}

	.header h1 {
		font-size: 2rem;
	}

	.header img {
		width: 300px;
		height: auto;
	}

	.header-buttons {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0.6rem;
		align-items: center;
		justify-content: center;
	}

	.header-btn {
		padding: 0.4rem 0.8rem;
		font-size: 2rem;
		white-space: nowrap;
	}

	/* Hide desktop text and show mobile text on mobile */
	.desktop-text {
		display: none;
	}

	.mobile-text {
		display: inline;
	}

	.faq-question {
		padding: 1.25rem 1.5rem;
		font-size: 1.2rem;
	}

	.faq-answer {
		padding: 0 1.5rem 1.25rem;
	}

	.section-header {
		padding: 1.25rem 1.5rem;
	}

	.filter-buttons {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 0.4rem;
	}

	.filter-btn {
		min-width: unset;
		width: 100%;
		padding: 0.7rem 0.5rem;
		font-size: 0.8rem;
		margin-bottom: 0;
		text-align: center;
		border-radius: 6px;
	}

	.language-dropdown {
		display: inline-block;
		position: relative;
	}

	.language-dropdown .dropdown-content {
		position: absolute;
		top: 100%;
		right: 0;
		background: rgba(0, 0, 0, 0.85);
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		margin-top: 0.5rem;
		padding: 0.5rem;
		border-radius: 6px;
		display: none;
		opacity: 0;
		visibility: hidden;
		z-index: 1000;
	}

	.language-dropdown:hover .dropdown-content {
		display: block;
		opacity: 1;
		visibility: visible;
	}

	.language-dropdown .dropdown-content a {
		color: white;
		padding: 0.3rem 0.6rem;
		font-size: 0.85rem;
		opacity: 0.8;
		display: block;
		text-align: center;
		white-space: nowrap;
	}

	.language-dropdown .dropdown-content a:hover {
		background: rgba(255, 255, 255, 0.1);
		color: white;
		opacity: 1;
		text-decoration: none;
	}

	.language-dropdown .header-btn::after {
		content: ' ▼';
		font-size: 0.6rem;
		margin-left: 0.2rem;
		opacity: 0.7;
	}

	.about-section,
	.book-tour-section {
		margin-top: 2rem;
		padding: 2rem 0;
	}
	
	.about-section .section-title,
	.book-tour-section .section-title {
		font-size: 2rem;
	}
	
	.about-image {
		width: 150px;
		height: 150px;
	}
	
	.about-content h3 {
		font-size: 1.5rem;
	}
	
	.about-highlights {
		margin-top: 2rem;
	}
	
	.tour-content {
		padding: 1.5rem;
	}
	
	.tour-content h4 {
		font-size: 1.3rem;
	}
	
	.contact-info {
		padding: 1.5rem;
		margin-top: 2rem;
	}
	
	.contact-info p {
		flex-direction: column;
		gap: 1rem;
	}
	
	.divider {
		display: none;
	}
}

@media (max-width: 480px) {
	.about-section .section-title,
	.book-tour-section .section-title {
		font-size: 1.8rem;
	}
	
	.btn {
		padding: 0.6rem 1.5rem;
		font-size: 0.9rem;
	}

	.header-btn.primary {
		font-weight: 500;
	}
	
	.header-buttons {
		gap: 0.4rem;
	}
	
	.header-btn {
		padding: 0.3rem 0.6rem;
		font-size: 1.4rem;
		font-weight: 500;
	}
    .highlight-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1.2rem;
        color: #495057;
        justify-content: center;
    }

    .highlight-item i {
        color: #ffc107;
        font-size: 1.5rem;
    }
}

/* Styles for overlapping images */
.overlapping-images {
    position: relative;
    display: inline-block;
}

.profile-image {
    position: relative;
    z-index: 1;
}

.tram-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
