@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
	--default-font: "Noto Sans JP",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--heading-font: "Noto Serif JP",  sans-serif;
	--nav-font: "Noto Sans JP",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
	--background-color: #ffffff; /* Background color for the entire website, including individual sections */
	--default-color: #4c1130; /* Default color used for the majority of the text content across the entire website */
	--heading-color: #741b47; /* Color for headings, subheadings and title throughout the website */
	--accent-color: #a64d79; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
	--surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
	--contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
	--nav-color: #ffffff;  /* The default color of the main navmenu links */
	--nav-hover-color: #a64d79; /* Applied to main navmenu links when they are hovered over or active */
	--nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
	--nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
	--nav-dropdown-color: #4c1130; /* Used for navigation links of the dropdown items in the navigation menu. */
	--nav-dropdown-hover-color: #a64d79; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
	--background-color: #efefef;
	--surface-color: #ffffff;
	--contrast-color: #ffffff;
}

.dark-background {
	--background-color: #741b47;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--accent-color: #c27ba0;
	--surface-color: #a64d79;
	--contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
:root {
	--default-font: YakuHanMPs, "Open Sans", "Noto Sans JP", sans-serif;
	--heading-font: YakuHanMPs, "Noto Serif", "Shippori Mincho B1", "Noto Serif JP", serif;
	--nav-font: YakuHanMPs, "Noto Serif", "Noto Serif JP", sans-serif;
	--lead-font: YakuHanMPs, "Noto Serif", "Noto Serif JP", sans-serif;
	--hiyori-font: "hiyorihotel", "Noto Serif", serif;
}

@font-face {
	font-family: "hiyorihotel";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/assets/fonts/hiyorihotel.woff2") format("woff2"), url("/assets/fonts/hiyorihotel.woff") format("woff");
}

.ff-hiyori {
	font-family: var(--hiyori-font);
	font-weight: 400;
	letter-spacing: .1rem;
}

html {
	width: 100vw;
	overflow-x: hidden;
	font-size: 16px;
}

body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-size: .9rem;
	line-height: 1.75;
	font-weight: 300;
	font-family: var(--default-font);
	letter-spacing: .025rem;
	width: 100vw;
	overflow-x: hidden;
}

@media (max-width: 1400px) {
	body {
		font-size: .9rem;
	}
}

@media (max-width: 1200px) {
	body {
		font-size: .85rem;
	}
	section,
	.section {
		padding: 40px 0;
		scroll-margin-top: 50px;
	}
}

@media (max-width: 576px) {
	body {
		font-size: .8rem;
		font-weight: 400;
	}
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: .3s;
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: .025rem;
}

.lead {
	font-size: 1.25em;
	font-family: var(--lead-font);
	font-weight: 500 !important;
	line-height: 1.75;
	letter-spacing: .025rem;
}

.gradient-hr {
	border: none;
	/* 既定の線を消す */
	height: 1px;
	width: 100%;
	margin: 40px 0;
	/* 任意 */
	background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}

.gradient-hr-light {
	border: none;
	/* 既定の線を消す */
	height: 1px;
	width: 100%;
	margin: 40px 0;
	/* 任意 */
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0) 100%);
}

a.btn-gradient {
	position: relative;
	display: inline-block;
	padding: .75rem 1.25rem;
	color: var(--color-default);
	text-decoration: none;
	letter-spacing: .075rem;
}

/* 上下のグラデーションライン */
a.btn-gradient::before,
a.btn-gradient::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, transparent, currentColor, transparent);
}

/* 上の線 */
a.btn-gradient::before {
	top: 0;
}

/* 下の線 */
a.btn-gradient::after {
	bottom: 0;
}

/* ホバー演出（任意） */
a.btn-gradient:hover {
	color: var(--accent-color);
}

.btn-gradient-fade {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	padding: .75rem 2.25rem .75rem 3.25rem;
	border-radius: 50px;
	color: var(--color-default);
	background-color: rgba(0,0,0,.05);
	text-decoration: none;
	letter-spacing: .075rem;
}

.btn-gradient-fade i {
	font-size: .9em;
	transition: transform 0.3s ease, opacity 0.3s ease;
	opacity: .7;
}

.btn-gradient-fade:hover i,
.btn-gradient-fade:focus-visible i {
	transform: translateX(6px);
	opacity: 1;
}

/* 上下ライン（初期状態：非表示） */
.btn-gradient-fade::before,
.btn-gradient-fade::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 0;
	height: 1px;
	opacity: 0;
	transform: translateX(-50%);
	background: linear-gradient(to right, transparent, currentColor, transparent);
	transition: width 0.35s ease, opacity 0.2s ease;
}

/* 上下位置 */
.btn-gradient-fade::before {
	top: 0;
}

.btn-gradient-fade::after {
	bottom: 0;
}

/* hover / focus / focus-visible 時に表示 */
.btn-gradient-fade:hover::before,
.btn-gradient-fade:hover::after,
.btn-gradient-fade:focus::before,
.btn-gradient-fade:focus::after,
.btn-gradient-fade:focus-visible::before,
.btn-gradient-fade:focus-visible::after {
	width: 100%;
	opacity: 1;
}

/* ホバー演出（任意） */
a.btn-gradient-fade:hover {
	background-color: transparent;
	color: var(--accent-color);
}

/* キーボード操作時のアウトライン調整（任意） */
.btn-gradient-fade:focus {
	outline: none;
}

@media (hover: none) {
	.btn-gradient-fade i {
		transform: none !important;
	}
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
	background-color: var(--background-color);
	transition: all .6s ease-out;
	width: 100%;
	height: 100vh;
}

#preloader:before,
#preloader:after {
	content: "";
	position: absolute;
	border: 4px solid var(--accent-color);
	border-radius: 50%;
	animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
	animation-delay: -0.5s;
}

@keyframes animate-preloader {
	0% {
		width: 10px;
		height: 10px;
		top: calc(50% - 5px);
		left: calc(50% - 5px);
		opacity: 1;
	}

	100% {
		width: 72px;
		height: 72px;
		top: calc(50% - 36px);
		left: calc(50% - 36px);
		opacity: 0;
	}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	text-align: center;
	padding: 40px 0 20px 0;
	border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .breadcrumbs {
	margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
	justify-content: center;
	margin: 0;
	padding: 0;
	background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
	font-size: .8rem;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
	color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
	color: inherit;
	text-decoration: none;
	transition: color .3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
	color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
	font-size: .9rem;
	margin-right: .2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 1rem 0;
}

.page-title .title-wrapper h1 {
	font-size: 2.25rem;
	margin-bottom: 1rem;
	font-weight: 200;
	color: var(--heading-color);
}

.page-title .title-wrapper p {
	font-size: .9rem;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin: 0;
	line-height: 1.75;
}

@media (max-width: 768px) {
	.page-title .title-wrapper h1 {
		font-size: 2rem;
	}

	.page-title .title-wrapper p {
		font-size: .9rem;
	}
}

@media (max-width: 576px) {
	.page-title .title-wrapper h1 {
		font-size: 1.75rem;
	}

	.page-title .title-wrapper p {
		font-size: .8rem;
	}
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 48px 0 64px;
	scroll-margin-top: 64px;
	overflow: clip;
	overflow-x: hidden;
}

@media (max-width: 1199px) {
	section, .section {
		padding: 40px 0 64px;
		scroll-margin-top: 64px;
	}
}

section.gradient-white-top,
section.gradient-white-bottom {
	position: relative;
}
section.gradient-white-top::before {
	content: '';
	position: absolute;
	top: -2px;
	left: 0;
	width: 100%;
	height: 150px;
  background-image: linear-gradient(#ffffff, transparent);
	z-index: 1;
	pointer-events: none;
}
section.gradient-white-bottom::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 150px;
  background-image: linear-gradient(0deg, #ffffff, transparent);
	z-index: 1;
	pointer-events: none;
}
section.gradient-white-top .container,
section.gradient-white-bottom .container {
	position: relative;
	z-index: 2;
}

section.bg_gradient_pastel {
	position: relative;
	background: linear-gradient(165deg, #fef9f3 0%, #f8f4ff 50%, #f0f9ff 100%);
}
section.bg_gradient_pastel::before,
section.bg_gradient_pastel::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 150px;
	z-index: 1;
	pointer-events: none;
}
section.bg_gradient_pastel::before {
	background-image: linear-gradient(#ffffff, transparent);
	top: -2px;
	left: 0;
}
section.bg_gradient_pastel::after {
	background-image: linear-gradient(0deg, #ffffff, transparent);
	left: 0;
	bottom: -2px;
}
section.bg_gradient_pastel .container {
	position: relative;
	z-index: 2;
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding-bottom: 2.25rem;
	position: relative;
}

.section-title .subtitle {
	display: block;
	font-size: .9rem;
	font-weight: 400;
	color: var(--accent-color);
	font-family: hiyorihotel, "Noto Serif", serif;
	text-transform: uppercase;
	margin-bottom: .25rem;
	letter-spacing: .075rem;
}

.section-title h2 {
	font-size: 2.25rem;
	font-weight: 200;
	letter-spacing: .075;
	margin-bottom: .5rem;
	position: relative;
}

.section-title .title-decoration {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 1.25rem;
}

.section-title .title-decoration span {
	display: inline-block;
	width: 30px;
	height: 1px;
	background-color: var(--accent-color);
}

.section-title .title-decoration span:nth-child(2) {
	width: 15px;
}

.section-title p {
	margin-bottom: 0;
	font-family: var(--nav-font);
	font-size: .9rem;
	font-weight: 500;
	line-height: 1.75;
	color: color-mix(in srgb, var(--default-color), transparent 15%);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 768px) {
	.section-title h2 {
		font-size: 1.75rem;
	}

	.section-title p {
		font-size: .8rem;
	}
}

/*--------------------------------------------------------------
# Our Location Section
--------------------------------------------------------------*/
.our-concept {
	/*padding-top: 100px;*/
	/*padding-bottom: 140px;*/
	position: relative;
	overflow: visible;
}

.our-concept .image-column {
	position: relative;
	height: 100%;
	min-height: 440px;
}

@media (max-width: 992px) {
	.our-concept .image-column {
		max-height: 360px;
		margin-bottom: 1rem;
	}
}

.our-concept .image-column .main-image {
	position: relative;
	height: 100%;
	border-radius: 0 1.75rem 1.75rem 0;
	overflow: hidden;
	transform: translateX(-15px);
}

@media (max-width: 992px) {
	.our-concept .image-column .main-image {
		border-radius: 1rem;
		transform: translateX(0);
	}
}

.our-concept .image-column .main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s ease;
}

.our-concept .image-column .main-image:hover img {
	transform: scale(1.08);
}

.our-concept .image-column .main-image .gradient-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to top, color-mix(in srgb, black, transparent 80%), transparent);
}

.our-concept .image-column .badge-card {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	background: linear-gradient(135deg, var(--heading-color), color-mix(in srgb, var(--accent-color), black 15%));
	padding: 1.25rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color), transparent 60%);
	backdrop-filter: blur(10px);
}

@media (max-width: 576px) {
	.our-concept .image-column .badge-card {
		left: 1.25rem;
		right: 1.25rem;
		bottom: -1rem;
		padding: .75rem;
	}
}

.our-concept .image-column .badge-card .badge-icon {
	width: 48px;
	height: 48px;
	background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.our-concept .image-column .badge-card .badge-icon i {
	font-size: 1.25rem;
	color: var(--contrast-color);
}

.our-concept .image-column .badge-card .badge-text {
	display: flex;
	flex-direction: column;
	gap: 5px;
	color: var(--contrast-color);
}

.our-concept .image-column .badge-card .badge-text .badge-number {
	font-size: 2rem;
	font-weight: 300;
	color: var(--contrast-color);
	line-height: 1;
}

.our-concept .image-column .badge-card .badge-text .badge-label {
	font-size: .7rem;
	font-weight: 300;
	color: var(--contrast-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: .9;
}

.our-concept .content-column {
	padding: 0 60px;
}

@media (max-width: 992px) {
	.our-concept .content-column {
		padding: 0 15px;
	}
}

.our-concept .content-column .section-badge {
	text-align: center;
}
.our-concept .content-column .section-badge span {
	display: inline-block;
	padding: .25rem 1rem;
	background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
	color: var(--contrast-color);
	font-size: .8rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .1rem;
	border-radius: 30px;
	margin: 0 auto 1.5rem;
	box-shadow: 0 2px 8px color-mix(in srgb, var(--heading-color), transparent 70%);
}

.our-concept .content-column h2 {
	font-size: 1.75rem;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
	.our-concept .content-column h2 {
		font-size: 1.25rem;
	}
}

.our-concept .content-column h2 .gradient-text {
	background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--heading-color), black 15%));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.our-concept .content-column .intro-text {
	font-size: .9rem;
	line-height: 1.75;
	margin-bottom: 1.5rem;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.access-overview h3 {
	font-size: 1.025rem;
}
.access-overview ul li {
	font-size: .8rem;
	font-weight: 400;
}

/*--------------------------------------------------------------
# Hotel Info Section
--------------------------------------------------------------*/
.hotel-info .admissions-sidebar .sidebar-item {
	background-color: var(--surface-color);
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hotel-info .admissions-sidebar .sidebar-item h3 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 12px;
}

.hotel-info .admissions-sidebar .sidebar-item h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--accent-color);
	bottom: 0;
	left: 0;
}

.hotel-info .admissions-sidebar .sidebar-item p {
	margin-bottom: 1rem;
}

.hotel-info .admissions-sidebar .admission-contact .contact-info {
	margin-top: 20px;
}

.hotel-info .admissions-sidebar .admission-contact .contact-info .contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.hotel-info .admissions-sidebar .admission-contact .contact-info .contact-item i {
	color: var(--accent-color);
	font-size: 1.2rem;
	margin-right: 10px;
	margin-top: 2px;
}

.hotel-info .admissions-sidebar .admission-contact .contact-info .contact-item span {
	flex: 1;
}

.hotel-info .admissions-sidebar .deadlines .deadlines-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hotel-info .admissions-sidebar .deadlines .deadlines-list li {
	display: flex;
	margin-bottom: 20px;
}

.hotel-info .admissions-sidebar .deadlines .deadlines-list li:last-child {
	margin-bottom: 0;
}

.hotel-info .admissions-sidebar .deadlines .deadlines-list li .deadline-date {
	background-color: var(--accent-color);
	color: var(--contrast-color);
	font-weight: 600;
	padding: 8px 12px;
	border-radius: 6px;
	text-align: center;
	min-width: 70px;
	margin-right: 15px;
}

.hotel-info .admissions-sidebar .deadlines .deadlines-list li .deadline-content {
	flex: 1;
}

.hotel-info .admissions-sidebar .deadlines .deadlines-list li .deadline-content h4 {
	font-size: 1rem;
	margin-bottom: 5px;
}

.hotel-info .admissions-sidebar .deadlines .deadlines-list li .deadline-content p {
	font-size: .9rem;
	margin-bottom: 0;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hotel-info .admissions-sidebar .cta-box {
	text-align: center;
	border-top: 4px solid var(--accent-color);
}

.hotel-info .admissions-sidebar .cta-box h3:after {
	left: 50%;
	transform: translateX(-50%);
	background: var(--contrast-color);
}

.hotel-info .admissions-sidebar .cta-box .btn-campus-tour {
	display: inline-block;
	background-color: var(--accent-color);
	color: var(--contrast-color);
	padding: 12px 25px;
	border-radius: 50px;
	font-weight: 600;
	margin-top: 15px;
	transition: all .3s ease;
}

.hotel-info .admissions-sidebar .cta-box .btn-campus-tour:hover {
	background-color: color-mix(in srgb, var(--accent-color), black 15%);
	transform: translateY(-3px);
}

.hotel-info .admissions-content h3 {
	font-size: 1.8rem;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 12px;
}

.hotel-info .admissions-content h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 3px;
	background: var(--accent-color);
	bottom: 0;
	left: 0;
}

.hotel-info .admissions-content .admission-steps {
	margin-bottom: 50px;
}

.hotel-info .admissions-content .admission-steps .step-item {
	background-color: var(--surface-color);
	border-radius: 8px;
	padding: 25px 20px;
	text-align: center;
	height: 100%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all .3s ease;
}

.hotel-info .admissions-content .admission-steps .step-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hotel-info .admissions-content .admission-steps .step-item .step-icon {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
}

.hotel-info .admissions-content .admission-steps .step-item .step-icon i {
	font-size: 2.5rem;
	color: var(--accent-color);
}

.hotel-info .admissions-content .admission-steps .step-item .step-icon .step-number {
	position: absolute;
	top: -5px;
	right: -10px;
	background-color: var(--heading-color);
	color: var(--contrast-color);
	width: 22px;
	height: 22px;
	font-size: .8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 600;
}

.hotel-info .admissions-content .admission-steps .step-item h4 {
	font-size: 1.1rem;
	margin-bottom: 12px;
}

.hotel-info .admissions-content .admission-steps .step-item p {
	font-size: .9rem;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	margin-bottom: 0;
}

.hotel-info .admissions-content .requirements {
	margin-bottom: 50px;
}

.hotel-info .admissions-content .requirements .requirements-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

@media (max-width: 768px) {
	.hotel-info .admissions-content .requirements .requirements-grid {
		grid-template-columns: 1fr;
	}
}

.hotel-info .admissions-content .requirements .requirements-grid .requirement-item {
	background-color: var(--surface-color);
	border-radius: 8px;
	padding: 25px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all .3s ease;
}

.hotel-info .admissions-content .requirements .requirements-grid .requirement-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hotel-info .admissions-content .requirements .requirements-grid .requirement-item:hover .requirement-icon i {
	transform: scale(1.1);
}

.hotel-info .admissions-content .requirements .requirements-grid .requirement-item .requirement-icon {
	margin-bottom: 15px;
}

.hotel-info .admissions-content .requirements .requirements-grid .requirement-item .requirement-icon i {
	font-size: 2rem;
	color: var(--accent-color);
	transition: transform 0.3s ease;
}

.hotel-info .admissions-content .requirements .requirements-grid .requirement-item h4 {
	font-size: 1.1rem;
	margin-bottom: 10px;
}

.hotel-info .admissions-content .requirements .requirements-grid .requirement-item p {
	font-size: .95rem;
	margin-bottom: 0;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hotel-info .admissions-content .tuition-fees {
	margin-bottom: 50px;
}

.hotel-info .admissions-content .tuition-fees table {
	color: var(--default-color);
}

.hotel-info .admissions-content .tuition-fees table th {
	background-color: color-mix(in srgb, var(--default-color), transparent 95%);
	color: var(--heading-color);
	font-weight: 600;
	border: none;
}

.hotel-info .admissions-content .tuition-fees table td {
	vertical-align: middle;
	color: var(--default-color);
	background-color: var(--surface-color);
}

.hotel-info .admissions-content .tuition-fees .fees-note {
	font-size: .85rem;
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	margin-top: 15px;
	font-style: italic;
}

.hotel-info .admissions-content .financial-aid .aid-item {
	background-color: var(--surface-color);
	border-radius: 8px;
	padding: 25px;
	height: 100%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
	transition: all .3s ease;
}

.hotel-info .admissions-content .financial-aid .aid-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.hotel-info .admissions-content .financial-aid .aid-item .aid-icon {
	margin-bottom: 15px;
}

.hotel-info .admissions-content .financial-aid .aid-item .aid-icon i {
	font-size: 2rem;
	color: var(--accent-color);
}

.hotel-info .admissions-content .financial-aid .aid-item h4 {
	font-size: 1.1rem;
	margin-bottom: 12px;
}

.hotel-info .admissions-content .financial-aid .aid-item p {
	font-size: .95rem;
	margin-bottom: 0;
}

.hotel-info .admissions-content .financial-aid .btn-aid-info {
	display: inline-block;
	background-color: var(--accent-color);
	color: var(--contrast-color);
	padding: 12px 25px;
	border-radius: 50px;
	font-weight: 600;
	margin-top: 30px;
	transition: all .3s ease;
}

.hotel-info .admissions-content .financial-aid .btn-aid-info:hover {
	background-color: color-mix(in srgb, var(--accent-color), black 15%);
	transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Tabs 2 Section
--------------------------------------------------------------*/
.tabs-2 .nav-tabs {
	border: 0;
	background-color: color-mix(in srgb, var(--default-color), transparent 96%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	padding: 6px;
	width: auto;
}

.tabs-2 .nav-item {
	margin: 0;
	padding: 0 5px 0 0;
}

.tabs-2 .nav-item:last-child {
	padding-right: 0;
}

.tabs-2 .nav-link {
	background-color: none;
	color: var(--heading-color);
	padding: 10px 30px;
	transition: .3s;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	height: 100%;
	border: 0;
	margin: 0;
}

@media (max-width: 468px) {
	.tabs-2 .nav-link {
		padding: 8px 20px;
	}
}

.tabs-2 .nav-link i {
	padding-right: 15px;
	font-size: 48px;
}

.tabs-2 .nav-link h4 {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
}

.tabs-2 .nav-link:hover {
	border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.tabs-2 .nav-link:hover h4 {
	color: var(--accent-color);
}

.tabs-2 .nav-link.active {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.tabs-2 .nav-link.active h4 {
	color: var(--contrast-color);
}

.tabs-2 .tab-content {
	margin-top: 30px;
}

.tabs-2 .tab-pane h3 {
	color: var(--heading-color);
	font-weight: 700;
	font-size: 32px;
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.tabs-2 .tab-pane h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 3px;
	background: var(--accent-color);
	left: 0;
	bottom: 0;
}

.tabs-2 .tab-pane ul {
	list-style: none;
	padding: 0;
}

.tabs-2 .tab-pane ul li {
	padding-top: 10px;
}

.tabs-2 .tab-pane ul i {
	font-size: 20px;
	padding-right: 4px;
	color: var(--accent-color);
}

.tabs-2 .tab-pane p:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details {
	padding: 80px 0;
}

.service-details .service-content .service-hero {
	margin-bottom: 60px;
}

.service-details .service-content .service-hero .service-image {
	border-radius: 8px;
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.service-details .service-content .service-description {
	margin-bottom: 80px;
}

.service-details .service-content .service-description .service-title {
	font-size: 2.5rem;
	font-weight: 300;
	margin-bottom: 24px;
	line-height: 1.3;
}

.service-details .service-content .service-description .lead {
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.7;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-bottom: 32px;
}

.service-details .service-content .service-description p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 24px;
	color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-content .service-features {
	margin-bottom: 80px;
}

.service-details .service-content .service-features h3 {
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.service-details .service-content .service-features .feature-item .feature-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-details .service-content .service-features .feature-item .feature-icon i {
	font-size: 20px;
	color: var(--accent-color);
}

.service-details .service-content .service-features .feature-item .feature-content h4 {
	font-size: 1.2rem;
	font-weight: 400;
	margin-bottom: 12px;
}

.service-details .service-content .service-features .feature-item .feature-content p {
	font-size: 1rem;
	line-height: 1.7;
	color: color-mix(in srgb, var(--default-color), transparent 25%);
	margin: 0;
}

.service-details .service-content .service-process h3 {
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 40px;
}

.service-details .service-content .service-process .process-timeline .process-step {
	display: flex;
	gap: 24px;
	margin-bottom: 40px;
	position: relative;
}

.service-details .service-content .service-process .process-timeline .process-step:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 23px;
	top: 48px;
	width: 2px;
	height: 40px;
	background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details .service-content .service-process .process-timeline .process-step .step-number {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--accent-color);
	color: var(--contrast-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-size: 1rem;
}

.service-details .service-content .service-process .process-timeline .process-step .step-content {
	flex: 1;
}

.service-details .service-content .service-process .process-timeline .process-step .step-content h4 {
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 12px;
}

.service-details .service-content .service-process .process-timeline .process-step .step-content p {
	font-size: 1rem;
	line-height: 1.7;
	color: color-mix(in srgb, var(--default-color), transparent 25%);
	margin: 0;
}

.service-details .service-sidebar .sidebar-widget {
	background-color: var(--surface-color);
	border-radius: 8px;
	padding: 32px;
	margin-bottom: 32px;
	border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .sidebar-widget h4 {
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 24px;
}

.service-details .service-sidebar .service-info .service-details-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-details .service-sidebar .service-info .service-details-list li {
	padding: 12px 0;
	border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
	font-size: .95rem;
	line-height: 1.6;
}

.service-details .service-sidebar .service-info .service-details-list li:last-child {
	border-bottom: none;
}

.service-details .service-sidebar .service-info .service-details-list li strong {
	color: var(--heading-color);
	font-weight: 500;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 0;
	border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
	color: var(--default-color);
	text-decoration: none;
	transition: all .3s ease;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item:last-child {
	border-bottom: none;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item:hover {
	color: var(--accent-color);
	transform: translateX(4px);
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item i {
	font-size: 16px;
	width: 20px;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item span {
	font-size: .95rem;
}

.service-details .service-sidebar .cta-widget {
	background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
	color: var(--contrast-color);
}

.service-details .service-sidebar .cta-widget .cta-content {
	text-align: center;
}

.service-details .service-sidebar .cta-widget .cta-content h4 {
	color: var(--contrast-color);
	margin-bottom: 16px;
}

.service-details .service-sidebar .cta-widget .cta-content p {
	color: color-mix(in srgb, var(--contrast-color), transparent 15%);
	margin-bottom: 24px;
	line-height: 1.6;
}

.service-details .service-sidebar .cta-widget .cta-content .btn-cta {
	display: inline-block;
	background-color: var(--contrast-color);
	color: var(--accent-color);
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	transition: all .3s ease;
}

.service-details .service-sidebar .cta-widget .cta-content .btn-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px color-mix(in srgb, var(--default-color), transparent 85%);
	color: var(--accent-color);
}

.service-details .service-sidebar .contact-info .contact-item {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.service-details .service-sidebar .contact-info .contact-item:last-child {
	margin-bottom: 0;
}

.service-details .service-sidebar .contact-info .contact-item i {
	font-size: 18px;
	color: var(--accent-color);
	width: 24px;
}

.service-details .service-sidebar .contact-info .contact-item div strong {
	display: block;
	font-weight: 500;
	color: var(--heading-color);
	margin-bottom: 4px;
}

.service-details .service-sidebar .contact-info .contact-item div span {
	color: color-mix(in srgb, var(--default-color), transparent 25%);
	font-size: .95rem;
}

@media (max-width: 768px) {
	.service-details {
		padding: 60px 0;
	}

	.service-details .service-content .service-hero {
		margin-bottom: 40px;
	}

	.service-details .service-content .service-hero .service-image {
		height: 300px;
	}

	.service-details .service-content .service-description {
		margin-bottom: 60px;
	}

	.service-details .service-content .service-description .service-title {
		font-size: 2rem;
	}

	.service-details .service-content .service-description .lead {
		font-size: 1.1rem;
	}

	.service-details .service-content .service-features,
	.service-details .service-content .service-process {
		margin-bottom: 60px;
	}

	.service-details .service-content .service-features h3,
	.service-details .service-content .service-process h3 {
		font-size: 1.7rem;
	}

	.service-details .service-content .process-timeline .process-step {
		gap: 16px;
	}

	.service-details .service-content .process-timeline .process-step:not(:last-child)::after {
		left: 19px;
	}

	.service-details .service-content .process-timeline .process-step .step-number {
		width: 40px;
		height: 40px;
		font-size: .9rem;
	}

	.service-details .service-sidebar {
		margin-top: 40px;
	}

	.service-details .service-sidebar .sidebar-widget {
		padding: 24px;
	}
}

/*--------------------------------------------------------------
# Destination Details 2 Section
--------------------------------------------------------------*/
.destination-details-2 .destination-hero {
	margin-bottom: 120px;
	position: relative;
}

.destination-details-2 .destination-hero .hero-content {
	text-align: center;
	margin-bottom: 60px;
}

.destination-details-2 .destination-hero .hero-content .destination-name {
	font-size: 2rem;
	font-weight: 300;
	color: var(--heading-color);
	margin-bottom: 20px;
	letter-spacing: -0.02em;
}

@media (max-width: 768px) {
	.destination-details-2 .destination-hero .hero-content .destination-name {
		font-size: 1.5rem;
	}
}

.destination-details-2 .destination-hero .hero-content .destination-tagline {
	font-size: .9rem;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	font-weight: 300;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.destination-details-2 .destination-hero .hero-image {
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.destination-details-2 .destination-hero .hero-image img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

@media (max-width: 768px) {
	.destination-details-2 .destination-hero .hero-image img {
		height: 350px;
	}
}

.destination-details-2 .destination-hero .hero-image:hover img {
	transform: scale(1.02);
}

.destination-details-2 .destination-overview {
	margin-bottom: 120px;
}

.destination-details-2 .destination-overview .overview-content h2 {
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 1.5rem;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.destination-details-2 .destination-overview .overview-content h2 {
		font-size: 1.5rem;
	}
}

.destination-details-2 .destination-overview .overview-content p {
	font-size: .9rem;
	line-height: 1.75;
	margin-bottom: 30px;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.destination-details-2 .destination-overview .overview-content p:last-child {
	margin-bottom: 0;
}

.destination-details-2 .destination-overview .overview-image {
	border-radius: 8px;
	overflow: hidden;
}

.destination-details-2 .destination-overview .overview-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 768px) {
	.destination-details-2 .destination-overview .overview-image img {
		height: 300px;
	}
}

.destination-details-2 .destination-highlights {
	margin-bottom: 120px;
}

.destination-details-2 .destination-highlights .section-header {
	text-align: center;
	margin-bottom: 80px;
}

.destination-details-2 .destination-highlights .section-header h2 {
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 1rem;
}

@media (max-width: 768px) {
	.destination-details-2 .destination-highlights .section-header h2 {
		font-size: 1.5rem;
	}
}

.destination-details-2 .destination-highlights .section-header p {
	font-size: .9rem;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	max-width: 600px;
	margin: 0 auto;
}

.destination-details-2 .destination-highlights .highlight-item {
	height: 100%;
}

.destination-details-2 .destination-highlights .highlight-item .highlight-image {
	margin-bottom: 30px;
	border-radius: 8px;
	overflow: hidden;
}

.destination-details-2 .destination-highlights .highlight-item .highlight-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.destination-details-2 .destination-highlights .highlight-item .highlight-image:hover img {
	transform: scale(1.05);
}

.destination-details-2 .destination-highlights .highlight-item .highlight-content h4 {
	font-size: 1.25rem;
	font-weight: 400;
	margin-bottom: 15px;
}

.destination-details-2 .destination-highlights .highlight-item .highlight-content p {
	font-size: .9rem;
	line-height: 1.7;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.destination-details-2 .available-tours {
	margin-bottom: 120px;
}

.destination-details-2 .available-tours .section-header {
	text-align: center;
	margin-bottom: 80px;
}

.destination-details-2 .available-tours .section-header h2 {
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 1rem;
}

@media (max-width: 768px) {
	.destination-details-2 .available-tours .section-header h2 {
		font-size: 1.5rem;
	}
}

.destination-details-2 .available-tours .section-header p {
	font-size: .9rem;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.destination-details-2 .available-tours .tour-card {
	background: var(--surface-color);
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.destination-details-2 .available-tours .tour-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.destination-details-2 .available-tours .tour-card .tour-image {
	position: relative;
	overflow: hidden;
}

.destination-details-2 .available-tours .tour-card .tour-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.destination-details-2 .available-tours .tour-card .tour-image .tour-duration {
	position: absolute;
	top: 20px;
	right: 20px;
	background: color-mix(in srgb, var(--accent-color), transparent 10%);
	color: var(--contrast-color);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: .875rem;
	font-weight: 500;
}

.destination-details-2 .available-tours .tour-card .tour-image:hover img {
	transform: scale(1.1);
}

.destination-details-2 .available-tours .tour-card .tour-content {
	padding: 30px;
}

.destination-details-2 .available-tours .tour-card .tour-content h4 {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.destination-details-2 .available-tours .tour-card .tour-content p {
	font-size: .9rem;
	line-height: 1.5;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-bottom: 25px;
}

.destination-details-2 .available-tours .tour-card .tour-content .tour-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.destination-details-2 .available-tours .tour-card .tour-content .tour-meta .tour-price {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--accent-color);
}

.destination-details-2 .available-tours .tour-card .tour-content .tour-meta .tour-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #ffc107;
}

.destination-details-2 .available-tours .tour-card .tour-content .tour-meta .tour-rating span {
	color: var(--default-color);
	font-weight: 500;
}

.destination-details-2 .available-tours .tour-card .tour-content .btn-tour {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--accent-color);
	font-weight: 500;
	text-decoration: none;
	transition: all .3s ease;
}

.destination-details-2 .available-tours .tour-card .tour-content .btn-tour:hover {
	color: var(--heading-color);
	gap: 12px;
}

.destination-details-2 .available-tours .tour-card .tour-content .btn-tour i {
	transition: transform 0.3s ease;
}

.destination-details-2 .available-tours .tour-card .tour-content .btn-tour:hover i {
	transform: translateX(3px);
}

.destination-details-2 .practical-info {
	margin-bottom: 120px;
}

.destination-details-2 .practical-info .section-header {
	text-align: center;
	margin-bottom: 80px;
}

.destination-details-2 .practical-info .section-header h2 {
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.destination-details-2 .practical-info .section-header h2 {
		font-size: 1.5rem;
	}
}

.destination-details-2 .practical-info .section-header p {
	font-size: .9rem;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.destination-details-2 .practical-info .info-grid {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.destination-details-2 .practical-info .info-item {
	display: flex;
	gap: 20px;
}

.destination-details-2 .practical-info .info-item .info-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: color-mix(in srgb, var(--accent-color), transparent 90%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	font-size: 1.5rem;
}

.destination-details-2 .practical-info .info-item .info-content h5 {
	font-size: 1.125rem;
	font-weight: 400;
	margin-bottom: 15px;
}

.destination-details-2 .practical-info .info-item .info-content p {
	font-size: .9rem;
	line-height: 1.75;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-bottom: 0;
}

.destination-details-2 .destination-gallery {
	margin-bottom: 120px;
}

.destination-details-2 .destination-gallery .section-header {
	text-align: center;
	margin-bottom: 80px;
}

.destination-details-2 .destination-gallery .section-header h2 {
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.destination-details-2 .destination-gallery .section-header h2 {
		font-size: 1.5rem;
	}
}

.destination-details-2 .destination-gallery .section-header p {
	font-size: .9rem;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.destination-details-2 .destination-gallery .gallery-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 20px;
}

@media (max-width: 768px) {
	.destination-details-2 .destination-gallery .gallery-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
}

.destination-details-2 .destination-gallery .gallery-grid .gallery-item {
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.destination-details-2 .destination-gallery .gallery-grid .gallery-item.large {
	grid-row: span 2;
}

@media (max-width: 768px) {
	.destination-details-2 .destination-gallery .gallery-grid .gallery-item.large {
		grid-row: span 1;
	}
}

.destination-details-2 .destination-gallery .gallery-grid .gallery-item a {
	display: block;
	height: 100%;
}

.destination-details-2 .destination-gallery .gallery-grid .gallery-item a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

@media (max-width: 768px) {
	.destination-details-2 .destination-gallery .gallery-grid .gallery-item a img {
		height: 250px;
	}
}

.destination-details-2 .destination-gallery .gallery-grid .gallery-item a:hover img {
	transform: scale(1.05);
}

.destination-details-2 .destination-cta {
	text-align: center;
	padding: 80px 0;
	background: color-mix(in srgb, var(--accent-color), transparent 95%);
	border-radius: 8px;
	margin-bottom: 60px;
}

.destination-details-2 .destination-cta .cta-content {
	max-width: 600px;
	margin: 0 auto;
}

.destination-details-2 .destination-cta .cta-content h2 {
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 25px;
}

@media (max-width: 768px) {
	.destination-details-2 .destination-cta .cta-content h2 {
		font-size: 1.5rem;
	}
}

.destination-details-2 .destination-cta .cta-content p {
	font-size: .9rem;
	line-height: 1.7;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
	margin-bottom: 40px;
}

.destination-details-2 .destination-cta .cta-content .cta-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
}

@media (max-width: 576px) {
	.destination-details-2 .destination-cta .cta-content .cta-actions {
		flex-direction: column;
		align-items: center;
	}
}

.destination-details-2 .destination-cta .cta-content .cta-actions .btn-primary,
.destination-details-2 .destination-cta .cta-content .cta-actions .btn-outline {
	padding: .5rem 1.25rem;
	font-size: .8rem;
	font-weight: 400;
	border-radius: 6px;
	text-decoration: none;
	transition: all .3s ease;
	display: inline-block;
}

.destination-details-2 .destination-cta .cta-content .cta-actions .btn-primary {
	background: var(--accent-color);
	color: var(--contrast-color);
	border: 2px solid var(--accent-color);
}

.destination-details-2 .destination-cta .cta-content .cta-actions .btn-primary:hover {
	background: transparent;
	color: var(--accent-color);
}

.destination-details-2 .destination-cta .cta-content .cta-actions .btn-outline {
	background: transparent;
	color: var(--accent-color);
	border: 2px solid var(--accent-color);
}

.destination-details-2 .destination-cta .cta-content .cta-actions .btn-outline:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Gallery 2 Section
--------------------------------------------------------------*/
.gallery-2 .isotope-filters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 40px;
	padding: 0;
	list-style: none;
}

.gallery-2 .isotope-filters li {
	display: inline-block;
	padding: 10px 20px;
	background: var(--surface-color);
	color: var(--default-color);
	border-radius: 30px;
	cursor: pointer;
	font-weight: 500;
	font-size: 15px;
	transition: .3s;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gallery-2 .isotope-filters li:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.gallery-2 .isotope-filters li.filter-active {
	background: var(--accent-color);
	color: var(--contrast-color);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
	.gallery-2 .isotope-filters {
		gap: 8px;
	}

	.gallery-2 .isotope-filters li {
		padding: 8px 14px;
		font-size: 14px;
	}
}

.gallery-2 .gallery-item {
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.gallery-2 .gallery-item {
		margin-bottom: 20px;
	}
}

.gallery-2 .gallery-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	height: 100%;
}

.gallery-2 .gallery-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-2 .gallery-card:hover .gallery-overlay {
	opacity: 1;
	transform: translateY(0);
}

.gallery-2 .gallery-card:hover .gallery-image img {
	transform: scale(1.1);
}

.gallery-2 .gallery-image {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 75%;
	overflow: hidden;
}

.gallery-2 .gallery-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.gallery-2 .gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 25px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
	color: var(--contrast-color);
	opacity: 0;
	transform: translateY(20px);
	transition: all .4s ease;
}

.gallery-2 .gallery-overlay h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--contrast-color);
}

.gallery-2 .gallery-overlay p {
	font-size: 14px;
	margin-bottom: 15px;
	opacity: .9;
}

.gallery-2 .gallery-overlay .gallery-actions {
	display: flex;
	gap: 15px;
}

.gallery-2 .gallery-overlay .gallery-actions a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--accent-color);
	color: var(--contrast-color);
	font-size: 18px;
	transition: .3s;
}

.gallery-2 .gallery-overlay .gallery-actions a:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
	transform: scale(1.1);
}

.gallery-2 .glightbox-clean .gslide-description {
	background: #272727;
}

.gallery-2 .glightbox-clean .gslide-title {
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
.venue .venue-header .venue-title-badge {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}

.venue .venue-header .venue-title-badge i {
	font-size: 1.8rem;
	color: var(--contrast-color);
}

.venue .venue-header h3 {
	color: var(--heading-color);
	font-size: 1.75rem;
	margin-bottom: 16px;
	font-weight: 400;
}

.venue .venue-header .venue-location {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--default-color);
	font-size: 1.05rem;
}

.venue .venue-header .venue-location i {
	color: var(--accent-color);
	font-size: 1.2rem;
}

.venue .main-venue-card {
	background-color: var(--surface-color);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	height: 100%;
}

.venue .main-venue-card .venue-image-wrapper {
	position: relative;
	overflow: hidden;
}

.venue .main-venue-card .venue-image-wrapper img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.venue .main-venue-card .venue-image-wrapper:hover img {
	transform: scale(1.05);
}

.venue .main-venue-card .venue-image-wrapper .capacity-overlay {
	position: absolute;
	bottom: 24px;
	right: 24px;
	background: var(--contrast-color);
	backdrop-filter: blur(10px);
	padding: 16px 24px;
	border-radius: 12px;
	text-align: center;
}

.venue .main-venue-card .venue-image-wrapper .capacity-overlay .capacity-number {
	font-size: 2rem;
	font-weight: 400;
	color: var(--accent-color);
	line-height: 1;
}

.venue .main-venue-card .venue-image-wrapper .capacity-overlay .capacity-label {
	font-size: .7rem;
	color: var(--default-color);
	margin-top: 4px;
	font-weight: 300;
}

.venue .main-venue-card .venue-description {
	padding: 32px;
}

.venue .main-venue-card .venue-description p {
	margin: 0;
	line-height: 1.8;
	font-size: .9rem;
}

.venue .amenities-card {
	background-color: var(--surface-color);
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.venue .amenities-card h5 {
	color: var(--heading-color);
	font-size: 1.125rem;
	margin-bottom: 1rem;
	font-weight: 300;
}

.venue .amenities-card .amenities-list {
	list-style: none;
	padding: 0;
	margin: 0 0 32px 0;
	flex-grow: 1;
}

.venue .amenities-card .amenities-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
}

.venue .amenities-card .amenities-list li i {
	color: var(--accent-color);
	font-size: 1.1rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.venue .amenities-card .amenities-list li span {
	font-size: .8rem;
	line-height: 1.5;
}

.venue .amenities-card .action-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.venue .amenities-card .action-buttons .btn-action {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 10px;
	font-weight: 500;
	font-size: .95rem;
	text-decoration: none;
	transition: all .3s ease;
}

.venue .amenities-card .action-buttons .btn-action.primary {
	background-color: var(--accent-color);
	color: var(--contrast-color);
}

.venue .amenities-card .action-buttons .btn-action.primary:hover {
	background-color: color-mix(in srgb, var(--accent-color), black 15%);
	transform: translateX(4px);
}

.venue .amenities-card .action-buttons .btn-action.secondary {
	background-color: transparent;
	color: var(--accent-color);
	border: 2px solid var(--accent-color);
}

.venue .amenities-card .action-buttons .btn-action.secondary:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	transform: translateX(4px);
}

.venue .interactive-map {
	background-color: var(--surface-color);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.venue .interactive-map .map-header {
	text-align: center;
	margin-bottom: 32px;
}

.venue .interactive-map .map-header h4 {
	color: var(--heading-color);
	font-size: 1.75rem;
	margin-bottom: 8px;
	font-weight: 400;
}

.venue .interactive-map .map-header p {
	margin: 0;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.venue .interactive-map .map-frame {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.venue .interactive-map .map-frame iframe {
	width: 100%;
	height: 450px;
}

.venue .transportation-section h4 {
	color: var(--heading-color);
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	text-align: center;
	font-weight: 400;
}

.venue .transportation-section .transport-card {
	background-color: var(--surface-color);
	border-radius: 16px;
	padding: 1rem .75rem;
	height: 100%;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	transition: all .3s ease;
	border: 2px solid transparent;
}

.venue .transportation-section .transport-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.venue .transportation-section .transport-card .transport-header {
	text-align: center;
	margin-bottom: 20px;
}

.venue .transportation-section .transport-card .transport-header .transport-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
}

.venue .transportation-section .transport-card .transport-header .transport-icon.air {
	background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 75%));
}

.venue .transportation-section .transport-card .transport-header .transport-icon.rail {
	background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 75%));
}

.venue .transportation-section .transport-card .transport-header .transport-icon.car {
	background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 75%));
}

.venue .transportation-section .transport-card .transport-header .transport-icon i {
	font-size: 2rem;
	color: var(--accent-color);
}

.venue .transportation-section .transport-card .transport-header h6 {
	color: var(--heading-color);
	font-size: 1.125rem;
	font-weight: 400;
	margin: 0;
}

.venue .transportation-section .transport-card .transport-body p {
	margin: 0;
	line-height: 1.7;
	text-align: center;
}

.venue .hotels-section .hotels-header {
	text-align: center;
	margin-bottom: 40px;
}

.venue .hotels-section .hotels-header h4 {
	color: var(--heading-color);
	font-size: 1.75rem;
	margin-bottom: 8px;
	font-weight: 400;
}

.venue .hotels-section .hotels-header p {
	margin: 0;
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	font-size: .9rem;
}

.venue .hotels-section .hotel-item {
	background-color: var(--surface-color);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	transition: all .3s ease;
	height: 100%;
}

.venue .hotels-section .hotel-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.venue .hotels-section .hotel-item:hover .hotel-image img {
	transform: scale(1.1);
}

.venue .hotels-section .hotel-item .hotel-image {
	position: relative;
	overflow: hidden;
	height: 220px;
}

.venue .hotels-section .hotel-item .hotel-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.venue .hotels-section .hotel-item .hotel-image .hotel-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background-color: var(--accent-color);
	color: var(--contrast-color);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: .8rem;
	font-weight: 600;
}

.venue .hotels-section .hotel-item .hotel-image .hotel-badge.discount {
	background-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.venue .hotels-section .hotel-item .hotel-details {
	padding: 24px;
}

.venue .hotels-section .hotel-item .hotel-details h6 {
	color: var(--heading-color);
	font-size: 1rem;
	margin-bottom: .75rem;
	font-weight: 400;
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	font-size: .8rem;
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta .distance {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--default-color);
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta .distance i {
	color: var(--accent-color);
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta .rating {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--default-color);
	font-weight: 500;
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta .rating i {
	color: #ffc107;
	font-size: .85rem;
}

.venue .hotels-section .hotel-item .hotel-details .hotel-pricing .price {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--accent-color);
}

.venue .hotels-section .hotel-item .hotel-details .hotel-pricing .period {
	color: color-mix(in srgb, var(--default-color), transparent 40%);
	font-size: .9rem;
}

@media (max-width: 992px) {
	.venue .venue-header h3 {
		font-size: 2rem;
	}

	.venue .main-venue-card .venue-image-wrapper img {
		height: 300px;
	}

	.venue .interactive-map .map-frame iframe {
		height: 350px;
	}
}

@media (max-width: 768px) {
	.venue .venue-header h3 {
		font-size: 1.75rem;
	}

	.venue .amenities-card {
		margin-top: 24px;
	}

	.venue .interactive-map {
		padding: 24px;
	}

	.venue .interactive-map .map-frame iframe {
		height: 280px;
	}

	.venue .transportation-section h4,
	.venue .hotels-section .hotels-header h4 {
		font-size: 1.5rem;
	}

	.venue .transport-card,
	.venue .hotel-item {
		margin-bottom: 24px;
	}
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
	padding-top: 60px;
	padding-bottom: 60px;
}

.faq .faq-sidebar {
	position: sticky;
	top: 100px;
}

.faq .faq-sidebar .faq-image {
	margin-bottom: 30px;
	border-radius: 14px;
	overflow: hidden;
}

.faq .faq-sidebar .faq-image img {
	transition: transform 0.5s ease;
}

.faq .faq-sidebar .faq-image img:hover {
	transform: scale(1.04);
}

.faq .faq-sidebar .contact-box {
	background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	border-radius: 14px;
	padding: 30px;
}

.faq .faq-sidebar .contact-box h3 {
	font-size: 1.125rem;
	margin-bottom: .75rem;
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 10px;
}

.faq .faq-sidebar .contact-box h3 i {
	font-size: 24px;
	color: var(--accent-color);
}

.faq .faq-sidebar .contact-box p {
	margin-bottom: 1.25rem;
	font-size: .875rem;
	color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.faq .faq-sidebar .contact-box .btn-contact {
	display: inline-block;
	background-color: var(--accent-color);
	color: var(--contrast-color);
	padding: .5rem 1.25rem;
	border-radius: 50px;
	font-size: .8rem;
	font-weight: 400;
	transition: all .3s ease;
}

.faq .faq-sidebar .contact-box .btn-contact:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills {
	flex: flex-row;
	flex-wrap: wrap;
	gap: .5rem 0.25rem;
}

.faq .faq-tabs .nav-pills .nav-item {
	display: inline;
}

.faq .faq-tabs .nav-pills .nav-link {
	background: color-mix(in srgb, var(--default-color), transparent 95%);
	color: color-mix(in srgb, var(--default-color), transparent 30%);
	border-radius: 50px;
	font-size: .8rem;
	font-weight: 400;
	padding: .75rem 1.25rem;
	line-height: 1;
	transition: all .3s ease;
}

.faq .faq-tabs .nav-pills .nav-link.active {
	background-color: var(--accent-color);
	color: var(--contrast-color);
	box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq .faq-tabs .nav-pills .nav-link:hover:not(.active) {
	background-color: color-mix(in srgb, var(--default-color), transparent 95%);
	color: var(--default-color);
}

.faq .faq-tabs .tab-content {
	padding-top: 5px;
}

.faq .faq-item {
	position: relative;
	margin-bottom: .75rem;
	background-color: var(--surface-color);
	border-radius: 16px;
	box-shadow: 0 3px 10px color-mix(in srgb, var(--default-color), transparent 95%);
	padding: 1rem 1.25rem;
	cursor: pointer;
	transition: all .3s ease;
}

.faq .faq-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.faq .faq-item h3 {
	font-size: .9rem;
	font-weight: 400;
	padding-right: 35px;
	margin-bottom: 0;
	transition: color 0.3s ease;
}

.faq .faq-item .faq-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: .3s ease-in-out;
	visibility: hidden;
	opacity: 0;
}

.faq .faq-item .faq-content p {
	margin-bottom: 0;
	padding-top: 15px;
	font-size: 15px;
	line-height: 1.6;
	overflow: hidden;
	color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq .faq-item .faq-toggle {
	position: absolute;
	right: 25px;
	top: 25px;
	font-size: 18px;
	color: var(--accent-color);
	transition: transform 0.3s ease;
}

.faq .faq-item.faq-active {
	background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
}

.faq .faq-item.faq-active h3 {
	color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
}

.faq .faq-item.faq-active .faq-toggle {
	transform: rotate(180deg);
}

@media (max-width: 991.98px) {
	.faq .faq-sidebar {
		position: relative;
		top: 0;
		margin-bottom: 40px;
	}

	.faq .faq-sidebar .contact-box {
		text-align: center;
	}

	.faq .faq-tabs .nav-pills {
		flex-wrap: wrap;
	}

	.faq .faq-tabs .nav-pills .nav-item {
		flex: 1 0 30%;
	}

	.faq .faq-tabs .nav-pills .nav-link {
		text-align: center;
	}
}

@media (max-width: 768px) {
	.faq .faq-tabs .nav-pills .nav-item {
		flex: 1 0 100%;
	}

	.faq .faq-item {
		padding: 20px;
	}

	.faq .faq-item h3 {
		font-size: 16px;
		line-height: 1.5;
	}

	.faq .faq-item .faq-toggle {
		right: 20px;
		top: 20px;
	}
}
