/* ==========================================================================
   1. 基礎重設與全局變數
   ========================================================================== */
:root {
	--primary-color: #071d33;    /* 深藍色 / 海軍藍 */
	--accent-color: #c5a059;     /* 香檳金 / 主體金色 */
	--accent-dark: #9c621d;      /* 深金色 / 互動狀態用 */
	--accent-light: #f3edd9;     /* 淺金色 / 卡片襯底 */
	--bg-light: #fbf9f4;         /* 主背景米白 */
	--text-dark: #000;           /* 主文字 */
	--text-muted: #666666;       /* 次要文字 */
	--white: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Noto Serif TC", serif;
	background-color: var(--bg-light);
	color: var(--text-dark);
	line-height: 1.6;
}

.container-header{ max-width: 1760px; margin: auto; }
.container-wide {
	max-width: 1700px;
	margin: auto;
}
.container {
	max-width: 1400px;
	margin: auto;
}
.container-sm {
	max-width: 1024px;
	margin: auto;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.font-normal { font-family: "Noto Sans TC", sans-serif; }

/* ==========================================================================
   2. 共用標題樣式
   ========================================================================== */
.section-title-wrap {
	margin-bottom: 50px;
}

.title-icon {
	width: 37px;
	height: 28px;
	margin: 0 auto 5px;
}

.section-title-wrap h2 {
	font-size: 3rem;
	color: var(--primary-color);
	letter-spacing: 4px;
	font-weight: bold;
}

.section-title-wrap p {
	margin: 10px auto 0;
	color: #b77b34;
	text-align: center;
	font-size: 1.125rem;
	font-family: "Noto Sans TC", sans-serif;
	font-weight: 500;
	letter-spacing: 0.05rem;
}

.section-title-wrap p::before,
.section-title-wrap p::after {
	content: '';
	width: 50px;
	height: 1px;
	margin: 0 10px;
	display: inline-block;
	vertical-align: middle;
	background-color: #b77b34;
}

/* ==========================================================================
   3. HEADER 導覽列
   ========================================================================== */
.main-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-wrap {
	display: flex;
	align-items: center;
	padding: 8px 0;
}

.logo {
	flex-shrink: 0;
}

.logo img {
	width: 178px;
}

.logo h1 {
	width: 100%;
	display: block;
	color: #333;
	font-size: 0.125rem;
	position: fixed;
	top: -999999px;
}

.header-right {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 20px;
}

.nav-menu ul {
	display: flex;
	list-style: none;
}

.nav-menu ul li {
	margin: 0 18px;
}

.nav-menu ul li a {
	color: #000;
	font-size: 1.125rem;
	font-weight: bold;
	font-family: "Noto Sans TC", sans-serif;
	letter-spacing: 0.05rem;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
	color: var(--accent-color);
}

.btn-contact-top {
	padding: 8px 22px;
	border-radius: 7px;
	background-color: var(--accent-color);
	color: var(--white);
	font-size: 1.125rem;
	font-family: "Noto Sans TC", sans-serif;
	letter-spacing: 0.05rem;
	font-weight: bold;
}

.btn-contact-top:hover {
	background-color: var(--primary-color);
}

/* 漢堡按鈕 */
.hamburger {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	position: relative;
	z-index: 1100;
	background: transparent;
	border: none;
	cursor: pointer;
}
.hamburger span {
	display: block;
	width: 28px;
	height: 2px;
	margin: 6px auto;
	border-radius: 99px;
	background: var(--accent-color);
	transition: all 0.35s ease;
}
.hamburger.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   4. HERO BANNER 主視覺
   ========================================================================== */
.hero-section {
	height: 860px;
	display: flex;
	align-items: center;
	position: relative;
	background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)), url('/index-new/images/idx-banner.jpg') no-repeat center center / cover;
}

.hero-content {
	position: absolute;
	left: 20%;
	top: 15%;
	color: var(--primary-color);
}

.hero-sub {
	font-size: 2.25rem;
	color: var(--primary-color);
	letter-spacing: 3px;
	font-weight: bold;
}

.hero-title {
	font-size: 5rem;
	font-weight: bold;
	letter-spacing: 4px;
}

.hero-desc {
	margin-bottom: 10px;
	color: #cd8200;
	font-size: 2.125rem;
	font-weight: bold;
	letter-spacing: 0.25rem;
}

.hero-text {
	margin-bottom: 35px;
	color: var(--primary-color);
	font-size: 1.25rem;
	font-family: "Noto Sans TC", sans-serif;
	letter-spacing: 0.05rem;
}

.hero-actions {
	display: flex;
	gap: 35px;
}

.hero-actions i {
	margin-left: 20px;
}

.btn-primary {
	width: 208px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	background-color: var(--primary-color);
	color: var(--white);
	font-weight: 500;
	font-family: "Noto Sans TC", sans-serif;
	font-size: 1.375rem;
	letter-spacing: 0.15rem;
}

.btn-primary:hover {
	background-color: var(--accent-color);
}

.btn-secondary {
	width: 208px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid var(--accent-color);
	border-radius: 10px;
	background-color: var(--white);
	color: var(--primary-color);
	font-weight: 500;
	font-family: "Noto Sans TC", sans-serif;
	font-size: 1.375rem;
	letter-spacing: 0.15rem;
}

.btn-secondary:hover {
	background-color: var(--accent-color);
	color: #fff;
}

.btn-secondary i::before {
	color: var(--accent-color);
}

.btn-secondary:hover i::before {
	color: #fff;
}

.fa-arrow-right-long::before {
	font-size: 1.25rem;
}

.scroll-indicator {
	height: 140px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: -20px;
	color: #fff;
}

.scroll-indicator__inner {
	width: 136px;
	text-align: center;
	animation: scrolldown 2s linear infinite;
}

.scroll-indicator__inner span {
	display: block;
	letter-spacing: 0.05rem;
}

.scroll-indicator__inner img {
	width: 35px;
	height: auto;
	margin: 15px 0 0 0;
	display: inline-block;
}

@keyframes scrolldown {
	0%   { transform: translateY(0); opacity: 1; }
	50%  { transform: translateY(10px); opacity: 0.8; }
	100% { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   5. DESTINATIONS 朝聖之旅分類
   ========================================================================== */
.destinations-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 22px;
}

.dest-card {
	overflow: hidden;
	border-radius: 15px;
	background-color: var(--white);
	box-shadow: 0 0 13px rgba(204, 151, 66, 0.5);
	transition: transform 0.3s;
}

.dest-card:hover {
	transform: translateY(-5px);
}

.dest-link {
	display: block;
	overflow: hidden;
}

.dest-link img {
	width: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.dest-link:hover img {
	transform: scale(1.08);
}

.dest-title {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
	letter-spacing: 0.05rem;
}

.dest-card:hover .dest-title {
	color: #ab8253;
}

.dest-info {
	padding: 20px 35px 40px;
	position: relative;
}

.dest-icon {
	width: 70px;
	height: 70px;
	margin: -55px auto 15px;
	position: relative;
	border-radius: 50%;
	background: var(--white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 各目的地 icon 顏色 */
.india-icon { background-color: #8d6c24; }
.japan-icon { background-color: #a14545; }
.tibet-icon { background-color: #23547a; }
.kunlun-icon { background-color: #4e8960; }
.buddhism-icon { background-color: #d08934; }

.dest-icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background-size: 100%;
	background-repeat: no-repeat;
	transform: translate(-50%, -50%);
}

.india-icon::before    { background-image: url(/index-new/images/travel-icon01.png); width: 36px; height: 41px; }
.japan-icon::before    { background-image: url(/index-new/images/travel-icon02.png); width: 42px; height: 37px; }
.tibet-icon::before    { background-image: url(/index-new/images/travel-icon03.png); width: 38px; height: 45px; }
.kunlun-icon::before   { background-image: url(/index-new/images/travel-icon04.png); width: 39px; height: 38px; }
.buddhism-icon::before { background-image: url(/index-new/images/travel-icon05.png); width: 41px; height: 42px; }

.dest-info h3 {
	margin-bottom: 10px;
	font-size: 1.875rem;
	font-weight: bold;
}

.dest-info p {
	height: 6rem;
	overflow: hidden;
	margin-bottom: 15px;
	color: var(--text-muted);
	font-size: 17px;
	font-family: "Noto Sans TC", sans-serif;
}

.btn-text {
	width: 160px;
	height: 52px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	position: relative;
	border-radius: 8px;
	border: 1px solid #ab8253;
	color: #4d4d4d;
	font-size: 1.125rem;
	font-weight: 500;
	font-family: "Noto Sans TC", sans-serif;
}

.btn-text i {
	position: absolute;
	right: 20px;
}

.btn-text i::before {
	color: #ab8253;
	font-size: 1rem;
}

.btn-text:hover {
	background-color: #ab8253;
	color: #fff;
}

.btn-text:hover i::before {
	color: #fff;
}

.btn-text::after {
	content: '';
	display: inline-block;
}

/* ==========================================================================
   6. SERVICES 專業服務（2x3 網格）
   ========================================================================== */
.services-section {
	background: url('/index-new/images/service-bg.jpg') no-repeat center;
	background-size: cover;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 25px;
}
.service-item {
	padding: 30px 10px;
	background-color: rgba(255, 255, 255, 0.35);
}
.service-icon {
	height: 165px;
	display: flex;
	align-items: center;
}
.service-icon img {
	margin: 0 auto 15px;
}
.service-icon01 img { height: 163px; }
.service-icon02 img { height: 137px; }
.service-icon03 img { height: 128px; }
.service-icon04 img { height: 168px; }
.service-icon05 img { height: 175px; }
.service-icon06 img { height: 168px; }
.service-item h3 {
	margin-bottom: 8px;
	color: #4d4d4d;
	font-size: 25px;
	letter-spacing: 0.1rem;
}

.service-item p {
	color: var(--text-muted);
	font-size: 19px;
	font-family: "Noto Sans TC", sans-serif;
	letter-spacing: 0.05rem;
}

/* ==========================================================================
   7. ITINERARIES 精選行程（1x4 網格）
   ========================================================================== */
.itineraries-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.itinerary-card {
	overflow: hidden;
	background-color: var(--white);
	box-shadow: 0 0 13px rgba(204, 151, 66, 0.5);
	border-radius: 15px;
	text-align: left;
}

.itinerary-card figure {
	width: 100%;
	padding-top: 75%;
	position: relative;
	overflow: hidden;
}

.itinerary-card figure a {
	width: 100%;
	height: 100%;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: 3;
	overflow: hidden;
	text-indent: -999px;
}

.itinerary-card figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	transform: scale(1);
	transition: transform 0.3s ease-out;
}

.itinerary-card figure:hover img {
	transform: scale(1.1);
}

.itinerary-info {
	padding: 15px;
}

.itinerary-info h3 a {
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 1.5rem;
	color: var(--primary-color);
	line-height: 1.4;
}

.itinerary-info h3 a:hover {
	color: #c69c6c;
}

.itinerary-desc {
	margin-bottom: 15px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	color: #c69c6c;
	font-size: 17px;
	font-family: "Noto Sans TC", sans-serif;
	letter-spacing: 0.05rem;
}

.itinerary-meta {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
	color: #a6a6a6;
	font-size: 1rem;
	font-family: "Noto Sans TC", sans-serif;
}

.itinerary-meta::before {
	content: '';
	width: 16px;
	height: 17px;
	display: inline-block;
	margin-right: 7px;
	margin-top: 3px;
	background: url('/index-new/images/calendar-icon.svg') no-repeat;
	background-size: 100%;
}

.itinerary-meta dt {
	min-width: 80px;
}

.itinerary-meta dd {
	margin: 0 0 0 5px;
	width: calc(100% - 110px);
}

.itinerary-footer {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.price-label {
	color: var(--accent-color);
	font-size: 15px;
	font-family: "Noto Sans TC", sans-serif;
}

.price-num {
	font-size: 27px;
	font-weight: bold;
}

/* ==========================================================================
   8. PHILOSOPHY 品牌理念 Banner
   ========================================================================== */
.philosophy-section {
	background: linear-gradient(to right, #faf3e8 35%, transparent 100%), url('/index-new/images/idx-btm.png') no-repeat right center / contain;
	padding: 100px 0;
}
.philosophy-wrap {
	display: flex;
	align-items: center;
}
.philosophy-content {
	width: 50%;
}
.philosophy-content h3 {
	margin-bottom: 25px;
	color: var(--primary-color);
	font-size: 3.125rem;
	line-height: 1.4;
	letter-spacing: 0.15rem;
}

.philosophy-text {
	margin-bottom: 10px;
	color: #4d4d4d;
	font-size: 1.125rem;
	font-family: "Noto Sans TC", sans-serif;
	line-height: 2rem;
	letter-spacing: 0.05rem;
}

.philosophy-highlight {
	margin-top: 25px;
	color: #cd8200;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
}

.philosophy-highlight::before {
	content: '';
	width: 60px;
	height: 1px;
	margin-right: 20px;
	display: inline-block;
	vertical-align: middle;
	background-color: #cd8200;
}

/* ==========================================================================
   9. FOOTER 頁尾
   ========================================================================== */
.main-footer {
	padding: 60px 0 20px;
	background-color: #faf6ee;
	font-family: "Noto Sans TC", sans-serif;
	font-size: 1.25rem;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2.5fr 1fr 2fr 1.5fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e0e0e0;
	letter-spacing: 0.05rem;
}
.footer-logo {
	width: 296px;
	margin-bottom: 15px;
}
.footer-col h3 {
	margin-bottom: 10px;
	color: #4d4d4d;
	font-size: 1.375rem;
	font-weight: bold;
}
.footer-col h4 {
	margin-bottom: 25px;
	position: relative;
	color: #4d4d4d;
	font-size: 1.375rem;
}
.footer-col p {
	margin-bottom: 8px;
	color: var(--text-muted);
	font-size: 1.125rem;
}
.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 8px;
	color: var(--text-muted);
	font-size: 1.25rem;
}

.footer-col ul li a {
	color: var(--text-muted);
}

.footer-col ul li a:hover {
	color: var(--accent-color);
}

.footer-col ul li.phone::before,
.footer-col ul li.fax::before,
.footer-col ul li.address::before,
.footer-col ul li.mail::before {
	content: '';
	margin-right: 15px;
	display: inline-block;
	vertical-align: middle;
	background-size: 100%;
	background-repeat: no-repeat;
}
.footer-col ul li.phone::before { background-image: url('/index-new/images/phone-icon.svg'); width: 22px; height: 23px; }
.footer-col ul li.fax::before { background-image: url('/index-new/images/fax-icon.svg'); width: 22px; height: 21px; }
.footer-col ul li.address::before { background-image: url('/index-new/images/location-icon.svg'); width: 17px; height: 23px; }
.footer-col ul li.mail::before { background-image: url('/index-new/images/mail-icon.svg'); width: 22px; height: 16px; }

.social-icons {
	display: flex;
	gap: 15px;
}

.social-icons a {
	width: 62px;
	height: 62px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white);
	border-radius: 50%;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-icons a i {
	color: #c69c6c;
	font-size: 36px;
	transition: 0.3s ease-out;
	margin-top: 3px;
}

.social-icons a:hover {
	transform: translateY(-8px);
}

.footer-bottom {
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	color: #666;
	letter-spacing: 0.05rem;
	font-size: 1.2rem;
}

.footer-bottom span {
	float: right;
}

.footer-bottom a {
	color: #666;
}

.footer-bottom a:hover {
	color: var(--accent-color);
}


@media (max-width: 1800px) {
	.container-header, .container-wide { max-width: 100%; padding: 0 20px; }
	.logo { padding: 5px 0; }
}

@media (max-width: 1500px) {
	.philosophy-content { margin-left: 6%; }
	.container { max-width: 100%; padding: 20px; }
}

@media (max-width: 1400px) {
	.hero-sub { font-size: 2rem; }
	.hero-title { font-size: 4rem; }
	.hero-desc { font-size: 2rem; }
	.hero-text { font-size: 1.125rem; }
	.hero-section { height: 700px; background-position: 60%; }
}

@media (max-width: 1300px) {
	.destinations-grid { grid-template-columns: repeat(3, 1fr); grid-gap: 25px 30px; }
	.philosophy-section { background-size: cover; }
	.itinerary-meta dd { width: 100%; margin-left: 25px; }
	.footer-grid { grid-template-columns: 2fr 1fr 2fr 1fr; gap: 20px; }
}

@media (max-width: 1200px) {
	.main-footer { padding: 20px 0; }
	.footer-grid { grid-template-columns: 1fr; gap: 20px; }
	.footer-brand { grid-column: 1 / -1; text-align: center; }
	.footer-brand a { display: flex; justify-content: center; }
	.footer-nav { text-align: center; }
	.footer-nav h4 { display: none; }
	.footer-nav ul li { display: inline-block; margin: 0 15px; font-size: 1.125rem; }
	.footer-contact h4 { display: none; }
	.footer-contact { width: 360px; margin: auto; }
	.footer-col ul li { font-size: 1.125rem; }
	.footer-social { margin: auto; margin-bottom: 20px; text-align: center; }
	.footer-bottom { font-size: 1.125rem; }

	.hero-content { left: 10%; }
	.philosophy-section { background: linear-gradient(to left, #faf3e8 10%, transparent 100%),	url(/index-new/images/idx-btm.png) no-repeat right center / cover; }
	.philosophy-content { width: 80%; margin: auto; text-align: center; }
	.philosophy-content h3 { font-size: 2.5rem; }
}

@media (max-width: 1024px) {
	.container-sm { max-width: 100%; padding: 0 20px; }
	.dest-card { margin-bottom: 20px; }
	.destinations-grid { grid-gap: 20px; }
	.itineraries-grid { grid-template-columns: repeat(2, 1fr); }
	.btn-primary, .btn-secondary { width: 180px; height: 60px; font-size: 1.25rem; }
	.fa-arrow-right-long::before { font-size: 1.1rem; }
	.dest-icon { width: 60px; height: 60px; margin-top: -50px; }
	.india-icon::before { width: 30px; height: 34px; }
	.japan-icon::before { width: 35px; height: 32px; }
	.tibet-icon::before { width: 30px; height: 36px; }
	.kunlun-icon::before { width: 32px; height: 32px; }
	.buddhism-icon::before { width: 36px; height: 38px; }
}

@media (max-width: 980px) {
	.hero-content { left: 5%; }
	.hero-title { font-size: 3.5rem; }
	.hero-sub { font-size: 1.5rem; }
	.hero-desc { font-size: 1.5rem; }
	.logo img { width: 160px; padding: 5px 0; }
	.hamburger { display: block; }
	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--accent-color);
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: 0.35s ease;
	}
	.nav-menu.active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
	.nav-menu ul {
		display: block;
		margin: 0;
	}
	.nav-menu ul li {
		margin: 0;
		text-align: center;
	}
	.nav-menu ul li a {
		display: block;
		padding: 13px 20px;
		border-bottom: 1px solid #eee;
		color: #fff;
		font-size: 1.05rem;
		font-weight: 500;
	}
	.nav-menu ul li:last-child a { border-bottom: 0; }
	.header-right { gap: 12px; }
	.btn-contact-top { padding: 8px 16px; font-size: 1rem; }
	.section-title-wrap h2 { font-size: 2.5rem; }
	.footer-bottom { flex-wrap: wrap; justify-content: center; }
	.footer-bottom span { float: none; }
	.dest-info p{ height: 7rem; }
}

@media (max-width: 768px) {
	.section-padding { padding: 60px 0; }
	.dest-card { width: 100%; }
	.destinations-grid { grid-template-columns: repeat(2, 1fr); }
	.service-item h3 { font-size: 23px; }
	.service-item p { font-size: 17px; }
	.philosophy-section { padding: 60px 0; background: linear-gradient(rgba(250, 243, 232, 0.7), rgba(250, 243, 232, 0.7)), url('/index-new/images/idx-btm.png') no-repeat center center / cover; }
	.philosophy-content { width: 100%; }
	.footer-grid { grid-template-columns: 1fr; }
	}

@media (max-width: 640px) {
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.philosophy-content h3 { font-size: 2rem; }
	.philosophy-highlight::before { display: none; }
	.footer-logo { width: 240px; }
	.hero-actions { gap: 20px; justify-content: center; }
	.hero-content { left: 0; top: 8%; }
	.hero-title { font-size: 2.5rem; letter-spacing: 3px; }
	.hero-section { height: 500px; background-position: 68%; }
	.hero-content{ text-align: center; }
	.hero-text{ margin-bottom: 25px; }
	.hero-section::before {	content: ''; position: absolute; inset: 0; z-index: 1; background: rgba(255,255,255,0.4);}
	.hero-content, .scroll-indicator { z-index: 2; }
	.hero-sub{ letter-spacing: 0.1rem; }
}


@media (max-width: 480px) {
	.section-padding { padding: 40px 0; }
	.itineraries-grid { grid-template-columns: 1fr; }
	.destinations-grid{ grid-template-columns: 1fr; }
	.btn-primary, .btn-secondary { width: 150px; height: 55px; font-size: 1.2rem; }
	.hero-actions i { margin-left: 10px; }
	.fa-arrow-right-long::before { font-size: 1rem; }
	.hero-sub { font-size: 1.2rem; }
	.hero-title { font-size: 2rem; letter-spacing: 3px; line-height: 3rem; }
	.hero-desc { font-size: 1.2rem; }
	.hero-section { background-position: 89%; }
	.hero-section::before {	background: rgba(255,255,255,0.6); }
	.service-item h3 { font-size: 21px; }
	.service-icon img { height: auto; }
	.footer-logo { width: 220px; }
	.social-icons a{ width: 55px; height: 55px; }
	.social-icons a i{ font-size: 32px; margin-top: 0px; }
	.dest-info p{ height: auto; }
}

@media (max-width: 375px) {
	.hero-section{ height: 600px; }
	.footer-logo { width: 200px; }
	.footer-contact { width: 100%; }
	.header-right { gap: 5px; }
	.btn-contact-top { font-size: 0.8rem; }
	.header-wrap { padding: 0 8px; }
	.services-grid { grid-template-columns: 1fr; }
}