/* ===== HEADER ===== */
.acc-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255,255,255,.97);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0,0,0,.06);
	transition: all .3s ease;
}

.acc-header.scrolled {
	box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.acc-header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

/* Left: Logo + Brand */
.acc-header-left {
	flex-shrink: 0;
	align-self: center;
}

.acc-header-logo a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.acc-header-logo-img {
	height: 32px;
	width: auto;
	display: block;
	flex-shrink: 0;
	align-self: center;
}

/* Center: Menu + Slider Nav */
.acc-header-center {
	display: flex;
	align-items: center;
	gap: 12px;
	align-self: center;
}

/* Reset slider leak in header */
.acc-header .acc-slide,
.acc-header .acc-slider-track,
.acc-header .acc-slider-controls,
.acc-header .acc-slider-dots {
	display: none;
}

.acc-header-nav {
	display: flex;
	align-items: center;
}

.acc-header-menu {
	display: flex;
	align-items: center;
	gap: 2px;
}

.acc-header-menu li a {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	padding: 6px 14px;
	border-radius: 6px;
	transition: all .2s ease;
	white-space: nowrap;
	line-height: 1.4;
}

.acc-header-menu li a:hover {
	background: #f0f9ff;
	color: #00A6DC;
}
ul.acc-header-menu {margin: 0px;}


/* Right: CTA Button */
.acc-header-right {
	flex-shrink: 0;
	align-self: center;
}

.acc-header-right .acc-btn {
	padding: 10px 24px;
	font-size: 12px;
}

/* Mobile Toggle */
.acc-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 8px;
	margin-left: auto;
}

.acc-mobile-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #1a1a2e;
	border-radius: 2px;
	transition: all .3s ease;
}

.acc-mobile-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px,5px);
}

.acc-mobile-toggle.active span:nth-child(2) {
	opacity: 0;
}

.acc-mobile-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px,-5px);
}

.acc-header-spacer {
	height: 72px;
}

/* ===== HERO ===== */
.acc-hero {
	position: relative;
	min-height: 720px;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 0;
	background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1f3c 100%);
}

.acc-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: .3;
}

.acc-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(10,22,40,.85) 0%, rgba(26,42,74,.5) 50%, rgba(10,22,40,.7) 100%);
}

.acc-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 48px;
	width: 100%;
}

.acc-hero-badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #00A6DC;
	background: rgba(0,166,220,.1);
	padding: 6px 16px;
	border-radius: 50px;
	margin-bottom: 20px;
}

.acc-hero-title {
	font-size: 52px;
	font-weight: 900;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 20px;
}

.acc-hero-desc {
	font-size: 16px;
	font-weight: 400;
	color: rgba(255,255,255,.7);
	max-width: 480px;
	line-height: 1.7;
	margin-bottom: 32px;
}

.acc-hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.acc-hero-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.acc-hero-car-img {
	width: 100%;
	max-width: 600px;
	filter: drop-shadow(0 20px 60px rgba(0,0,0,.3));
	animation: acc-float 4s ease-in-out infinite;
}

@keyframes acc-float {
	0%,100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

/* ===== WHY ===== */
.acc-why {
	background: #f8fafc;
}

.acc-why-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.acc-why-card {
	background: #fff;
	border-radius: 20px;
	padding: 32px 24px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,.04);
	transition: all .3s ease;
	border: 1px solid rgba(0,0,0,.04);
}

.acc-why-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,.08);
	border-color: rgba(0,166,220,.15);
}

.acc-why-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
}

.acc-why-icon svg {
	width: 100%;
	height: 100%;
}

.acc-why-card h3 {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 8px;
}

.acc-why-card p {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
}

/* ===== EXTERIOR ===== */
.acc-exterior {
	background: #fff;
}

.acc-exterior-layout {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}

.acc-exterior-main {
	width: 100%;
	overflow: hidden;
	border-radius: 20px;
	position: relative;
}

.acc-exterior-main .acc-slide img {
	width: 100%;
	height: 480px;
	object-fit: cover;
}

.acc-exterior-main .acc-slider-controls {
	justify-content: center;
}

.acc-exterior-thumbs {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.acc-exterior-thumb {
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all .3s ease;
	width: 100px;
}

.acc-exterior-thumb.active {
	border-color: #00A6DC;
}

.acc-exterior-thumb img {
	width: 100%;
	height: 70px;
	object-fit: cover;
	display: block;
}

/* ===== INTERIOR ===== */
.acc-interior {
	position: relative;
	padding: 0;
}

.acc-interior-bg {
	position: absolute;
	inset: 0;
	background: #0a1628;
}

.acc-interior-inner {
	position: relative;
	padding: 72px 0;
}

.acc-interior-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.acc-interior-text .acc-section-sub {
	color: #00A6DC;
}

.acc-interior-text .acc-btn {
	margin-top: 24px;
}

.acc-interior-slider-wrap {
	overflow: hidden;
	border-radius: 20px;
}

.acc-interior-slider .acc-slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.acc-interior-slider .acc-slider-controls {
	margin-top: 16px;
}

.acc-interior-slider .acc-slider-prev,
.acc-interior-slider .acc-slider-next {
	background: transparent;
	border: none;
	color: #00a6dc;
}

.acc-interior-slider .acc-slider-prev:hover,
.acc-interior-slider .acc-slider-next:hover {
	background: transparent;
	opacity: .7;
}

.acc-interior-slider .acc-slider-dot {
	background: rgba(255,255,255,.3);
}

.acc-interior-slider .acc-slider-dot.active {
	background: #00A6DC;
}

/* ===== SMARTSENSE ===== */
.acc-smartsense {
	background: #f8fafc;
}

.acc-smartsense-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.acc-smartsense-col {
	background: #fff;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0,0,0,.04);
	border: 1px solid rgba(0,0,0,.04);
}

.acc-smartsense-heading {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #00A6DC;
	margin-bottom: 12px;
}

.acc-smartsense-desc {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 20px;
}

.acc-smartsense-list li {
	font-size: 14px;
	color: #333;
	padding: 8px 0;
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid #f0f0f0;
}

.acc-smartsense-list li:last-child {
	border-bottom: none;
}

.acc-check {
	display: inline-flex;
	width: 20px;
	height: 20px;
	background: #00A6DC;
	border-radius: 50%;
	position: relative;
	flex-shrink: 0;
}

.acc-check::after {
	content: '';
	position: absolute;
	top: 5px;
	left: 6px;
	width: 8px;
	height: 5px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}

.acc-smartsense-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 20px;
}

.acc-smartsense-images img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 12px;
}

/* ===== PRICING ===== */
.acc-pricing {
	background: #fff;
}

.acc-pricing-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.acc-pricing-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0,0,0,.06);
	border: 1px solid #f0f0f0;
	transition: all .3s ease;
}

.acc-pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 48px rgba(0,0,0,.1);
}

.acc-pricing-img img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.acc-pricing-body {
	padding: 24px;
}

.acc-pricing-name {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 8px;
}

.acc-pricing-price {
	font-size: 14px;
	color: #00A6DC;
	font-weight: 600;
	margin-bottom: 16px;
}

.acc-pricing-features {
	margin-bottom: 20px;
}

.acc-pricing-features li {
	font-size: 13px;
	color: #555;
	padding: 6px 0;
	border-bottom: 1px solid #f5f5f5;
	display: flex;
	align-items: center;
	gap: 8px;
}

.acc-pricing-features li::before {
	content: '';
	width: 6px;
	height: 6px;
	background: #00A6DC;
	border-radius: 50%;
	flex-shrink: 0;
}

.acc-pricing-features li:last-child {
	border-bottom: none;
}

/* ===== PROMO ===== */
.acc-promo {
	position: relative;
	padding: 0;
	overflow: hidden;
}

.acc-promo-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 100%);
}

.acc-promo-inner {
	position: relative;
	padding: 72px 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.acc-promo-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	color: #ffd700;
	margin-bottom: 12px;
}

.acc-promo-title {
	font-size: 56px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
	margin-bottom: 8px;
}

.acc-promo-highlight {
	font-size: 32px;
	font-weight: 800;
	color: #ffd700;
	margin-bottom: 16px;
}

.acc-promo-desc {
	font-size: 15px;
	color: rgba(255,255,255,.7);
	margin-bottom: 24px;
}

.acc-promo-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.acc-promo-image img {
	max-width: 100%;
	max-height: 300px;
	object-fit: contain;
}

/* ===== DELIVERY ===== */
.acc-delivery {
	background: #f8fafc;
}

.acc-delivery-slider {
	overflow: hidden;
}

.acc-delivery-slider .acc-slide {
	flex: 0 0 calc(100% / 3);
	padding: 0 10px;
}

.acc-delivery-card {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.acc-delivery-card img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: transform .4s ease;
}

.acc-delivery-card:hover img {
	transform: scale(1.05);
}

/* ===== DEALER ===== */
.acc-dealer {
	background: #fff;
}

.acc-dealer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.acc-dealer-card {
	background: #f8fafc;
	border-radius: 20px;
	padding: 40px;
	border: 1px solid #f0f0f0;
}

.acc-dealer-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 4px;
}

.acc-dealer-badge {
	font-size: 13px;
	color: #00A6DC;
	font-weight: 600;
	margin-bottom: 20px;
}

.acc-dealer-details li {
	display: flex;
	gap: 8px;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	font-size: 14px;
	color: #444;
}

.acc-dealer-details li:last-child {
	border-bottom: none;
}

.acc-dealer-details strong {
	font-weight: 600;
	color: #1a1a2e;
	min-width: 80px;
	flex-shrink: 0;
}

.acc-dealer-details a {
	color: #00A6DC;
	font-weight: 500;
}

.acc-dealer-details a:hover {
	text-decoration: underline;
}

.acc-dealer-card .acc-btn {
	margin-top: 20px;
}

.acc-dealer-map {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.acc-dealer-map img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

/* ===== FINAL CTA ===== */
.acc-final-cta {
	position: relative;
	padding: 0;
	overflow: hidden;
}

.acc-final-cta-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.acc-final-cta-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(10,22,40,.88) 0%, rgba(10,22,40,.7) 100%);
}

.acc-final-cta-inner {
	position: relative;
	padding: 88px 0;
	text-align: center;
}

.acc-final-cta-title {
	font-size: 42px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
}

.acc-final-cta-desc {
	font-size: 17px;
	color: rgba(255,255,255,.7);
	max-width: 520px;
	margin: 0 auto 32px;
}

.acc-final-cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.acc-footer {
	background: #0a0a1a;
	color: rgba(255,255,255,.7);
	padding: 64px 0 0;
}

.acc-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,.08);
}

.acc-footer-col h4 {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
}

.acc-footer-col ul {
	margin: 0;
	padding: 0;
}

.acc-footer-col ul li {
	font-size: 14px;
	margin-bottom: 10px;
	line-height: 1.6;
}

.acc-footer-col ul li a {
	color: rgba(255,255,255,.6);
	transition: color .2s ease;
}

.acc-footer-col ul li a:hover {
	color: #00A6DC;
}

.acc-footer-bottom {
	padding: 24px 0;
	text-align: center;
	font-size: 14px;
	color: rgba(255,255,255,.4);
}

/* Footer social icons */
.acc-footer-social li a {
	display: flex;
	align-items: center;
	gap: 10px;
}

.acc-footer-social li a svg {
	flex-shrink: 0;
	opacity: .8;
	transition: opacity .2s ease;
}

.acc-footer-social li a:hover svg {
	opacity: 1;
}

/* ===== POPUP ===== */
.acc-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0,0,0,.6);
	backdrop-filter: blur(4px);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	overflow-y: auto;
}

.acc-popup-overlay.active {
	display: flex;
}

.acc-popup-box {
	background: #fff;
	border-radius: 24px;
	width: 100%;
	max-width: 500px;
	position: relative;
	padding: 48px 40px 40px;
	box-shadow: 0 20px 60px rgba(0,0,0,.2);
	animation: acc-popup-in .3s ease;
}

@keyframes acc-popup-in {
	from {
		opacity: 0;
		transform: translateY(20px) scale(.97);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.acc-popup-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: #f0f0f0;
	color: #333;
	font-size: 22px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s ease;
	line-height: 1;
}

.acc-popup-close:hover {
	background: #e0e0e0;
	transform: rotate(90deg);
}

.acc-popup-dealer {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	color: #00A6DC;
	margin-bottom: 8px;
}

.acc-popup-title {
	font-size: 24px;
	font-weight: 800;
	color: #1a1a2e;
	margin-bottom: 8px;
	line-height: 1.3;
}

.acc-popup-desc {
	font-size: 14px;
	color: #666;
	margin-bottom: 24px;
}

.acc-form-group {
	margin-bottom: 16px;
}

.acc-form-group input,
.acc-form-group select {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #333;
	background: #fafafa;
	transition: all .2s ease;
	outline: none;
}

.acc-form-group input:focus,
.acc-form-group select:focus {
	border-color: #00A6DC;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(0,166,220,.08);
}

.acc-form-group input::placeholder {
	color: #999;
}

.acc-form-message {
	margin-top: 16px;
	padding: 14px 18px;
	border-radius: 12px;
	font-size: 14px;
	display: none;
}

.acc-form-message.success {
	display: block;
	background: #e6f7e6;
	color: #2d7d2d;
	border: 1px solid #b8e6b8;
}

.acc-form-message.error {
	display: block;
	background: #ffe6e6;
	color: #c0392b;
	border: 1px solid #f5c6cb;
}

/* ===== VIDEO ===== */
.acc-video {
	background: #0a1628;
}

.acc-video .acc-section-sub {
	color: #00A6DC;
}

.acc-video .acc-section-title {
	color: #fff;
}

.acc-video-wrap {
	max-width: 900px;
	margin: 0 auto;
}

.acc-video-thumb {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
}

.acc-video-thumb img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.acc-video-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,.3);
	transition: background .3s ease;
}

.acc-video-thumb:hover .acc-video-play {
	background: rgba(0,0,0,.4);
}

.acc-video-play svg {
	width: 64px;
	height: 64px;
	transition: transform .3s ease;
}

.acc-video-thumb:hover .acc-video-play svg {
	transform: scale(1.1);
}

/* ===== FLOATING CONTACT ===== */
.acc-contact-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 998;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.acc-contact-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	box-shadow: 0 4px 18px rgba(0,0,0,.18);
	transition: all .3s ease;
	white-space: nowrap;
}

.acc-contact-phone {
	background: #00A6DC;
}

.acc-contact-zalo {
	background: #0180c7;
}

.acc-contact-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(0,0,0,.25);
}

.acc-contact-btn svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.acc-contact-label {
	display: inline;
}
