        * {
        	margin: 0;
        	padding: 0;
        	box-sizing: border-box;
        }

        body {
        	font-family: 'Inter', sans-serif;
        	color: #333;
        	background: #fff;
        }

        a {
        	text-decoration: none;
        	color: inherit;
        }

        ul {
        	list-style: none;
        }

        .icon40 {
        	z-index: 9999;
        }

        /* book -popup*/
        .book {
        	position: fixed;
        	padding: 10% 20% 20% 20%;
        	width: 100%;
        	height: 100%;
        	z-index: 999;
        	background-color: rgba(0, 0, 0, 0.8);
        }

        .contact-form {
        	position: relative;
        	padding: 40px;
        	background-color: #fff;
        	border-radius: 10px;
        }


        /* Form */
        .contact-form h3 {
        	font-size: 20px;
        	font-weight: 600;
        	color: #1e293b;
        	margin-bottom: 30px;
        	display: flex;
        	align-items: center;
        	gap: 10px;
        }

        .contact-form h3 svg {
        	width: 24px;
        	height: 24px;
        }

        .form-group {
        	margin-bottom: 20px;
        }

        .form-group label {
        	display: block;
        	font-size: 13px;
        	color: #64748b;
        	margin-bottom: 6px;
        	font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
        	width: 100%;
        	padding: 10px 14px;
        	border: 1px solid #e2e8f0;
        	border-radius: 6px;
        	font-size: 14px;
        	font-family: 'Inter', sans-serif;
        	color: #334155;
        	transition: border-color 0.3s;
        	outline: none;
        	background: #fff;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
        	border-color: #3b82f6;
        }

        .form-group textarea {
        	height: 120px;
        	resize: vertical;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder,
        .form-group select::placeholder {
        	color: #94a3b8;
        }

        .form-row {
        	display: grid;
        	grid-template-columns: 1fr 1fr;
        	gap: 20px;
        }

        .form-error {
        	display: flex;
        	align-items: center;
        	gap: 6px;
        	font-size: 13px;
        	color: #ef4444;
        	margin-bottom: 20px;
        }

        .form-error i {
        	font-size: 12px;
        }

        .submit-btn {
        	display: inline-flex;
        	align-items: center;
        	gap: 8px;
        	background: #f59e0b;
        	color: #fff;
        	padding: 12px 28px;
        	border-radius: 6px;
        	font-size: 15px;
        	font-weight: 600;
        	border: none;
        	cursor: pointer;
        	transition: background 0.3s;
        	font-family: 'Inter', sans-serif;
        }

        .submit-btn:hover {
        	background: #d97706;
        }

        .submit-btn i {
        	font-size: 13px;
        }


        .swiper {
        	width: 100%;
        	height: 100%;
        }

        .swiper-slide {
        	text-align: center;
        	font-size: 18px;
        	background: #fff;
        	display: flex;
        	justify-content: center;
        	align-items: center;
        }

        .swiper-slide img {
        	display: block;
        	width: 100%;
        	height: 100%;
        	object-fit: cover;
        }

        /* Breadcrumb & Filter */
        .breadcrumb-filter {
        	padding: 0px 0;
        	border-bottom: 1px solid #f1f5f9;
        }

        .breadcrumb-filter-inner {
        	display: flex;
        	align-items: center;
        	justify-content: space-between;
        	flex-wrap: wrap;
        	gap: 20px;
        }

        .breadcrumb {
        	display: flex;
        	align-items: center;
        	gap: 8px;
        	font-size: 14px;
        	color: #64748b;
        }

        .breadcrumb i {
        	font-size: 12px;
        }

        .breadcrumb a {
        	color: #334155;
        	transition: color 0.3s;
        }

        .breadcrumb a:hover {
        	color: #3b82f6;
        }

        .breadcrumb .separator {
        	color: #cbd5e1;
        }

        .breadcrumb .current {
        	color: #334155;
        	font-weight: 500;
        }

        .filter-tabs {
        	display: flex;
        	gap: 10px;
        	flex-wrap: wrap;
        }

        .filter-tab {
        	padding: 8px 18px;
        	border-radius: 50px;
        	font-size: 13px;
        	font-weight: 500;
        	color: #64748b;
        	background: #fff;
        	border: 1px solid #e2e8f0;
        	cursor: pointer;
        	transition: all 0.3s;
        }

        .filter-tab:hover {
        	border-color: #f59e0b;
        	color: #f59e0b;
        }

        .filter-tab.active {
        	background: #f59e0b;
        	color: #fff;
        	border-color: #f59e0b;
        }

        /* Header */
        header {
        	position: absolute;
        	top: 0;
        	left: 0;
        	right: 0;
        	z-index: 100;
        	padding: 20px 0;
        }

        .header-inner {
        	display: flex;
        	align-items: center;
        	justify-content: space-between;
        }

        .logo {
        	display: flex;
        	align-items: center;
        	gap: 10px;
        }

        .logo-icon {
        	width: 42px;
        	height: 42px;
        	background: linear-gradient(135deg, #6366f1, #3b82f6, #06b6d4);
        	border-radius: 50%;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	position: relative;
        	overflow: hidden;
        }

        .logo-icon::before {
        	content: '';
        	position: absolute;
        	width: 16px;
        	height: 16px;
        	background: #fbbf24;
        	border-radius: 50%;
        	top: 6px;
        	left: 6px;
        }

        .logo-icon::after {
        	content: '';
        	position: absolute;
        	width: 7px;
        	height: 10px;
        	background: #1e3a5f;
        	border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
        	bottom: 5px;
        	right: 8px;
        }

        .logo-text {
        	color: #fff;
        }

        .logo-text .brand {
        	font-size: 16px;
        	font-weight: 700;
        	font-style: italic;
        	letter-spacing: 0.5px;
        }

        .logo-text .sub {
        	font-size: 8px;
        	font-weight: 400;
        	letter-spacing: 1.5px;
        	text-transform: uppercase;
        	opacity: 0.7;
        }

        .our-services {
        	border-bottom: 1px solid #f1f5f9;
        }

        nav {
        	display: flex;
        	align-items: center;
        	gap: 28px;
        }

        nav a {
        	color: #fff;
        	font-size: 15px;
        	font-weight: 500;
        	transition: opacity 0.3s;
        }

        nav a:hover {
        	opacity: 0.8;
        }

        nav a.active {
        	font-weight: 700;
        }

        .header-right {
        	display: flex;
        	align-items: center;
        	gap: 20px;
        }

        .header-phone {
        	color: #fff;
        	font-size: 14px;
        	font-weight: 500;
        	display: flex;
        	align-items: center;
        	gap: 6px;
        }

        .header-phone i {
        	font-size: 13px;
        }

        .lang-select {
        	color: #fff;
        	font-size: 14px;
        	display: flex;
        	align-items: center;
        	gap: 6px;
        	cursor: pointer;
        }

        .lang-select i {
        	font-size: 11px;
        }

        /* Hero Section */
        .hero2 {
        	position: relative;
        	height: 320px;
        	background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 30%, #0ea5e9 60%, #38bdf8 100%);
        	overflow: hidden;
        }

        .hero2-bg {
        	position: absolute;
        	inset: 0;
        	width: 100%;
        	height: auto;
        	background: url('../img/Bg_service1.jpg') left/cover;
        	opacity: 1;
        }

        .hero2-overlay {
        	position: absolute;
        	inset: 0;
        	background: linear-gradient(to right, rgba(0, 30, 60, 0.5) 0%, rgba(0, 30, 60, 0.1) 60%, transparent 100%);
        }

        .hero-content {
        	position: relative;
        	z-index: 2;
        	display: flex;
        	align-items: center;
        	height: 100%;
        }

        .hero h1 {
        	color: #fff;
        	font-size: 56px;
        	font-weight: 800;
        	letter-spacing: 2px;
        	text-transform: uppercase;
        }

        .hero-boat {
        	position: absolute;
        	right: 12%;
        	top: 10%;
        	z-index: 1;
        }

        .hero-boat img {
        	width: 280px;
        	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
        	transform: rotate(-5deg);
        }

        /* Detail Section */
        .detail-section {
        	padding: 40px 0 60px;
        }

        .detail-grid {
        	width: 100%;
        	display: grid;
        	grid-template-columns: 65% 1fr;
        	gap: 50px;
        	align-items: start;
        }

        .detail-info {
        	display: block;
        	width: 100%;
        }

        .detail-info h2 {
        	font-size: 26px;
        	font-weight: 700;
        	color: #1e293b;
        	margin-bottom: 16px;
        	line-height: 1.3;
        }

        .detail-tags {

        	padding: 0;
        	height: 60px;


        }

        .detail-tag {
        	width: auto;
        	display: inline-flex;
        	align-items: center;

        	padding: 6px 12px;
        	background: #dbeafe;
        	color: #1e40af;
        	border-radius: 6px;
        	font-size: 12px;
        	font-weight: 500;
        	margin-bottom: 6px;
        }

        .detail-tag i {
        	font-size: 11px;
        }

        .detail-bonus {
        	/* 	display: inline-block; */
        	/* 	padding: 6px 12px; */
        	background: #fef3c7;
        	color: #92400e;
        	/* 	border-radius: 6px; */
        	/* 	font-size: 12px; */


        }

        .detail-desc {
        	font-size: 13px;
        	color: #64748b;
        	line-height: 1.7;
        	margin-bottom: 24px;
        }

        .detail-price {
        	font-size: 14px;
        	color: #94a3b8;
        	margin-bottom: 24px;
        }

        .detail-price strong {
        	font-size: 22px;
        	color: #1e293b;
        	font-weight: 700;
        }

        .detail-price .per {
        	font-size: 13px;
        	color: #94a3b8;
        }

        .book-btn {
        	display: inline-flex;
        	align-items: center;
        	gap: 8px;
        	background: #f59e0b;
        	color: #fff;
        	padding: 14px 32px;
        	border-radius: 6px;
        	font-size: 15px;
        	font-weight: 600;
        	border: none;
        	cursor: pointer;
        	transition: background 0.3s;
        	font-family: 'Inter', sans-serif;
        	width: 100%;
        	justify-content: center;
        }

        .book-btn:hover {
        	background: #d97706;
        }

        .book-btn i {
        	font-size: 13px;
        }

        /* Image Gallery */
        .detail-gallery {
        	width: 100%;

        	position: relative;
        	border-radius: 12px;
        	overflow: hidden;
        }

        .gallery-img {
        	width: 100%;
        	height: auto;
        	object-fit: cover;
        	display: block;
        }

        .gallery-dots {
        	position: absolute;
        	bottom: 20px;
        	left: 50%;
        	transform: translateX(-50%);
        	display: flex;
        	gap: 8px;
        }

        .gallery-dot {
        	width: 12px;
        	height: 12px;
        	border-radius: 50%;
        	background: rgba(255, 255, 255, 0.5);
        	cursor: pointer;
        	transition: background 0.3s;
        }

        .gallery-dot.active {
        	background: #fff;
        }

        /* Reviews Section */
        .reviews-section {
        	padding: 50px 0 70px;
        	border-top: 1px solid #f1f5f9;
        }

        .reviews-header {
        	display: flex;
        	align-items: center;
        	justify-content: space-between;
        	margin-bottom: 30px;
        }

        .reviews-header h3 {
        	font-size: 20px;
        	font-weight: 600;
        	color: #1e293b;
        }

        .leave-comment {
        	display: inline-flex;
        	align-items: center;
        	gap: 6px;
        	font-size: 14px;
        	font-weight: 600;
        	color: #3b82f6;
        	cursor: pointer;
        	transition: gap 0.3s;
        }

        .leave-comment:hover {
        	gap: 10px;
        }

        .leave-comment i {
        	font-size: 16px;
        }

        .reviews-grid {
        	display: grid;
        	grid-template-columns: repeat(4, 1fr);
        	gap: 20px;
        }

        .review-card {
        	background: #fff;
        	border-radius: 12px;
        	padding: 24px;
        	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        	transition: transform 0.3s, box-shadow 0.3s;
        }

        .review-card:hover {
        	transform: translateY(-4px);
        	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .review-header {
        	display: flex;
        	align-items: center;
        	gap: 12px;
        	margin-bottom: 14px;
        }

        .review-avatar {
        	width: 40px;
        	height: 40px;
        	border-radius: 50%;
        	background: #3b82f6;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	flex-shrink: 0;
        }

        .review-avatar i {
        	color: #fff;
        	font-size: 18px;
        }

        .review-name {
        	font-size: 14px;
        	font-weight: 600;
        	color: #1e293b;
        }

        .review-date {
        	font-size: 12px;
        	color: #94a3b8;
        }

        .review-text {
        	font-size: 13px;
        	color: #64748b;
        	line-height: 1.6;
        }



        /* Responsive */
        @media (max-width: 1024px) {}

        @media (max-width: 768px) {

        	.hero2-bg {
        		position: absolute;
        		left: 0px;
        		width: 120%;
        		height: auto;
        		background: url('../img/Bg_service.jpg') left/cover;
        		opacity: 1;
        	}

        	.gallery-img {
        		height: 220px;
        	}

        	.detail-grid {
        		display: block;
        	}

        	/* 	.detail-tags {
        		display: grid;
        		grid-template-columns: repeat(2, 1fr);
        		gap: 10px;
        	} */

        	.reviews-grid {
        		display: grid;
        		grid-template-columns: repeat(1, 1fr);
        		gap: 20px;
        	}

        	.detail-info {
        		width: 100%;
        		margin-top: 40px;
        	}

        	.form-row {
        		grid-template-columns: 1fr;
        	}

        	.contact-form {

        		display: block;
        		align-items: center;

        	}

        	.form-row {
        		grid-template-columns: 1fr;
        	}

        	.contact-grid {
        		display: block;
        		grid-template-columns: 280px 1fr;

        	}

        	.send_message {
        		margin-top: 60px;
        	}


        }