/**
 * Travel Core - Frontend Styles
 * Modern, Clean, High-Conversion Design
 */

:root {
	--trv-primary: #0B5B87;
	--trv-primary-deep: #0A3349;
	--trv-accent: #E51924;
	--trv-ink: #17313F;
	--trv-muted: #6D7F89;
	--trv-soft: #F6F8FA;
	--trv-line: #E4E9EC;
	--trv-radius: 16px;
	--trv-shadow: 0 10px 30px rgba(11, 91, 135, 0.08);
	--trv-shadow-hover: 0 16px 40px rgba(11, 91, 135, 0.15);
	--trv-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   1. SEARCH BOX ([trv_tour_search])
   ========================================================================== */
.trv-floating-search-section {
	margin-top: -60px;
	position: relative;
	z-index: 99;
}

.trv-search-box-wrap {
	background: #ffffff;
	border-radius: var(--trv-radius);
	box-shadow: var(--trv-shadow-hover);
	padding: 24px 30px;
	border: 1px solid var(--trv-line);
	transition: var(--trv-transition);
}

.trv-search-form {
	display: grid;
	grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 1.2fr;
	gap: 16px;
	align-items: flex-end;
}

.trv-search-field label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--trv-ink);
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.trv-field-icon {
	color: var(--trv-accent);
	display: inline-flex;
}

.trv-search-field .trv-select,
.trv-search-field .trv-input {
	width: 100%;
	height: 48px;
	border: 1.5px solid var(--trv-line);
	border-radius: 10px;
	padding: 0 14px;
	font-size: 14px;
	color: var(--trv-ink);
	background-color: var(--trv-soft);
	transition: var(--trv-transition);
	outline: none;
	box-shadow: none;
}

.trv-search-field .trv-select:focus,
.trv-search-field .trv-input:focus {
	border-color: var(--trv-primary);
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(11, 91, 135, 0.12);
}

.trv-btn-search {
	width: 100%;
	height: 48px;
	background: var(--trv-accent) !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 10px !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	cursor: pointer;
	transition: var(--trv-transition) !important;
	box-shadow: 0 4px 15px rgba(229, 25, 36, 0.35) !important;
}

.trv-btn-search:hover {
	background: #c40f19 !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(229, 25, 36, 0.45) !important;
}

/* ==========================================================================
   2. TOUR CARD & GRID
   ========================================================================== */
.trv-type-tabs {
	display: flex;
	gap: 12px;
	margin-bottom: 24px;
	flex-wrap: wrap;
	align-items: center;
}

.trv-type-tab-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: 99px;
	font-weight: 700;
	font-size: 14px;
	color: #0B5B87;
	background: #ffffff;
	border: 1.5px solid #dce4e8;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.trv-type-tab-btn:hover {
	color: #E51924;
	border-color: #E51924;
	background: #fff8f8;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(229, 25, 36, 0.12);
}

.trv-type-tab-btn.active {
	background: #0B5B87 !important;
	color: #ffffff !important;
	border-color: #0B5B87 !important;
	box-shadow: 0 4px 14px rgba(11, 91, 135, 0.3) !important;
}

.trv-type-tab-btn.active .trv-tab-text {
	color: #ffffff !important;
}

.trv-results-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
	margin-bottom: 25px;
	border-bottom: 1px solid var(--trv-line);
}

.trv-results-count {
	font-size: 17px;
	font-weight: 700;
	color: var(--trv-primary);
}

.trv-results-sort select {
	height: 40px;
	border-radius: 8px;
	border: 1px solid var(--trv-line);
	padding: 0 12px;
	font-size: 14px;
	color: var(--trv-ink);
}

.trv-card {
	background: #ffffff;
	border-radius: var(--trv-radius);
	border: 1px solid var(--trv-line);
	overflow: hidden;
	box-shadow: var(--trv-shadow);
	transition: var(--trv-transition);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.trv-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--trv-shadow-hover);
	border-color: rgba(11, 91, 135, 0.2);
}

.trv-card-image-box {
	position: relative;
	width: 100%;
	height: 220px;
	overflow: hidden;
}

.trv-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.trv-card:hover .trv-card-img {
	transform: scale(1.08);
}

.trv-card-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	gap: 6px;
	z-index: 2;
}

.trv-badge {
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.trv-badge-hot {
	background: #ff385c;
	color: #ffffff;
}

.trv-badge-discount {
	background: var(--trv-accent);
	color: #ffffff;
}

.trv-card-content {
	padding: 18px 20px 20px 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.trv-card-destination {
	font-size: 11px;
	font-weight: 800;
	color: var(--trv-accent);
	letter-spacing: 1px;
	margin-bottom: 6px;
}

.trv-card-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 14px 0;
	min-height: 44px;
}

.trv-card-title a {
	color: var(--trv-ink);
	text-decoration: none;
	transition: color 0.2s ease;
}

.trv-card-title a:hover {
	color: var(--trv-primary);
}

.trv-card-meta-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	background: var(--trv-soft);
	padding: 10px 12px;
	border-radius: 10px;
	margin-bottom: 16px;
	font-size: 12.5px;
	color: var(--trv-muted);
}

.trv-card-meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.trv-card-meta-item .trv-meta-icon {
	color: var(--trv-primary);
	display: inline-flex;
}

.trv-seats-left {
	color: #d9534f;
	font-weight: 600;
}

.trv-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px dashed var(--trv-line);
}

.trv-card-old-price {
	font-size: 12px;
	color: var(--trv-muted);
	text-decoration: line-through;
}

.trv-card-price {
	font-size: 19px;
	font-weight: 800;
	color: var(--trv-accent);
	line-height: 1.2;
}

.trv-btn-card {
	background: var(--trv-primary);
	color: #ffffff !important;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: var(--trv-transition);
}

.trv-btn-card:hover {
	background: var(--trv-primary-deep);
	transform: translateX(3px);
}

/* ==========================================================================
   3. TOUR META BAR & DETAIL SECTIONS
   ========================================================================== */
.trv-tour-meta-bar {
	background: #ffffff;
	border: 1px solid var(--trv-line);
	border-radius: 12px;
	padding: 16px 20px;
	box-shadow: var(--trv-shadow);
	margin-bottom: 25px;
}

.trv-meta-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px;
}

.trv-meta-box {
	display: flex;
	align-items: center;
	gap: 12px;
}

.trv-meta-box-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(11, 91, 135, 0.08);
	color: var(--trv-primary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.trv-meta-box-label {
	display: block;
	font-size: 12px;
	color: var(--trv-muted);
}

.trv-meta-box-value {
	display: block;
	font-size: 14px;
	color: var(--trv-ink);
}

.trv-section-block {
	background: #ffffff;
	border: 1px solid var(--trv-line);
	border-radius: var(--trv-radius);
	padding: 24px 28px;
	margin-bottom: 25px;
	box-shadow: var(--trv-shadow);
}

.trv-section-title {
	font-size: 20px;
	font-weight: 800;
	color: var(--trv-primary);
	margin-top: 0;
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 2px solid var(--trv-soft);
	padding-bottom: 12px;
}

.trv-title-icon {
	color: var(--trv-accent);
	display: inline-flex;
}

/* ==========================================================================
   4. SCHEDULES TABLE ([trv_tour_schedules])
   ========================================================================== */
.trv-table-responsive {
	overflow-x: auto;
}

.trv-schedules-frontend-table {
	width: 100%;
	border-collapse: collapse;
}

.trv-schedules-frontend-table th {
	background: var(--trv-soft);
	color: var(--trv-ink);
	font-size: 13px;
	font-weight: 700;
	padding: 12px 14px;
	text-align: left;
	border-bottom: 2px solid var(--trv-line);
}

.trv-schedules-frontend-table td {
	padding: 14px;
	border-bottom: 1px solid var(--trv-line);
	font-size: 14px;
	vertical-align: middle;
}

.trv-date-highlight {
	color: var(--trv-primary);
	font-size: 15px;
}

.trv-sch-note {
	font-size: 12px;
	color: var(--trv-muted);
	margin-top: 3px;
}

.trv-sch-price {
	font-size: 16px;
	font-weight: 800;
	color: var(--trv-accent);
}

.trv-seat-badge {
	font-size: 12px;
	font-weight: 600;
	padding: 4px 8px;
	border-radius: 6px;
}

.trv-seat-available {
	background: #e8f5e9;
	color: #2e7d32;
}

.trv-seat-warning {
	background: #fff3e0;
	color: #e65100;
}

.trv-seat-soldout {
	background: #ffebee;
	color: #c62828;
}

.trv-btn-select-date {
	background: var(--trv-accent);
	color: #ffffff !important;
	padding: 6px 14px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	transition: var(--trv-transition);
}

.trv-btn-select-date:hover {
	background: #d97416;
}

/* ==========================================================================
   5. ITINERARY ACCORDION ([trv_tour_itinerary])
   ========================================================================== */
.trv-itinerary-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.trv-itinerary-item {
	border: 1px solid var(--trv-line);
	border-radius: 12px;
	overflow: hidden;
	transition: var(--trv-transition);
}

.trv-itinerary-item.is-active {
	border-color: var(--trv-primary);
	box-shadow: 0 4px 15px rgba(11, 91, 135, 0.08);
}

.trv-itinerary-header {
	background: var(--trv-soft);
	padding: 14px 18px;
	display: flex;
	align-items: center;
	cursor: pointer;
	user-select: none;
}

.trv-itinerary-badge {
	background: var(--trv-primary);
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 6px;
	margin-right: 12px;
	flex-shrink: 0;
}

.trv-itinerary-item.is-active .trv-itinerary-badge {
	background: var(--trv-accent);
}

.trv-itinerary-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--trv-ink);
	flex-grow: 1;
}

.trv-itinerary-toggle {
	color: var(--trv-muted);
	transition: transform 0.3s ease;
}

.trv-itinerary-item.is-active .trv-itinerary-toggle {
	transform: rotate(180deg);
	color: var(--trv-primary);
}

.trv-itinerary-body {
	padding: 18px;
	background: #ffffff;
	border-top: 1px solid var(--trv-line);
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--trv-ink);
}

/* ==========================================================================
   6. BOOKING BOX & STICKY FORM ([trv_booking])
   ========================================================================== */
.trv-sticky-sidebar {
	position: sticky;
	top: 90px;
}

.trv-booking-box {
	background: #ffffff;
	border: 2px solid var(--trv-primary);
	border-radius: var(--trv-radius);
	box-shadow: var(--trv-shadow-hover);
	padding: 24px;
	overflow: hidden;
}

.trv-booking-header {
	border-bottom: 1px solid var(--trv-line);
	padding-bottom: 12px;
	margin-bottom: 18px;
}

.trv-booking-title {
	font-size: 18px;
	font-weight: 800;
	color: var(--trv-primary);
	margin: 0 0 4px 0;
}

.trv-booking-subtitle {
	font-size: 13px;
	color: var(--trv-muted);
	margin: 0;
}

.trv-form-group {
	margin-bottom: 14px;
}

.trv-form-group label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	margin-bottom: 6px;
	color: var(--trv-ink);
}

.trv-form-icon {
	color: var(--trv-accent);
	display: inline-flex;
}

.trv-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.trv-booking-box .trv-input {
	width: 100%;
	border: 1.5px solid var(--trv-line);
	border-radius: 8px;
	padding: 10px 12px;
	font-size: 14px;
	color: var(--trv-ink);
	background: var(--trv-soft);
	outline: none;
	transition: var(--trv-transition);
}

.trv-booking-box .trv-input:focus {
	border-color: var(--trv-primary);
	background: #ffffff;
}

.trv-guest-picker {
	background: var(--trv-soft);
	border-radius: 10px;
	padding: 12px;
	margin-bottom: 16px;
}

.trv-guest-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px dashed var(--trv-line);
}

.trv-guest-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.trv-guest-info strong {
	display: block;
	font-size: 13px;
	color: var(--trv-ink);
}

.trv-guest-info span {
	font-size: 11.5px;
	color: var(--trv-muted);
}

.trv-counter {
	display: flex;
	align-items: center;
	background: #ffffff;
	border: 1px solid var(--trv-line);
	border-radius: 6px;
	overflow: hidden;
}

.trv-counter-btn {
	width: 32px;
	height: 32px;
	background: #ffffff;
	border: none;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	color: var(--trv-primary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.trv-counter-btn:hover {
	background: var(--trv-soft);
}

.trv-counter-input {
	width: 36px;
	border: none;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--trv-ink);
	padding: 0;
}

.trv-booking-summary {
	background: #fff8f2;
	border: 1px solid #ffd8be;
	border-radius: 10px;
	padding: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.trv-summary-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--trv-ink);
}

.trv-summary-total {
	font-size: 20px;
	font-weight: 800;
	color: var(--trv-accent);
}

.trv-btn-submit-booking {
	width: 100%;
	height: 48px;
	background: var(--trv-accent) !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 10px !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(229, 25, 36, 0.4) !important;
	transition: var(--trv-transition) !important;
}

.trv-btn-submit-booking:hover {
	background: #c40f19 !important;
	transform: translateY(-2px);
}

.trv-booking-guarantee {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11.5px;
	color: var(--trv-muted);
	margin-top: 12px;
	text-align: center;
	justify-content: center;
}

.trv-form-alert {
	padding: 12px;
	border-radius: 8px;
	font-size: 13.5px;
	margin-bottom: 14px;
	line-height: 1.5;
}

.trv-form-alert.success {
	background: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #c8e6c9;
}

.trv-form-alert.error {
	background: #ffebee;
	color: #c62828;
	border: 1px solid #ffcdd2;
}

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
	.trv-search-form {
		grid-template-columns: 1fr 1fr;
	}
	.trv-field-submit {
		grid-column: span 2;
	}
	.trv-floating-search-section {
		margin-top: -30px;
	}
}

@media (max-width: 767px) {
	.trv-search-box-wrap {
		padding: 18px;
	}
	.trv-search-form {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.trv-field-submit {
		grid-column: span 1;
	}
	.trv-form-row {
		grid-template-columns: 1fr;
	}
	.trv-floating-search-section {
		margin-top: 0;
	}
}

/* ==========================================================================
 * MASTER ROYAL HERO VIDEO SECTION (YOUTUBE EMBED + SOUND TOGGLE)
 * ========================================================================== */

.bk-hero-video-section,
.trv-hero-video-section {
	position: relative;
	width: 100%;
	min-height: var(--bk-hero-height, var(--trv-hero-height, 740px));
	height: var(--bk-hero-height, var(--trv-hero-height, 740px));
	max-height: 100vh;
	overflow: hidden;
	background-color: #05121c;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* YouTube Video Background Wrap */
.bk-hero-video-container {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}

.bk-hero-video-iframe-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.25);
	width: 100vw;
	height: 56.25vw; /* Tỉ lệ chuẩn 16:9 */
	min-height: 100%;
	min-width: 177.77vh;
	pointer-events: none;
	opacity: 1;
	transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bk-hero-video-section.is-video-ready .bk-hero-video-iframe-wrap,
.trv-hero-video-section.is-video-ready .bk-hero-video-iframe-wrap {
	opacity: 1;
}

.bk-hero-yt-player {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	pointer-events: none;
}

/* Lớp phủ Radial Gradient */
.bk-hero-video-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
	transition: background 0.4s ease;
}

/* Khu vực nội dung */
.bk-hero-video-content {
	position: relative;
	z-index: 5;
	width: 100%;
	padding-top: 50px;
	padding-bottom: 80px;
}

.bk-hero-video-inner {
	max-width: 880px;
	text-align: left;
	animation: trvHeroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes trvHeroFadeUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

.bk-hero-video-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(8, 28, 44, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 7px 20px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: #FFFFFF;
	letter-spacing: 2px;
	margin-bottom: 18px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.bk-hero-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #FFAE58;
	box-shadow: 0 0 10px #FFAE58;
	animation: trvHeroDotGlow 2s infinite ease-in-out;
}

@keyframes trvHeroDotGlow {
	0%, 100% { transform: scale(1); opacity: 0.8; }
	50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 16px #FFAE58; }
}

.bk-hero-video-kicker {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 3.5px;
	text-transform: uppercase;
	color: #FFAE58;
	margin-bottom: 12px;
}

.bk-hero-video-title {
	font-size: clamp(34px, 4.8vw, 56px) !important;
	font-weight: 800 !important;
	line-height: 1.18 !important;
	color: #FFFFFF !important;
	margin-bottom: 22px !important;
	letter-spacing: -0.01em;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85);
}

.bk-hero-video-desc {
	font-size: clamp(15px, 1.35vw, 17px);
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.92);
	max-width: 740px;
	margin-bottom: 34px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Nút CTA */
.bk-hero-video-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.bk-hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 34px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
}

.bk-hero-btn-primary {
	background: linear-gradient(135deg, #E51924 0%, #B80C15 100%);
	color: #FFFFFF !important;
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 10px 30px rgba(229, 25, 36, 0.45);
}

.bk-hero-btn-primary:hover {
	background: linear-gradient(135deg, #FF3340 0%, #E51924 100%);
	color: #FFFFFF !important;
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(229, 25, 36, 0.65);
}

.bk-hero-btn-secondary {
	background: rgba(255, 255, 255, 0.12);
	color: #FFFFFF !important;
	border: 1.5px solid rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.bk-hero-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: #FF4D58;
	color: #FF4D58 !important;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Trust Pills Bar */
.bk-hero-video-pills {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 24px;
}

.bk-hero-pill {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bk-pill-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(229, 25, 36, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #FF4D58;
	flex-shrink: 0;
	backdrop-filter: blur(8px);
}

.bk-pill-info {
	display: flex;
	flex-direction: column;
}

.bk-pill-info strong {
	font-size: 13.5px;
	font-weight: 800;
	color: #FFFFFF;
	letter-spacing: 0.5px;
}

.bk-pill-info span {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.75);
}

/* Media Controls */
.bk-hero-media-controls {
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 12px;
}

.bk-control-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(8, 28, 44, 0.85);
	border: 1.5px solid rgba(229, 25, 36, 0.5);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	padding: 10px 22px;
	border-radius: 999px;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.bk-control-pill:hover {
	background: rgba(14, 42, 66, 0.95);
	border-color: #FF4D58;
	color: #FF4D58;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(229, 25, 36, 0.35);
}

.bk-control-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(8, 28, 44, 0.85);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(14px);
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.bk-control-btn:hover {
	border-color: #FF4D58;
	color: #FF4D58;
	transform: scale(1.08);
}

/* Equalizer */
.bk-equalizer {
	display: flex;
	align-items: flex-end;
	gap: 3px;
	height: 14px;
}

.bk-bar {
	width: 3px;
	background: #999;
	border-radius: 2px;
	height: 4px;
	transition: all 0.2s ease;
}

.bk-sound-btn.is-unmuted .bk-bar {
	background: #E51924;
	animation: bkEqualize 1.2s infinite ease-in-out;
}

.bk-sound-btn.is-unmuted .bk-bar-1 { animation-delay: 0.1s; height: 12px; }
.bk-sound-btn.is-unmuted .bk-bar-2 { animation-delay: 0.3s; height: 8px; }
.bk-sound-btn.is-unmuted .bk-bar-3 { animation-delay: 0.5s; height: 14px; }
.bk-sound-btn.is-unmuted .bk-bar-4 { animation-delay: 0.2s; height: 6px; }

@keyframes bkEqualize {
	0%, 100% { transform: scaleY(0.4); }
	50% { transform: scaleY(1); }
}

@media (max-width: 768px) {
	.bk-hero-video-section,
	.trv-hero-video-section {
		min-height: 600px;
		height: auto;
		padding: 70px 0 90px;
	}
	.bk-hero-video-content {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.bk-hero-media-controls {
		right: 20px;
		bottom: 20px;
	}
	.bk-hero-video-pills {
		gap: 16px;
	}
}

