* {
	margin: 0px;
	padding: 0px;
	border: none;
	outline: none;
	box-sizing: border-box;
}

:root {
	--theme-color: linear-gradient(135deg, #00247d, #00509d);
	--secondary-color: #E94B3C;
	--accent-color: #F7931E;
	--text-color: #2D3748;
	--title-color: #0b2545;
	--secondary-font: "Caveat", cursive;
	--text-font: "Jost", sans-serif;
	--title-font: "Jost", sans-serif;
	--primary-color: #0F4C81;
	--dark-color: #2D3748;
	--light-bg: #F7FAFC;
	--white: #ffffff;
	--border-color: #E2E8F0;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--primary-navy: #1A3A5C;
	--primary-blue: #2E5C8A;
	--accent-gold: #D4A843;
	--accent-coral: #E67E50;
	--bg-cream: #FFF9F0;
	--text-muted: #6B7280;
}

body {
	font-size: 20px;
	color: var(--text-color);
	line-height: 29px;
	font-weight: 400;
	background: #ffffff;
	font-family: var(--text-font);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	-webkit-font-smoothing: antialiased;
	padding-top: 90px;
  /* overflow-x: hidden; */;
}

p {
	text-align: justify;
}

.large-container {
	max-width: 1710px;
	padding: 0px 15px;
	margin: 0 auto;
}

.container-fluid {
	padding: 0px;
}

.auto-container {
	position: static;
	max-width: 1330px;
	padding: 0px 15px;
	margin: 0 auto;
}

.small-container {
	max-width: 680px;
	margin: 0 auto;
}

.boxed_wrapper {
	position: relative;
	margin: 0 auto;
	overflow: hidden !important;
	width: 100%;
	min-width: 300px;
}

a {
	text-decoration: none;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

a:hover {
	text-decoration: none;
	outline: none;
}

input,
button,
select,
textarea {
	font-family: var(--text-font);
	font-weight: 400;
	font-size: 18px;
	background: transparent;
}

::-webkit-input-placeholder {
	color: inherit;
}

::-moz-input-placeholder {
	color: inherit;
}

::-ms-input-placeholder {
	color: inherit;
}

ul,
li {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.content-box.pp-layout {
	padding-left: 30px !important;
	margin-top: 15px;
}

.content-box.pp-layout li {
	list-style: disc !important;
}

.content-box.pp-layout p {
	margin-bottom: 1px;
}

.content-box.pp-layout h6 {
	margin-top: 28px;
}

.about-layout ul {
	padding-left: 30px !important;
	margin-top: 15px;
}

.about-layout li {
	list-style: disc !important;
}

input {
	transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus {
	outline: none;
	box-shadow: none;
	transition: all 500ms ease;
}

p {
	position: relative;
	font-family: var(--text-font);
  /* color: var(--text-color); */
	font-weight: 400;
	margin: 0px;
	transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	position: relative;
	font-family: var(--title-font);
	font-weight: 700;
	color: var(--title-color);
  
	transition: all 500ms ease;
	margin-top: 22px;
}

 /* ==================== HEADER STYLES ==================== */
        
.main-header {
	background: var(--white);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
}

.header-wrapper {
	padding: 20px 0;
	transition: padding 0.3s ease;
}

.main-header.scrolled .header-wrapper {
	padding: 12px 0;
}


.header-wrapper .row {
	display: flex !important;
	align-items: center;
	flex-wrap: nowrap;
	margin-left: 0;
	margin-right: 0;
}

.header-wrapper .row > [class*="col-"] {
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
}

.header-wrapper .col-lg-2.col-6 {
	flex: 0 0 auto;
	width: auto;
	max-width: none;
}

.header-wrapper .col-lg-7 {
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
	max-width: none;
}

.header-wrapper .col-lg-3.col-6 {
	flex: 0 0 auto;
	width: auto;
	max-width: none;
	margin-left: auto;
}

.logo-container {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.logo-container img {
	max-height: 55px;
	width: auto;
	transition: all 0.3s ease;
}

.main-header.scrolled .logo-container img {
	max-height: 48px;
}

.nav-menu-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 8px;
}

.nav-menu > li {
	position: relative;
}

.nav-menu > li > a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.nav-menu > li > a::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 30px;
	height: 2px;
	background: var(--secondary-color);
	border-radius: 2px;
	transition: transform 0.3s ease;
}

.nav-menu > li.active > a,
        .nav-menu > li > a:hover {
	color: var(--secondary-color);
	background: rgba(233, 75, 60, 0.08);
}

.nav-menu > li.active > a::after,
        .nav-menu > li > a:hover::after {
	transform: translateX(-50%) scaleX(1);
}

.dropdown-icon {
	font-size: 11px;
	margin-left: 2px;
	transition: transform 0.3s ease;
}

.nav-menu > li:hover .dropdown-icon {
	transform: rotate(180deg);
}

.dropdown-content {
	position: absolute;
	top: calc(100% + 15px);
	left: 0;
	min-width: 250px;
	background: var(--white);
	border-radius: 12px;
	padding: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	border: 1px solid var(--border-color);
}

.nav-menu > li:hover .dropdown-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-content li {
	list-style: none;
}

.dropdown-content a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	color: var(--text-color);
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	font-size: 14.5px;
}

.dropdown-content a:hover {
	background: var(--light-bg);
	color: var(--primary-color);
	transform: translateX(5px);
}

.dropdown-content a i {
	color: var(--secondary-color);
	font-size: 14px;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	flex-wrap: nowrap;
}

.btn-book-now {
	background: linear-gradient(135deg, var(--secondary-color), #d43d2f);
	color: var(--white);
	padding: 7px 15px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(233, 75, 60, 0.3);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
	flex-shrink: 0;
}

.btn-book-now:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(233, 75, 60, 0.4);
	color: var(--white);
}

.mobile-toggle-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	border-radius: 8px;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.mobile-toggle-btn:hover {
	background: var(--light-bg);
}

.mobile-toggle-btn span {
	width: 26px;
	height: 2.5px;
	background: var(--primary-color);
	border-radius: 3px;
	transition: all 0.3s ease;
}

.mobile-toggle-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle-btn.active span:nth-child(2) {
	opacity: 0;
	transform: translateX(-20px);
}

.mobile-toggle-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

        /* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 380px;
	height: 100vh;
	background: var(--white);
	z-index: 9999;
	overflow-y: auto;
	transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
	right: 0;
}

.mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu-header {
	padding: 25px;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobile-menu-header img {
	max-height: 45px;
            /* filter: brightness(0) invert(1); */;
}

.mobile-close-btn {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: var(--white);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.mobile-close-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(90deg);
}

.mobile-menu-body {
	padding: 25px;
}

.mobile-menu-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-menu-nav > li {
	margin-bottom: 8px;
}

.mobile-menu-nav > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	color: var(--text-color);
	text-decoration: none;
	border-radius: 10px;
	font-weight: 500;
	transition: all 0.3s ease;
	background: var(--light-bg);
}

.mobile-menu-nav > li > a:hover {
	background: var(--primary-color);
	color: var(--white);
}

.mobile-menu-nav > li.active > a {
	background: var(--secondary-color);
	color: var(--white);
}

.mobile-submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	margin-left: 15px;
	margin-top: 8px;
}

.mobile-submenu.active {
	max-height: 500px;
}

.mobile-submenu a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 18px;
	color: var(--text-color);
	text-decoration: none;
	border-radius: 8px;
	margin-bottom: 5px;
	transition: all 0.3s ease;
	font-size: 14px;
}

.mobile-submenu a:hover {
	background: var(--light-bg);
	padding-left: 25px;
}

.mobile-submenu i {
	color: var(--secondary-color);
	font-size: 12px;
}

.mobile-contact-section {
	margin-top: 30px;
	padding-top: 25px;
	border-top: 2px solid var(--border-color);
}

.mobile-contact-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: var(--light-bg);
	border-radius: 10px;
	margin-bottom: 12px;
	text-decoration: none;
	color: var(--text-color);
	transition: all 0.3s ease;
}

.mobile-contact-item:hover {
	background: var(--primary-color);
	color: var(--white);
}

.mobile-contact-item:hover .mobile-contact-icon {
	background: var(--white);
	color: var(--primary-color);
}

.mobile-contact-icon {
	width: 45px;
	height: 45px;
	background: var(--white);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--secondary-color);
	transition: all 0.3s ease;
}

        /* ==================== RESPONSIVE ==================== */
        
@media (max-width: 1199px) {
	.nav-menu > li > a {
		padding: 10px 14px;
		font-size: 14px;
	}
}

@media (max-width: 991px) {
	.nav-menu-wrapper {
		display: none;
	}

	.mobile-toggle-btn {
		display: flex;
	}

	.nav-menu {
		display: none;
	}

	.header-actions {
		justify-content: flex-end;
	}
}

@media (max-width: 576px) {
	.mobile-menu {
		max-width: 100%;
	}

	.logo-container img {
		max-height: 42px;
	}

	.btn-book-now {
		padding: 7px 14px;
		font-size: 13px;
	}

	.header-wrapper .row > [class*="col-"] {
		padding-left: 10px;
		padding-right: 10px;
	}

	.header-actions {
		gap: 8px;
	}
}

@media (max-width: 340px) {
	.btn-book-now span,
	.btn-book-now {
		font-size: 12px;
		padding: 7px 10px;
		gap: 4px;
	}

	.header-wrapper .row > [class*="col-"] {
		padding-left: 8px;
		padding-right: 8px;
	}

	.mobile-toggle-btn {
		padding: 8px;
	}
}



 /* ==================== FOOTER STYLES ==================== */
        
.main-footer {
	background: linear-gradient(to bottom, #1A202C 0%, #2D3748 100%);
	color: rgba(255, 255, 255, 0.85);
	padding-top: 70px;
	position: relative;
	margin-top: 80px;
}

.main-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

        /* Footer Widget */
.footer-widget {
	margin-bottom: 40px;
}

.footer-logo-section {
	margin-bottom: 25px;
}

.footer-logo-section img {
	max-height: 65px;
	margin-bottom: 20px;
}

.footer-description {
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 25px;
}

.footer-heading {
	font-family: 'Merriweather', serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 12px;
}

.footer-heading::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
	border-radius: 3px;
}

.footer-links-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links-list li {
	margin-bottom: 14px;
}

.footer-links-list a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	font-size: 15px;
}

.footer-links-list a:hover {
	color: var(--secondary-color);
	padding-left: 8px;
}

.footer-links-list a i {
	color: var(--accent-color);
	font-size: 10px;
	transition: transform 0.3s ease;
}

.footer-links-list a:hover i {
	transform: translateX(3px);
}

        /* Contact Info */
.footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-contact-item {
	display: flex;
	gap: 15px;
	margin-bottom: 22px;
}

.contact-item-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(233, 75, 60, 0.15);
	border-radius: 12px;
	color: var(--secondary-color);
	font-size: 18px;
}

.contact-item-content {
	flex: 1;
	padding-top: 4px;
}

.contact-item-content span,
        .contact-item-content a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	display: block;
	line-height: 1.6;
	transition: color 0.3s ease;
}

.contact-item-content a:hover {
	color: var(--secondary-color);
}

        /* Footer Bottom */
.footer-bottom-section {
	background: rgba(0, 0, 0, 0.3);
	padding: 28px 0;
	margin-top: 60px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-content {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	margin: 0;
}

.copyright-content i {
	color: var(--secondary-color);
	margin: 0 5px;
}

.footer-bottom-menu {
	list-style: none;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.footer-bottom-menu a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
	position: relative;
}

.footer-bottom-menu a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--secondary-color);
	transition: width 0.3s ease;
}

.footer-bottom-menu a:hover {
	color: var(--secondary-color);
}

.footer-bottom-menu a:hover::after {
	width: 100%;
}

        /* Scroll to Top Button */
.scroll-to-top-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, var(--secondary-color), #d43d2f);
	border: none;
	border-radius: 50%;
	color: var(--white);
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
	z-index: 999;
	box-shadow: 0 8px 24px rgba(233, 75, 60, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
}

.scroll-to-top-btn.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-to-top-btn:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(233, 75, 60, 0.5);
}

        /* ==================== RESPONSIVE ==================== */
        
@media (max-width: 991px) {
	.footer-bottom-menu {
		justify-content: center;
		margin-top: 15px;
	}
}

@media (max-width: 768px) {
	.main-footer {
		padding-top: 50px;
		margin-top: 60px;
	}

	.footer-heading {
		font-size: 18px;
	}

	.footer-widget {
		margin-bottom: 35px;
	}
}

@media (max-width: 576px) {
	.scroll-to-top-btn {
		width: 46px;
		height: 46px;
		bottom: 20px;
		right: 20px;
		font-size: 18px;
	}

	.footer-bottom-menu {
		gap: 15px;
		font-size: 13px;
	}
}




    /* ==================== HERO BANNER ==================== */
.hero-banner {
	position: relative;
	min-height:650px;
    height:auto;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #0F4C81 0%, #1a5fa0 100%);
        /* background: linear-gradient(135deg, #0f4c81b0 0%, #1a5fa0a6 100%); */
        /* background: linear-gradient(135deg, #0f4c81d4 0%, #1a5fa0 100%); */;
}

.hero-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
    background:linear-gradient(
        90deg,
        rgba(20,28,35,.45) 0%,
        rgba(20,28,35,.20) 55%,
        rgba(20,28,35,.10) 100%
    );

}

.hero-content {
	position: relative;
	z-index: 2;
	color: var(--white);
	max-width: 800px;
	animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	padding: 8px 15px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 25px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-tag i {
	color: var(--accent-color);
}

.hero-content h1 {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--white);
}

.hero-content p {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 35px;
	color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.btn-hero {
	padding: 8px 15px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
}

.btn-hero-primary {
	background: var(--secondary-color);
	color: var(--white);
	box-shadow: 0 8px 20px rgba(233, 75, 60, 0.3);
}

.btn-hero-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(233, 75, 60, 0.4);
	color: var(--white);
}

.btn-hero-outline {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-hero-outline:hover {
	background: var(--white);
	color: var(--primary-color);
	border-color: var(--white);
}

    /* ==================== SECTION STYLES ==================== */
.section-spacing {
	padding: 80px 0;
}

.section-light {
	background: var(--light-bg);
}

.section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.section-subtitle {
	display: inline-block;
	background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
	color: var(--white);
	padding: 8px 25px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.section-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 20px;
	line-height: 1.3;
}

.section-description {
	font-size: 16px;
	color: #718096;
	line-height: 1.8;
}

/* ==================== Contact Section ==================== */
.contact-section {
	padding: 80px 0;
	background: var(--white);
}

.section-intro {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
}

.section-label {
	display: inline-block;
	background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
	color: var(--white);
	padding: 8px 25px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.section-intro h2 {
	font-size: 42px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 15px;
}

.section-intro p {
	font-size: 17px;
	color: var(--text-color);
	line-height: 1.8;
}

    /* Contact Cards */
.contact-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.contact-card {
	background: var(--white);
	padding: 40px 30px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.contact-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
	border-color: var(--secondary-color);
}

.contact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-color), #1a5fa0);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 32px;
	color: var(--white);
	transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
	transform: scale(1.1);
	background: linear-gradient(135deg, var(--secondary-color), #d43d2f);
}

.contact-card h4 {
	font-size: 22px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 15px;
}

.contact-card p {
	font-size: 16px;
	color: var(--text-color);
	line-height: 1.7;
	margin: 0;
}

.contact-card a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.contact-card a:hover {
	color: var(--secondary-color);
}

    /* Contact Form Section */
.contact-form-section {
	background: var(--light-bg);
	padding: 60px;
	border-radius: 16px;
	max-width: 800px;
	margin: 0 auto 60px;
}

.form-intro {
	text-align: center;
	margin-bottom: 40px;
}

.form-intro h3 {
	font-size: 32px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 12px;
}

.form-intro p {
	font-size: 16px;
	color: var(--text-color);
}

.contact-form {
	display: grid;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-label {
	font-size: 15px;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 8px;
}

.form-input,
    .form-textarea {
	padding: 14px 18px;
	border: 2px solid var(--border-color);
	border-radius: 10px;
	font-size: 15px;
	color: var(--text-color);
	background: var(--white);
	transition: all 0.3s ease;
}

.form-input:focus,
    .form-textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

.form-textarea {
	resize: vertical;
	min-height: 150px;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.submit-btn {
	padding: 16px 40px;
	background: linear-gradient(135deg, var(--secondary-color), #d43d2f);
	color: var(--white);
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(233, 75, 60, 0.3);
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(233, 75, 60, 0.4);
}

    /* Responsive */
@media (max-width: 768px) {
	body {
		padding-top: 75px;
	}

	.page-header {
		padding: 80px 0;
	}

	.page-header h1 {
		font-size: 38px;
	}

	.section-intro h2 {
		font-size: 32px;
	}

	.contact-section {
		padding: 60px 0;
	}

	.contact-cards-grid {
		grid-template-columns: 1fr;
	}

	.contact-form-section {
		padding: 40px 25px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.page-header h1 {
		font-size: 32px;
	}

	.breadcrumb-nav {
		font-size: 14px;
	}
}

    /* ==================== ABOUT SECTION ==================== */
.about-content {
	display: flex;
	align-items: center;
	gap: 60px;
}

.about-image {
	flex: 1;
	position: relative;
}

.about-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-text {
	flex: 1;
}

.about-text h2 {
	font-size: 38px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 20px;
}

.about-text p {
	font-size: 16px;
	color: #718096;
	line-height: 1.8;
	margin-bottom: 30px;
}

    /* ==================== DESTINATION CARDS ==================== */
.destination-card {
	display: block;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.destination-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.destination-image {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.destination-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s ease;
}

.destination-card:hover img {
	transform: scale(1.05);
}

.destination-content {
	padding: 20px;
}

.destination-content h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #0F4C81;
}

.destination-content p {
	font-size: 14px;
	color: #666;
	margin: 0;
}

.destination-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	padding: 5px 12px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 20px;
	color: #fff;
}

.badge-canada {
	background: #d90429;
}

.badge-uk {
	background: #003087;
}

    /* ==================== TOUR CARDS ==================== */
.tour-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.tour-card:hover {
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.tour-image-wrapper {
	position: relative;
	height: 280px;
	overflow: hidden;
}

.tour-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.tour-card:hover .tour-image-wrapper img {
	transform: scale(1.08);
}

.tour-price {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--secondary-color);
	color: var(--white);
	padding: 4px 12px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 15px;
	box-shadow: 0 4px 15px rgba(233, 75, 60, 0.3);
}

.tour-body {
	padding: 30px;
}

.tour-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--border-color);
}

.tour-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #718096;
	font-size: 14px;
}

.tour-meta-item i {
	color: var(--secondary-color);
}

.tour-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.tour-tag {
	padding: 6px 15px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	color: var(--white);
}

.tag-canada {
	background: linear-gradient(135deg, #E94B3C, #d43d2f);
}

.tag-uk {
	background: linear-gradient(135deg, #0F4C81, #1a5fa0);
}

.tag-nature {
	background: linear-gradient(135deg, #10b981, #059669);
}

.tag-culture {
	background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.tour-body h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--dark-color);
	margin: 15px 0;
	line-height: 1.4;
}

.tour-body p {
	font-size: 15px;
	color: #718096;
	line-height: 1.7;
	margin-bottom: 25px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.btn-book-tour {
	display: block;
	width: 100%;
	padding: 14px;
	background: linear-gradient(135deg, var(--secondary-color), #d43d2f);
	color: var(--white);
	text-align: center;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
}

.btn-book-tour:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(233, 75, 60, 0.3);
	color: var(--white);
}

    /* ==================== FEATURES ==================== */
.feature-item {
	text-align: center;
	padding: 40px 30px;
	background: var(--white);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	height: 100%;
}

.feature-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-color), #1a5fa0);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 32px;
	color: var(--white);
	transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
	transform: rotateY(180deg);
}

.feature-item h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 15px;
}

.feature-item p {
	font-size: 15px;
	color: #718096;
	line-height: 1.7;
	margin: 0;
	padding: 12px;
}

    /* ==================== ADVENTURE CARDS ==================== */
.adventure-item {
	position: relative;
	height: 350px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.adventure-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.adventure-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.adventure-item:hover img {
	transform: scale(1.15);
}

.adventure-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 30px;
	text-align: center;
}

.adventure-overlay h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 15px;
}

.btn-adventure {
	padding: 12px 30px;
	background: var(--white);
	color: var(--dark-color);
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
}

.btn-adventure:hover {
	background: var(--secondary-color);
	color: var(--white);
	transform: scale(1.05);
}

    /* ==================== CTA SECTION ==================== */
.cta-section {
	background: linear-gradient(135deg, var(--primary-color) 0%, #1a5fa0 100%);
	padding: 80px 0;
	text-align: center;
	color: var(--white);
}

.cta-section h2 {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 20px;
	color: var(--white);
}

.cta-section p {
	font-size: 18px;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.95;
}

.cta-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-cta {
	padding: 8px 15px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
}

.btn-cta-white {
	background: var(--white);
	color: var(--primary-color);
}

.btn-cta-white:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
	color: var(--primary-color);
}

.btn-cta-outline {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
}

.btn-cta-outline:hover {
	background: var(--white);
	color: var(--primary-color);
}

    /* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
	.hero-content h1 {
		font-size: 42px;
	}

	.section-title {
		font-size: 36px;
	}

	.about-content {
		flex-direction: column;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	body {
		padding-top: 75px;
	}

	.hero-banner {
		height: 550px;
	}

	.hero-content h1 {
		font-size: 36px;
	}

	.hero-content p {
		font-size: 16px;
	}

	.section-spacing {
		padding: 60px 0;
	}

	.section-title {
		font-size: 32px;
	}

	.tour-image-wrapper {
		height: 220px;
	}

	.cta-section h2 {
		font-size: 32px;
	}
}

@media (max-width: 576px) {
	.hero-content h1 {
		font-size: 28px;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.btn-hero {
		width: 100%;
		justify-content: center;
	}

	.section-title {
		font-size: 28px;
	}

	.destination-content {
		padding: 25px;
	}

	.tour-body {
		padding: 25px;
	}
}


/* ==================== POLICY ==================== */
    /* Page Header */
.page-header {
	position: relative;
	padding: 100px 0;
        /* background: linear-gradient(135deg, var(--primary-color) 0%, #1a5fa0 100%); */
	background: linear-gradient(135deg, var(--primary-color) 0%, #1a5fa000 100%);
        /* --------about page-----------
        background: linear-gradient(135deg, var(--primary-color) 0%, #1a5fa0 100%); */
	text-align: center;
	overflow: hidden;
}

.policy-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.policy-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-header::before {
	content: '';
	position: absolute;
        /* top: 0;
        left: 0;
        width: 100%;
        height: 100%; */
        /* background: url('assets/images/background/page-title5.webp') center/cover; */
	opacity: 0.15;
}

.page-header-content {
	position: relative;
	z-index: 2;
}

.page-header h1 {
	font-size: 48px;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 20px;
        /* letter-spacing: -1px; */;
}

.breadcrumb-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	line-height: 36px;
	font-weight: 600;
}

.breadcrumb-nav li {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
}

.breadcrumb-nav li a {
	color: var(--white);
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb-nav li a:hover {
	color: var(--accent-color);
}

.breadcrumb-nav li::after {
	content: '/';
	margin-left: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-nav li:last-child::after {
	display: none;
}

    /* Content Section */
.policy-content-section {
	padding: 80px 0;
	background: var(--white);
}

.policy-container {
	max-width: 900px;
	margin: 0 auto;
	background: var(--white);
	padding: 50px;
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.policy-intro {
	font-size: 17px;
	line-height: 1.9;
	color: var(--text-color);
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 2px solid var(--border-color);
}

.policy-section {
	margin-bottom: 40px;
}

.policy-section h6 {
	font-size: 22px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 20px;
	padding-left: 20px;
	border-left: 4px solid var(--secondary-color);
}

.policy-section p {
	font-size: 16px;
	line-height: 1.9;
	color: var(--text-color);
	margin-bottom: 15px;
}

.policy-section ul {
	margin: 20px 0;
	padding-left: 25px;
}

.policy-section ul li {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-color);
	margin-bottom: 12px;
	position: relative;
	padding-left: 10px;
}

.policy-section ul li::marker {
	color: var(--secondary-color);
}

.policy-section ul li p {
	display: inline;
}

.policy-section a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.policy-section a:hover {
	color: var(--secondary-color);
	text-decoration: underline;
}

.policy-section strong {
	color: var(--dark-color);
	font-weight: 700;
}

    /* Contact Box */
.contact-box {
	background: linear-gradient(135deg, var(--primary-color) 0%, #1a5fa0 100%);
	padding: 40px;
	border-radius: 12px;
	text-align: center;
	margin-top: 50px;
}

.contact-box h4 {
	font-size: 24px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 15px;
}

.contact-box p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 25px;
}

.contact-box a {
	display: inline-block;
	padding: 14px 35px;
	background: var(--white);
	color: var(--primary-color);
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-box a:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

    /* Responsive */
@media (max-width: 768px) {
	body {
		padding-top: 75px;
	}

	.page-header {
		padding: 70px 0;
	}

	.page-header h1 {
		font-size: 36px;
	}

	.policy-container {
		padding: 30px 20px;
	}

	.policy-section h6 {
		font-size: 20px;
	}

	.policy-content-section {
		padding: 60px 0;
	}

	.contact-box a {
		display: block;
		margin: 10px 0;
	}

	.disclaimer-card {
		padding: 40px 25px;
	}

	.disclaimer-content h2 {
		font-size: 24px;
	}

	.disclaimer-text {
		font-size: 16px;
	}

	.disclaimer-content-section {
		padding: 60px 0;
	}

	.action-box {
		padding: 40px 25px;
	}

	.action-buttons {
		flex-direction: column;
	}

	.action-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 576px) {
	.page-header h1 {
		font-size: 28px;
	}

	.breadcrumb-nav {
		font-size: 14px;
	}
} 

    /* Content Section */
.disclaimer-content-section {
	padding: 80px 0;
	background: var(--white);
}

.disclaimer-container {
	max-width: 900px;
	margin: 0 auto;
}

.disclaimer-card {
	background: var(--white);
	padding: 60px;
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
	position: relative;
}

.disclaimer-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--accent-color), #f59e0b);
	border-radius: 16px 16px 0 0;
}

.disclaimer-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--accent-color), #f59e0b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	font-size: 36px;
	color: var(--white);
}

.disclaimer-content h2 {
	font-size: 28px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 25px;
	text-align: center;
}

.disclaimer-text {
	font-size: 17px;
	line-height: 1.9;
	color: var(--text-color);
	text-align: center;
	margin-bottom: 0;
}

.disclaimer-text a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.disclaimer-text a:hover {
	color: var(--secondary-color);
	text-decoration: underline;
}

    /* Action Box */
.action-box {
	background: linear-gradient(135deg, var(--primary-color) 0%, #1a5fa0 100%);
	padding: 50px;
	border-radius: 16px;
	text-align: center;
	margin-top: 50px;
}

.action-box h3 {
	font-size: 28px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 15px;
}

.action-box p {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 30px;
}

.action-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.action-btn {
	padding: 4px 15px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.action-btn-white {
	background: var(--white);
	color: var(--primary-color);
}

.action-btn-white:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.action-btn-outline {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
}

.action-btn-outline:hover {
	background: var(--white);
	color: var(--primary-color);
}

    /* Info Box */
.info-hotel {
	background: var(--light-bg);
	border-left: 4px solid var(--accent-color);
	padding: 25px;
	margin: 30px 0;
	border-radius: 8px;
}

.info-hotel h5 {
	font-size: 18px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 15px;
}

.info-hotel p {
	margin-bottom: 10px;
	font-size: 16px;
	color: var(--text-color);
}

.info-hotel ul {
	margin: 15px 0;
	padding-left: 25px;
}

    /* Subsection */
.subsection {
	margin-left: 20px;
	margin-top: 20px;
}

.subsection p:first-child {
	font-weight: 600;
	color: var(--dark-color);
}

    /* Alert Box */
.alert-box {
	background: #fef3c7;
	border-left: 4px solid var(--accent-color);
	padding: 25px;
	margin: 30px 0;
	border-radius: 8px;
}

.alert-box p {
	margin-bottom: 10px;
	font-size: 16px;
	color: var(--text-color);
}

.alert-box strong {
	color: var(--dark-color);
}


    /* Content Section */
.adventure-content-section {
	padding: 80px 0;
	background: var(--white);
}

.content-wrapper {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 40px;
}

    /* Main Content */
.main-content {
	background: var(--white);
}

.content-card {
	background: var(--white);
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
}

.section-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 25px;
	padding-left: 20px;
	border-left: 5px solid #10b981;
}

.featured-image {
	width: 100%;
	height: 450px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 30px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.content-text {
	font-size: 17px;
	line-height: 1.9;
	color: var(--text-color);
	margin-bottom: 25px;
}

.adventure-subtitle {
	font-size: 24px;
	font-weight: 700;
	color: #10b981;
        /* color: #0066cc; */
	margin: 35px 0 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.adventure-subtitle i {
	color: var(--secondary-color);
	font-size: 22px;
}

.adventure-image {
	width: 100%;
	height: 350px;
	object-fit: cover;
	border-radius: 12px;
	margin: 25px 0;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
	transition: transform 0.3s ease;
}

.adventure-image:hover {
	transform: scale(1.02);
}

    /* Highlight Box */
.highlight-box {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	padding: 30px;
	border-radius: 12px;
	color: var(--white);
	margin: 30px 0;
}

.highlight-box h4 {
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 15px;
}

.highlight-box p {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
}

    /* Sidebar */
.sidebar {
	position: sticky;
	top: 110px;
	height: fit-content;
}

.sidebar-widget {
	background: var(--white);
	padding: 35px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
}

.widget-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 3px solid #10b981;
        /* border-bottom: 3px solid #0066cc; */;
}

    /* Contact Widget */
.contact-widget {
	text-align: center;
	background: linear-gradient(135deg, var(--light-bg), var(--white));
}

.contact-icon-box {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #10b981, #059669);
        /* background: linear-gradient(135deg, #0066cc, #004999); */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 32px;
	color: var(--white);
}

.contact-widget p {
	font-size: 16px;
	color: var(--text-color);
	margin-bottom: 20px;
}

.contact-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 30px;
	background: linear-gradient(135deg, var(--secondary-color), #d43d2f);
	color: var(--white);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
}

.contact-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(233, 75, 60, 0.4);
	color: var(--white);
}

    /* Adventure Categories */
.adventure-categories {
	list-style: none;
	padding: 0;
	margin: 0;
}

.adventure-categories li {
	margin-bottom: 15px;
}

.adventure-categories a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px;
	background: var(--light-bg);
	color: var(--text-color);
	text-decoration: none;
	border-radius: 10px;
	font-weight: 500;
	transition: all 0.3s ease;
	border-left: 4px solid transparent;
}

.adventure-categories a:hover {
	background: #10b981;
        /* background: #0066cc; */
	color: var(--white);
	border-left-color: var(--secondary-color);
	padding-left: 20px;
}

.adventure-categories i {
	font-size: 20px;
	color: #10b981;
        /* color: #0066cc; */;
}

.adventure-categories a:hover i {
	color: var(--white);
}

    /* Tips Box */
.tips-box {
	background: #fef3c7;
	border: 2px solid var(--accent-color);
	padding: 25px;
	border-radius: 12px;
}

.tips-box h5 {
	font-size: 18px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.tips-box h5 i {
	color: var(--accent-color);
}

.tips-box p {
	font-size: 15px;
	color: var(--text-color);
	margin: 0;
	line-height: 1.7;
}

    /* CTA Box */
.cta-box {
	background: linear-gradient(135deg, var(--primary-color), #1a5fa0);
	padding: 40px;
	border-radius: 12px;
	text-align: center;
	color: var(--white);
	margin-top: 40px;
}

.cta-box h4 {
	font-size: 24px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 15px;
}

.cta-box p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 25px;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 30px;
	background: var(--white);
	color: var(--primary-color);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

    /* Responsive */
@media (max-width: 991px) {
	.content-wrapper {
		grid-template-columns: 1fr;
	}

	.sidebar {
		position: static;
	}
}

@media (max-width: 768px) {
	body {
		padding-top: 75px;
	}

	.page-header {
		padding: 70px 0;
	}

	.content-card {
		padding: 30px 20px;
	}

	.section-title {
		font-size: 24px;
	}

	.featured-image,
        .adventure-image {
		height: 250px;
	}

	.adventure-content-section {
		padding: 60px 0;
	}

	.sidebar-widget {
		padding: 25px 20px;
	}
}

@media (max-width: 576px) {

	.adventure-subtitle {
		font-size: 20px;
	}
}

  
    /* Page Header about */
.page-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 25px;
	/* max-width: 600px;
	margin-left: auto;
	margin-right: auto; */
	text-align: center;
}

    /* Content Section */
.about-content-section {
	padding: 80px 0;
	background: var(--white);
}

.about-container {
	max-width: 1000px;
	margin: 0 auto;
}

.content-card {
	background: var(--white);
	padding: 50px;
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
	margin-bottom: 40px;
}

.content-section {
	margin-bottom: 45px;
}

.content-section:last-child {
	margin-bottom: 0;
}

.section-heading {
	font-size: 28px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 20px;
	padding-left: 20px;
	border-left: 5px solid var(--secondary-color);
	line-height: 1.3;
}

.content-text {
	font-size: 17px;
	line-height: 1.9;
	color: var(--text-color);
	margin-bottom: 20px;
}

.content-text:last-child {
	margin-bottom: 0;
}

    /* Feature List */
.feature-list {
	margin: 30px 0;
}

.feature-item {
	margin-bottom: 35px;
	padding-left: 0;
}

.feature-item:last-child {
	margin-bottom: 0;
}

.feature-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.feature-title i {
	color: var(--secondary-color);
	font-size: 20px;
}

.feature-description {
	font-size: 17px;
	line-height: 1.9;
	color: var(--text-color);
	padding-left: 32px;
}

    /* Stats Section */
.stats-section {
	background: linear-gradient(135deg, var(--primary-color) 0%, #1a5fa0 100%);
	padding: 60px 0;
	margin: 60px 0;
	border-radius: 16px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
}

.stat-item {
	text-align: center;
	color: var(--white);
}

.stat-number {
	font-size: 48px;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 10px;
	display: block;
}

.stat-label {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

    /* CTA Box */
.cta-box-about {
	background: linear-gradient(135deg, var(--secondary-color) 0%, #d43d2f 100%);
	padding: 50px;
	border-radius: 16px;
	text-align: center;
	margin-top: 60px;
}

.cta-box-about h3 {
	font-size: 32px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 15px;
}

.cta-box-about p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-btn {
	padding: 15px 35px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.cta-btn-white {
	background: var(--white);
	color: var(--secondary-color);
}

.cta-btn-white:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.cta-btn-outline {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
}

.cta-btn-outline:hover {
	background: var(--white);
	color: var(--secondary-color);
}

    /* Responsive */
@media (max-width: 768px) {
	body {
		padding-top: 75px;
	}

	.page-header {
		padding: 80px 0;
	}

	.page-header h1 {
		font-size: 38px;
	}

	.content-card {
		padding: 35px 25px;
	}

	.section-heading {
		font-size: 24px;
	}

	.about-content-section {
		padding: 60px 0;
	}

	.stats-section {
		padding: 40px 20px;
		margin: 40px 0;
	}

	.stat-number {
		font-size: 36px;
	}
	
	.cta-box-about {
		padding: 40px 25px;
	}

	.cta-box-about h3 {
		font-size: 26px;
	}

	.feature-description {
		padding-left: 0;
	}
}

@media (max-width: 576px) {
	.page-header h1 {
		font-size: 32px;
	}

	.breadcrumb-nav {
		font-size: 14px;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.cta-btn {
		width: 100%;
		justify-content: center;
	}
}

/* ---------------------------tour-page-------------------------------- */
.tour-main-hero {
	position: relative;
	background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
	padding: 90px 0 75px;
	text-align: center;
	overflow: hidden;
}

.tour-main-hero::before {
	content: '';
	position: absolute;
	inset: 0;
        /* background: url('assets/images/background/page-title5.webp') center/cover; */
	opacity: 0.10;
}

.tour-main-hero-inner {
	position: relative;
	z-index: 2;
}

.tour-main-hero h1 {
	font-family: 'Merriweather', serif;
	font-size: clamp(38px, 5vw, 60px);
	font-weight: 700;
	color: var(--white);
	margin-bottom: 20px;
	line-height: 1.2;
}

.tour-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	line-height: 36px;
	font-weight: 600;
}

.tour-breadcrumb li {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.65);
}

.tour-breadcrumb li a {
	color: rgba(255, 255, 255, 0.90);
	transition: color 0.3s;
}

.tour-breadcrumb li a:hover {
	color: var(--accent-gold);
}

.tour-breadcrumb li::after {
	content: '/';
	margin-left: 12px;
}

.tour-breadcrumb li:last-child::after {
	display: none;
}

    /* ═══════════════════════════════════════════════
       INTRO SECTION
    ═══════════════════════════════════════════════ */
.tour-main-intro {
	padding: 85px 0;
	background: var(--white);
}

.tour-intro-box {
	max-width: 920px;
	margin: 0 auto;
	text-align: center;
}

.tour-intro-box h2 {
	font-family: 'Merriweather', serif;
	font-size: clamp(30px, 3.5vw, 44px);
	font-weight: 700;
	color: var(--primary-navy);
	margin-bottom: 24px;
	line-height: 1.3;
}

.tour-intro-box p {
	font-size: 17px;
	line-height: 1.85;
	color: var(--text-color);
	margin: 0;
}

    /* ═══════════════════════════════════════════════
       COUNTRY FILTERS
    ═══════════════════════════════════════════════ */
.tour-filters {
	padding: 45px 0;
	background: var(--light-bg);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--white);
	border: 2px solid var(--border-color);
	color: var(--text-color);
	padding: 14px 32px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.filter-btn:hover {
	border-color: var(--accent-gold);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.filter-btn.active {
	background: var(--primary-navy);
	border-color: var(--primary-navy);
	color: var(--white);
}

.filter-btn i {
	font-size: 14px;
}

    /* ═══════════════════════════════════════════════
       TOURS SECTION
    ═══════════════════════════════════════════════ */
.tour-main-section {
	padding: 80px 0;
	background: var(--white);
}

.tours-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 36px;
}

.tour-item {
	background: var(--white);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
	transition: all 0.4s;
	border: 1px solid var(--border-color);
}

.tour-item:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
	transform: translateY(-8px);
	border-color: transparent;
}

    /* Tour Image */
.tour-item-image {
	position: relative;
	height: 280px;
	overflow: hidden;
	background: var(--light-bg);
}

.tour-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.tour-item:hover .tour-item-image img {
	transform: scale(1.06);
}

    /* Country Badge */
.tour-country-badge {
	position: absolute;
	top: 18px;
	right: 18px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	color: var(--primary-navy);
	padding: 8px 18px;
	border-radius: 25px;
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.tour-country-badge i {
	font-size: 11px;
	color: var(--accent-coral);
}

    /* Tour Content */
.tour-item-content {
	padding: 30px 28px;
}

.tour-item-content h3 {
	font-family: 'Merriweather', serif;
	font-size: clamp(19px, 2vw, 23px);
	font-weight: 700;
	color: var(--primary-navy);
	margin-bottom: 16px;
	line-height: 1.4;
	min-height: 60px;
}

.tour-item-content h3 a {
	color: inherit;
	transition: color 0.3s;
}

.tour-item-content h3 a:hover {
	color: var(--accent-coral);
}

    /* Tour Meta */
.tour-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 0;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 20px;
}

.tour-duration {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--text-muted);
	font-weight: 500;
}

.tour-duration i {
	color: var(--accent-coral);
	font-size: 13px;
}

    /* Tour Footer */
.tour-item-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

    /* .tour-price {
        font-family: 'Merriweather', serif;
        font-size: 28px;
        font-weight: 700;
        color: var(--primary-navy);
    } */

.tour-read-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--accent-coral);
	color: var(--white);
	padding: 11px 24px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s;
}

.tour-read-link:hover {
	background: var(--primary-navy);
	transform: translateX(3px);
}

.tour-read-link i {
	font-size: 11px;
}

    /* ═══════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
	body {
		padding-top: 75px;
	}

	.tour-main-intro,
        .tour-main-section {
		padding: 65px 0;
	}

	.tours-grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.tour-item-image {
		height: 240px;
	}

	.tour-item-content {
		padding: 24px 22px;
	}

	.tour-item-content h3 {
		min-height: auto;
	}

	.tour-item-footer {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}

	.tour-read-link {
		justify-content: center;
	}
}