﻿:root {
	/*--dark-bg: #0f0f0f;
            --accent-blue: #007bff;
            --text-white: #ffffff;*/
	--dark-bg: #121212;
	--accent-blue: #007bff;
	--deep-gray: #1e1e1e;
	--text-white: #ffffff;
	--text-gray: #b0b0b0;

	--pure-black: #000000; /* เปลี่ยนเป็นดำสนิท */
	--gold-color: #c9a063;

}

body {
	font-family: 'Prompt', 'Montserrat', sans-serif;
	/*background-color: var(--dark-bg);
	color: #fff;*/
	background-color: var(--pure-black);
	color: var(--text-white);
	
}

/* Navbar Customization */
.navbar {
	background-color: rgba(15, 15, 15, 0.95);
	border-bottom: 2px solid var(--accent-blue);
}

.navbar-nav .nav-link {
	color: #ffffff !important;
	transition: 0.3s;
	font-weight: 400;
}

	.navbar-nav .nav-link:hover,
	.navbar-nav .nav-link.active {
		color: var(--accent-blue) !important;
		font-weight: 600;
	}

/* Language Flag Icons */
.flag-icon {
	width: 28px;
	height: 20px;
	cursor: pointer;
	transition: 0.3s;
	opacity: 0.6;
	border-radius: 2px;
	object-fit: cover;
}

	.flag-icon.active {
		opacity: 1;
		border: 1px solid var(--accent-blue);
		transform: scale(1.1);
	}

/* Banner Hero Section - ปรับให้เห็นคนและรถครบถ้วน */
/*.hero-section {
	position: relative;
	background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url('Banner_01.jpg');
	background-size: cover;
	background-position: center top;*/ /* เน้นส่วนบนเพื่อให้เห็นหัวคนและรถ */
	/*height: 70vh;*/ /* ปรับความสูงให้พอเหมาะ */
	/*display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}*/

/* สำหรับ Mobile: บังคับให้เห็นรูปเหมือน Desktop มากที่สุด */
/*@media (max-width: 768px) {
	.hero-section {
		background-size: 100% auto;*/ /* บังคับความกว้างภาพให้เท่าจอพอดี */
		/*background-repeat: no-repeat;
		background-color: #000;
		height: 40vh;*/ /* ลดความสูงลงเพื่อให้สัดส่วนภาพไม่เพี้ยน */
		/*background-position: center center;
	}

	.hero-title {
		font-size: 1.5rem !important;
	}

	.hero-p {
		font-size: 0.9rem !important;
	}
}*/

.btn-booking {
	background-color: var(--accent-blue);
	color: white;
	padding: 10px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: 0.4s;
}

	.btn-booking:hover {
		background-color: white;
		color: var(--accent-blue);
	}

.navbar-toggler {
	border-color: rgba(255,255,255,0.2);
}

.navbar-toggler-icon {
	filter: invert(1);
}
/* Services */
/*.service-card {
	background: var(--deep-gray);
	border: 1px solid #333;
	padding: 40px 25px;
	border-radius: 20px;
	transition: 0.3s;
	height: 100%;
}

	.service-card:hover {
		border-color: var(--accent-blue);
		box-shadow: 0 10px 30px rgba(0,123,255,0.2);
	}

.service-icon {
	font-size: 2.5rem;
	color: var(--accent-blue);
	margin-bottom: 20px;
}*/

.section-title {
	font-weight: 600;
	margin-bottom: 50px;
	position: relative;
	display: inline-block;
}

	.section-title::after {
		content: '';
		position: absolute;
		width: 50%;
		height: 3px;
		background: var(--accent-blue);
		bottom: -10px;
		left: 25%;
	}

footer {
	background-color: #0a0a0a;
	padding: 60px 0 30px;
	border-top: 1px solid #222;
}

.logo-nav {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 5px;
}

/* --- ส่วนที่เพิ่ม/แก้ไขใหม่สำหรับเซกชัน Hero --- */
/* Hero Section Container */
.hero-section {
	background-color: #000;
	position: relative;
	/* เส้นขอบบนและล่างสีทอง */
	border-top: 1px solid #c9a063;
	border-bottom: 1px solid #c9a063;
	overflow: hidden;
}

.hero-content-wrapper {
	padding-left: 50px;
}

/*.hero-icon {*/
	/*width: 50px;*/
	/*width: 100%;
	height: auto;*/
	/*filter: brightness(0) invert(1);  ถ้าไอคอนเดิมเป็นสีดำ/น้ำเงิน ให้เปลี่ยนเป็นสีขาว/สว่าง */
/*}*/

/* Image Styling */
.hero-image-col {
	position: relative;
	min-height: 400px;
}

.hero-banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Gradient Mask - ลบขอบซ้ายให้จางหาย */
	-webkit-mask-image: linear-gradient(to right, transparent, black 30%);
	mask-image: linear-gradient(to right, transparent, black 30%);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	/*.row {
		flex-direction: column-reverse;*/ /* รูปภาพอยู่บนสุดบนมือถือ */
	/*}*/

	.hero-content-wrapper {
		text-align: center;
		padding: 40px 20px !important;
	}

	.d-flex.gap-4 {
		justify-content: center; /* จัดไอคอนให้อยู่ตรงกลางมือถือ */
	}

	.hero-banner-img {
		-webkit-mask-image: none; /* ยกเลิก Mask บนมือถือ */
		mask-image: none;
	}
}
/* --- ส่วนที่เพิ่ม/แก้ไขใหม่สำหรับเซกชัน Hero Section --- */
/* Hero Section Layout */
.text-gold {
	color: #c9a063;
}

.hero-title {
	font-size: 2.8rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.4rem;
	margin-bottom: 20px;
}

.company-name {
	font-size: 1.5rem;
}

.hero-description {
	font-size: 1rem;
	line-height: 1.6;
	opacity: 0.9;
}

.gold-divider {
	width: 60%; /* ยาวพอประมาณใน 5 column */
	height: 2px;
	background-color: #c9a063;
}

/* Icon Section */
.hero-icon {
	/*width: 40px;*/
	width: 70%;
	height: auto;
}

.icon-label {
	font-size: 0.75rem;
	color: #fff;
	font-weight: 600;
	margin-bottom: 0;
}

.icon-item {
	flex: 1;
	border-right: 1px solid #c9a063;
}

	.icon-item:last-child {
		border-right: none;
	}
/* เอาเส้นสุดท้ายออก */

/* Buttons */
.btn-gold-outline, .btn-gold-solid {
	padding: 12px 25px;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	transition: 0.3s;
}

.btn-gold-outline {
	border: 2px solid #c9a063;
	color: #c9a063;
}

	.btn-gold-outline:hover {
		background: #c9a063;
		color: #000;
	}

.btn-gold-solid {
	background: #c9a063;
	color: #000;
	border: 2px solid #c9a063;
}

	.btn-gold-solid:hover {
		background: transparent;
		color: #c9a063;
	}


@media (max-width: 991px) {
	/*.row {
		flex-direction: column-reverse;
	}
*/
	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.icon-label {
		font-size: 0.6rem;
	}
}
/* ---- end  Hero Section Container ------- */

/* --- ส่วนที่เพิ่ม/แก้ไขใหม่สำหรับเซกชัน Services --- */

/* ตั้งค่าคอนเทนเนอร์หลักของ Services */
#services {
	background-color: var(--pure-black); /* พื้นหลังหลักเป็นดำ */
	padding: 0;
	overflow: hidden;
}

/* ปรับแต่ง Mask ของรูปภาพใหม่ */
.driver-image-right {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* ปรับ Mask ให้ fade หายไปทางด้านขวา (จากซ้ายไปขวา) */
	-webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
	mask-image: linear-gradient(to right, black 70%, transparent 100%);
}
/* --------------------------------------------------------------------------
        Desktop Styles (min-width: 992px)
        -------------------------------------------------------------------------- */
@media (min-width: 992px) {
	.service-content-col {
		background-color: var(--pure-black); /* คอลัมน์เนื้อหาเป็นสีดำ */
		padding: 60px 40px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-height: 80vh; /* ปรับความสูงให้สมดุลกับภาพ */
	}

	.service-image-col {
		padding: 0;
		position: relative;
		background-color: var(--pure-black);
	}

	.driver-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		/* การทำ Gradient Mask ให้กลืนกับพื้นหลังสีดำด้านซ้าย */
		/* ปรับช่วง 0% ถึง 30% ให้เริ่มเห็นภาพชัดขึ้นเรื่อยๆ */
		-webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 30%);
		mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 30%);
	}

	/* เส้นคั่นแนวตั้งระหว่าง Column เนื้อหา (แบบจางๆ ไม่ให้ขัดสายตา) */
	.border-content {
		border-right: 1px solid rgba(201, 160, 99, 0.1);
	}
}

/* --------------------------------------------------------------------------
        Mobile Styles (max-width: 991px)
        -------------------------------------------------------------------------- */
@media (max-width: 991px) {
	/*.services-row {
		display: flex;
		flex-direction: column-reverse;*/ /* ภาพอยู่บน เนื้อหาอยู่ล่าง */
	/*}*/

	.driver-image {
		width: 100%;
		height: auto;
		-webkit-mask-image: none;
		mask-image: none;
	}

	.service-content-col {
		background-color: var(--pure-black);
		padding: 50px 20px;
		border-bottom: 1px solid rgba(201, 160, 99, 0.1);
	}
	.services-row , .hero-row {
		display: flex;
		flex-direction: column; /* เรียงจากบนลงล่างปกติ */
	}
	.hero-row {
		flex-direction: column-reverse;  /* รูปภาพอยู่บนสุดบนมือถือ */
	}

	.driver-image-right {
		-webkit-mask-image: none; /* เอา Mask ออกบนมือถือเพื่อให้เห็นรูปเต็ม */
		mask-image: none;
	}
}

/* รายละเอียดภายใน */
.service-item {
	text-align: center;
	margin-bottom: 40px;
}

.service-icon-gold {
	/*max-width: 65px;*/
	max-width: 100%;
	margin-bottom: 20px;
}

.service-title-gold {
	color: var(--gold-color);
	font-size: 1.3rem;
	font-weight: 600;
	/*margin-bottom: 15px;*/
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
	font-family: 'Montserrat', sans-serif;
}

.service-divider {
	width: 40px;
	height: 2px;
	background: var(--gold-color);
	margin: 0 auto 15px;
}

.service-description-gold {
	color: var(--text-gray);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 25px;
	font-weight: 300;
}

.btn-learn-more-gold {
	background-color: transparent;
	color: var(--gold-color);
	border: 1px solid var(--gold-color);
	padding: 8px 25px;
	border-radius: 0;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 1px;
	transition: 0.3s;
	text-decoration: none;
}

	.btn-learn-more-gold:hover {
		background: var(--gold-color);
		color: #000;
	}
/* --- end Seciton Service ส่วนที่เพิ่ม/แก้ไขใหม่สำหรับเซกชัน Services --- */

/* Mobile Adjustments */
@media (max-width: 767px) {
	.btn-gold-outline {
		padding: 10px 15px;
	}

	.service-icon-gold {
		max-width: 60%;
	}
}