
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

* {
	font-family: "Pretendard", -apple-system, sans-serif !important;
}

.header-logo img{
	height:auto !important;

}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
/* 헤더 스타일 */
.header-wrapper {
	background: white;
	border-bottom: 1px solid #e0e0e0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.header-top {
	padding: 8px 0;
	border-bottom: 1px solid #e0e0e0;
}
.header-top-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
}
.header-top-left {
	display: flex;
	gap: 15px;
	align-items: center;
}
.header-top-left a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s;
}
.header-top-left a:hover {
	color: #3182F7;
}
.header-top-right {
	display: flex;
	gap: 15px;
	align-items: center;
}
.header-top-right a {
	color: #84888B;
	text-decoration: none;
	font-size: 12px;
	transition: color 0.3s;
}
.header-top-right a:hover {
	color: #3182F7;
}
.header-main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}
.header-logo {
	display: flex;
	align-items: center;
}
.header-logo img {
	height: 45px;
	width: auto;
}
.header-logo h1 {
	font-size: 32px;
	font-weight: bold;
	color: #1a237e;
	margin: 0;
	cursor: pointer;
}
.header-nav {
	display: flex;
	gap: 40px;
	align-items: center;
}
.nav-item {
	position: relative;
}
.header-nav a {
	color: #333;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 0;
	position: relative;
	transition: color 0.3s;
	display: flex;
	align-items: center;
}
.header-nav a:hover {
	color: #3182F7;
}
.header-nav > .nav-item > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: #3182F7;
	transition: width 0.3s;
}
.header-nav > .nav-item > a:hover::after,
.header-nav > .nav-item > a.active::after {
	width: 100%;
}

/* 서브메뉴 */
.submenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	min-width: 180px;
	padding: 8px 0;
	margin-top: 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	z-index: 1000;
}
.submenu::before {
	content: '';
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
}
.nav-item.has-submenu:hover .submenu {
	opacity: 1;
	visibility: visible;
	margin-top: 10px;
}
.submenu a {
	display: block;
	padding: 10px 20px;
	color: #333;
	font-size: 14px;
	font-weight: 400;
	white-space: nowrap;
	transition: all 0.2s;
}
.submenu a::after {
	display: none;
}
.submenu a:hover {
	background: #f8f9fa;
	color: #3182F7;
	padding-left: 25px;
}
.header-contact {
	display: flex;
	align-items: center;
	gap: 15px;
}
.header-phone {
	font-size: 24px;
	font-weight: bold;
	color: #3182F7;
	text-decoration: none;
}
.header-chat-btn {
	background: #3182F7;
	color: white;
	padding: 10px 20px;
	border-radius: 6px;
	border: none;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	text-decoration: none;
	display: inline-block;
}
.header-chat-btn:hover {
	background: #1565c0;
}

/* 헤더 검색 */
.header-search-form {
	display: flex;
	align-items: center;
	position: relative;
}
.header-search-input {
	width: 270px;
	padding: 10px 45px 10px 15px;
	font-size: 14px;
	outline: none;
	transition: all 0.3s;
	border-radius: 8px;
  	border: solid 1px #ccc;
}
.header-search-input:focus, .header-search-input:hover {
	border-color: #3182F7;
	background: white;
	box-shadow: 0 2px 8px rgba(41, 121, 255, 0.15);
}
.header-search-input::placeholder {
	color: #999;
}
.header-search-btn {
	position: absolute;
    right: 5px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666666;
    transition: background 0.3s;
}
.header-search-btn svg {
	width: 18px;
	height: 18px;
}

/* 모바일 대응 */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #333;
}

@media (max-width: 1024px) {
	.header-nav {
		gap: 20px;
	}
	.header-nav a {
		font-size: 14px;
	}
	.header-phone {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.header-top {
		display: none;
	}
	.header-main {
		height: 60px;
	}
	.header-logo h1 {
		font-size: 24px;
	}
	.header-nav {
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 20px;
		box-shadow: 0 4px 12px rgba(0,0,0,0.1);
		z-index: 999;
		gap: 0;
	}
	.header-nav.active {
		display: flex;
	}
	.nav-item {
		width: 100%;
		border-bottom: 1px solid #f0f0f0;
	}
	.nav-item:last-child {
		border-bottom: none;
	}
	.header-nav a {
		padding: 15px 10px;
		width: 100%;
	}
	.submenu {
		position: static;
		transform: none;
		box-shadow: none;
		border: none;
		border-radius: 0;
		background: #f8f9fa;
		margin-top: 0;
		padding: 0;
		max-height: 0;
		overflow: hidden;
		opacity: 1;
		visibility: visible;
		transition: max-height 0.3s;
	}
	.submenu::before {
		display: none;
	}
	.nav-item.has-submenu:hover .submenu {
		margin-top: 0;
	}
	.nav-item.has-submenu.active .submenu {
		max-height: 300px;
		padding: 8px 0;
	}
	.submenu a {
		padding: 12px 20px 12px 30px;
		font-size: 13px;
	}
	.submenu a:hover {
		padding-left: 35px;
	}
	.header-contact {
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		right: 0;
		background: white;
		padding: 15px 20px;
		border-top: 1px solid #e0e0e0;
	}
	.header-nav.active + .header-contact {
		display: block;
		top: auto;
	}
	.header-search-input {
		width: 100%;
	}
	.mobile-menu-btn {
		display: block;
	}
}


/* 메인 배너 */
/* 메인 배너 슬라이더 */
.main-banner { 
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 500px;
	background: #1a237e;
}
.banner-slider {
	position: relative;
	width: 100%;
	height: 100%;
}
.banner-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 1;
}
.banner-slide.active {
	opacity: 1;
	z-index: 2;
}
.banner-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 이전/다음 버튼 */
.banner-prev,
.banner-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.5);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
}
.banner-prev:hover,
.banner-next:hover {
	background: rgba(0,0,0,0.7);
}
.banner-prev {
	left: 20px;
}
.banner-next {
	right: 20px;
}

/* 인디케이터 */
.banner-indicators {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}
.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	cursor: pointer;
	transition: all 0.3s;
}
.indicator.active {
	background: white;
	width: 30px;
	border-radius: 6px;
}
.indicator:hover {
	background: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
	.main-banner {
		height: 300px;
	}
	.banner-prev,
	.banner-next {
		width: 40px;
		height: 40px;
	}
	.banner-prev {
		left: 10px;
	}
	.banner-next {
		right: 10px;
	}
	.banner-indicators {
		bottom: 15px;
	}
	.indicator {
		width: 8px;
		height: 8px;
	}
	.indicator.active {
		width: 20px;
	}
}

/* 검색 폼 */
.search-section { 
	background: white; 
	border-radius: 12px; 
	padding: 30px;
	margin: -50px auto 60px;
	max-width: 1137px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	position: relative;
	z-index: 10;
}
.search-tabs { 
	display: flex; 
	gap: 10px; 
	margin-bottom: 25px;
}
.search-tabs button { 
	padding: 12px 24px; 
	border: none; 
	background: none;
	font-size: 16px;
	font-weight: 600;
	color: #999;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: all 0.3s;
}
.search-tabs button.active { 
	color: #3182F7;
	border-bottom-color: #3182F7;
}

/* 탭 콘텐츠 */
.tab-content {
	display: none;
}
.tab-content.active {
	display: block;
}

/* 브랜드 탭 폼 */
.search-form { 
	display: grid; 
	grid-template-columns: repeat(3, 1fr) auto auto; 
	gap: 12px;
	align-items: center;
}
.search-form select,
.search-form input { 
	padding: 12px 15px; 
	border: 1px solid #ddd; 
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.3s;
	background: white;
}
.search-form select:focus,
.search-form input:focus { 
	outline: none;
	border-color: #3182F7;
}

/* 커스텀 Select */
.custom-select-wrapper {
	position: relative;
}
.custom-select {
	position: relative;
	width: 100%;
	cursor: pointer;
}
.custom-select-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 15px;
	background: white;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.3s;
}
.custom-select-trigger:hover {
	border-color: #3182F7;
}
.custom-select.open .custom-select-trigger {
	border-color: #3182F7;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.custom-select-trigger svg {
	transition: transform 0.3s;
	color: #999;
}
.custom-select.open .custom-select-trigger svg {
	transform: rotate(180deg);
}
.custom-options {
	position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: none;
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    text-align: left;
    border: 1px solid #CCCCCC;
}
.custom-select.open .custom-options {
	max-height: 300px;
	opacity: 1;
	visibility: visible;
	overflow-y: auto;
}
.custom-option {
	padding: 12px 15px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s;
}
.custom-option:hover {
	background: #f8f9ff;
	color: #3182F7;
}
.custom-option.selected {
	background: #e3f2fd;
	color: #3182F7;
	font-weight: 500;
}
.custom-options::-webkit-scrollbar {
	width: 6px;
}
.custom-options::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}
.custom-options::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 3px;
}
.custom-options::-webkit-scrollbar-thumb:hover {
	background: #999;
}

/* 예산 탭 폼 */
.budget-form {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto auto;
	gap: 12px;
	align-items: center;
}
.separator {
	color: #999;
	font-size: 16px;
	padding: 0 5px;
}

/* 차종 탭 폼 */
.type-form {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 12px;
	align-items: center;
}

/* 검색/리셋 버튼 */
.search-btn { 
	background: #3182F7; 
	color: white; 
	border: none; 
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 80px;
}
.search-btn:hover { 
	background: #1565c0;
}
.reset-btn {
	background: white;
	color: #666;
	border: 1px solid #ddd;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 80px;
}
.reset-btn:hover {
	border-color: #999;
	background: #f8f9fa;
}

@media (max-width: 768px) {
	.search-form {
		grid-template-columns: 1fr;
	}
	.budget-form {
		grid-template-columns: 1fr;
	}
	.budget-form .separator {
		display: none;
	}
	.type-form {
		grid-template-columns: 1fr;
	}
}

/* TV 차량 섹션 */
.tv-section { 
	margin: 160px auto 100px auto;
	max-width: 1200px;
}
.tv-content { 
	display: flex; 
	align-items: flex-start;
}
.tv-text { 
	flex: 1;
}
.tv-text img {
	display: block;
	margin: 0;
	max-width: 100%;
	height: auto;
}
.tv-text h2 { 
	font-size: 28px; 
	margin-bottom: 10px;
}
.tv-text .highlight { 
	color: #3182F7; 
	font-weight: bold;
}
.tv-text p { 
	color: #666; 
	line-height: 1.8;
	margin-top: 15px;
}
.tv-image { 
	flex: 1;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.tv-image img { 
	width: 100%; 
	height: auto;
	display: block;
}

/* 4개 서비스 카드 섹션 */
.service-cards-section {
	padding: 80px 20px 100px 20px;
	background: #fff;
}
.service-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0px 30px;
}
.service-info-card {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	cursor: pointer;
	transform: scale(1);
}
/* 그리드에 호버 시 모든 카드 작게 */
.service-cards-grid:hover .service-info-card {
	transform: scale(0.92);
	opacity: 0.6;
}

/* 호버된 카드만 크게 */
.service-cards-grid:hover .service-info-card:hover {
	transform: scale(1.05) translateY(-8px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.2);
	opacity: 1;
	z-index: 10;
	position: relative;
}

.service-info-card img {
	width: 100%;
	height: auto;
	display: block;
}

/* 반응형 - 모바일 */
@media (max-width: 768px) {
	.service-cards-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.service-cards-section {
		padding: 60px 16px;
	}
}

/* 차종 선택 */
.car-types { 
	background: #f7f7f7; 
	padding: 100px 20px 80px 20px;
}
.section-title { 
	text-align: center; 
	margin-bottom: 75px;
}
.section-title h2 { 
	font-size: 32px; 
	margin-bottom: 15px;
}
.section-title .blue { 
	color: #3182F7;
}
.section-title p { 
	color: #333; 
	font-size: 16px;
}
.car-type-grid { 
	display: grid; 
	grid-template-columns: repeat(5, 1fr); 
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}
.car-type-card { 
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
}
.car-type-card:hover { 
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.car-type-card h3 { 
	font-size: 18px; 
	margin-bottom: 15px;
}
.car-type-card p { 
	font-size: 13px; 
	opacity: 0.9;
	line-height: 1.6;
}
.car-type-card img { 
	width: 100%; 
	height: auto;
	transition: transform 0.3s;
}
.car-type-card:hover img {
	transform: translateY(-8px) scale(1.03);
}

/* 360도 카메라 */
.camera-section { 
	background: #1a237e; 
	color: white; 
	padding: 80px 20px;
	text-align: center;
}
.camera-content h2 { 
	font-size: 32px; 
	margin-bottom: 20px;
}
.camera-content p { 
	font-size: 18px; 
	opacity: 0.9;
}
.camera-image { 
	margin-top: 40px;
}
.camera-image img { 
	max-width: 500px; 
	height: auto;
}

/* 서비스 카드 */
.services { 
	padding: 80px 20px;
}
.service-grid { 
	display: grid; 
	grid-template-columns: repeat(4, 1fr); 
	gap: 30px;
	max-width: 1200px;
	margin: 40px auto 0;
}
.service-card { 
	background: white; 
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	transition: box-shadow 0.3s;
}
.service-card:hover { 
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.service-icon { 
	width: 60px; 
	height: 60px; 
	background: #e3f2fd;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 30px;
}
.service-card h3 { 
	font-size: 18px; 
	margin-bottom: 10px;
}
.service-card p { 
	color: #666; 
	font-size: 14px;
	line-height: 1.6;
}
.service-btn { 
	background: #3182F7; 
	color: white; 
	padding: 8px 20px;
	border-radius: 6px;
	border: none;
	margin-top: 15px;
	cursor: pointer;
	font-size: 14px;
}

/* 후기 섹션 */
.reviews { 
	background: #f6f7f9; 
	padding: 100px 20px;
	overflow: visible;
}
.review-swiper-container {
	max-width: 1200px;
	position: relative;
	overflow: visible;
}
.reviewSwiper {
	overflow: hidden;
	padding: 20px 0 20px 0;
}
.review-card { 
	background: white; 
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	transition: transform 0.3s, box-shadow 0.3s;
	margin-top:10px;
	cursor: pointer;
}
.review-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.review-image { 
	width: 100%; 
	height: 220px;
	object-fit: cover;
}
.review-content { 
	padding: 20px;
}
.review-rating {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #333;
}
.review-rating span {
	color: #999;
	font-weight: 400;
	margin-left: 8px;
}
.review-title { 
	font-size: 15px; 
	margin-bottom: 10px;
	font-weight: 600;
	color: #333;
	line-height: 1.5;
}
.review-text {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

/* Swiper 네비게이션 버튼 커스텀 */
.review-nav-prev,
.review-nav-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px !important;
	height: 48px !important;
	background: rgba(17, 17, 17, 0.5) !important;
	border-radius: 8px !important;
	transition: all 0.3s !important;
	z-index: 10;
	margin-top: 0 !important;
}
.review-nav-prev:after,
.review-nav-next:after {
	font-size: 20px !important;
	color: white !important;
	font-weight: bold !important;
}
.review-nav-prev:hover,
.review-nav-next:hover {
	background: rgba(75, 85, 99, 0.8) !important;
}
.review-nav-prev {
	left: -80px !important;
}
.review-nav-next {
	right: -80px !important;
}

/* Swiper 페이지네이션 커스텀 */
.review-pagination {
	position: relative !important;
	margin-top: 30px !important;
	text-align: center;
}
.review-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #d0d0d0;
	opacity: 1;
	transition: all 0.3s;
}
.review-pagination .swiper-pagination-bullet-active {
	width: 32px;
	border-radius: 5px;
	background: #3182F7;
}

/* 최근 등록 */
.recent-cars { 
	padding: 100px 20px;
	background: #fff;
}
.recent-tabs { 
	display: flex; 
	justify-content: center; 
	gap: 40px;
	margin-bottom: 40px;
}
.recent-tabs button { 
	padding: 15px 0; 
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 16px;
	transition: all 0.3s;
	font-weight: 500;
	color: #666;
	position: relative;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
}
.recent-tabs button:hover {
	color: #3182F7;
}
.recent-tabs button.active { 
	color: #3182F7;
	border-bottom-color: #3182F7;
	font-weight: 600;
}

/* 차량 탭 컨텐츠 */
.car-tab-content {
	display: none;
}
.car-tab-content.active {
	display: block;
}

/* 차량 Swiper 컨테이너 */
.car-swiper-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
	position: relative;
	overflow: visible;
}
.carSwiper {
	overflow: hidden;
	padding: 20px 0 20px 0;
}

/* 차량 카드 */
.car-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	transition: transform 0.3s, box-shadow 0.3s;
	cursor: pointer;
	height: 100%;
}
.car-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.car-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.car-content {
	padding: 20px;
}
.car-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.car-price {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 8px;
}
.car-meta {
	font-size: 14px;
	color: #666;
}

/* 차량 Swiper 네비게이션 */
.car-nav-prev,
.car-nav-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px !important;
	height: 48px !important;
	background: rgba(17, 17, 17, 0.5) !important;
	border-radius: 8px !important;
	transition: all 0.3s !important;
	z-index: 10;
	margin-top: 0 !important;
}
.car-nav-prev:after,
.car-nav-next:after {
	font-size: 20px !important;
	color: white !important;
	font-weight: bold !important;
}
.car-nav-prev:hover,
.car-nav-next:hover {
	background: rgba(75, 85, 99, 0.8) !important;
}
.car-nav-prev {
	left: -80px !important;
}
.car-nav-next {
	right: -80px !important;
}

/* 차량 Swiper 페이지네이션 */
.car-pagination {
	position: relative !important;
	margin-top: 30px !important;
	text-align: center;
}
.car-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #d0d0d0;
	opacity: 1;
	transition: all 0.3s;
}
.car-pagination .swiper-pagination-bullet-active {
	width: 32px;
	border-radius: 5px;
	background: #3182F7;
}

/* 차담차 안내 */
.intro { 
	padding: 0px 20px 150px 20px;
}
.intro-content { 
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.intro-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}
.intro-card {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	transition: transform 0.3s, box-shadow 0.3s;
}
.intro-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.intro-card img {
	width: 100%;
	height: auto;
	display: block;
}
.intro-circle { 
	width: 400px; 
	height: 400px; 
	background: #3182F7;
	border-radius: 50%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: 0 20px 60px rgba(41, 121, 255, 0.3);
}
.intro-circle h2 { 
	font-size: 48px; 
	margin-bottom: 20px;
}
.intro-circle p { 
	font-size: 16px; 
	text-align: center;
	line-height: 1.8;
}
.intro-features { 
	display: grid; 
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 60px;
}
.intro-feature { 
	display: flex; 
	gap: 15px;
}
.intro-feature-icon { 
	width: 50px; 
	height: 50px;
	background: #e3f2fd;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.intro-feature-text h3 { 
	font-size: 16px; 
	margin-bottom: 8px;
}
.intro-feature-text p { 
	color: #666; 
	font-size: 14px;
	line-height: 1.6;
}

/* 과정 섹션 */
.process { 
	background: #f8f9fa;
	padding: 100px 20px;
}
.process-grid { 
	display: grid; 
	grid-template-columns: repeat(3, 1fr); 
	gap: 24px;
	max-width: 1200px;
	margin: 40px auto 0;
}
.process-card {
	overflow: hidden;
	transition: transform 0.1s ease, box-shadow 0.1s ease;
	border-radius: 12px;
	box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.1);
	background-color: #fff;
	padding: 50px 0px;
}
.process-card:hover {
	transform: translateY(-8px) !important;
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.process-card img {
	height: auto;
    display: block;
    margin: auto;
}

.process-step { 
	text-align: center;
}
.process-icon { 
	width: 80px; 
	height: 80px;
	background: #e3f2fd;
	border-radius: 50%;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	color: #3182F7;
}
.process-step h3 { 
	font-size: 18px; 
	margin-bottom: 10px;
}
.process-step p { 
	color: #666; 
	font-size: 14px;
	line-height: 1.6;
}

@media (max-width: 1024px) and (min-width: 769px) {
	.intro-grid,
	.process-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.banner-content { flex-direction: column; text-align: center; }
	.search-form { grid-template-columns: 1fr; }
	.car-type-grid { grid-template-columns: repeat(2, 1fr); }
	.service-grid { grid-template-columns: repeat(2, 1fr); }
	.process-grid { grid-template-columns: 1fr; }
	.intro-features { grid-template-columns: 1fr; }
	
	.step7 img{
		width: 100%;
	}
	/* 후기 슬라이더 모바일 */
	.review-swiper-container {
		padding: 20px 16px;
	}
	.review-nav-prev,
	.review-nav-next {
		width: 40px !important;
		height: 40px !important;
	}
	.tv-content {
		display: block;
	}
	.tv-text img {
		margin-bottom: 20px;
	}
	.review-nav-prev {
		left: -8px !important;
	}
	.review-nav-next {
		right: -8px !important;
	}
	
	/* 차량 슬라이더 모바일 */
	.car-swiper-container {
		padding: 20px 16px;
	}
	.car-nav-prev,
	.car-nav-next {
		width: 40px !important;
		height: 40px !important;
	}
	.car-nav-prev {
		left: -8px !important;
	}
	.car-nav-next {
		right: -8px !important;
	}
	.recent-tabs {
		flex-direction: column;
		gap: 10px;
	}
	.recent-tabs button {
		width: 100%;
	}
	
	/* 이용절차 모바일 */
	.intro-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* 푸터 */
.site-footer-main {
	background-color: #F6F7F9 !important;
	
	clear: both !important;
	width: 100% !important;
	display:block;
}
.site-footer-container {
	padding: 60px 0px 40px 0px !important;
	max-width: 1200px !important;
	margin: 0 auto !important;
}
.site-footer-content {
	display: flex !important;
	justify-content: space-between !important;
	align-items: flex-start !important;
	margin-bottom: 30px !important;
	gap: 40px !important;
}
.site-footer-left {
	flex: 1 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 20px !important;
}
.site-footer-logo {
	flex-shrink: 0 !important;
}
.site-footer-logo img {
	height: 22px !important;
	width: auto !important;
	display: block !important;
}
.site-footer-text {
	color: #545454 !important;
	font-size: 14px !important;
	line-height: 1.6 !important;
	margin-bottom: 0 !important;
	text-align: left;
	line-height: 1.8;
}
.site-footer-text p {
	margin: 2px 0 !important;
}
.site-footer-contact {
	display: flex !important;
	gap: 60px !important;
	flex-shrink: 0 !important;
	align-items: flex-start !important;
}
.site-footer-contact-item {
	text-align: left !important;
}
.site-footer-label {
	color: #545454 !important;
	font-size: 14px !important;
	display: block !important;
	margin-bottom: 5px !important;
}
.site-footer-value {
	color: #666 !important;
	font-size: 20px !important;
	font-weight: 600 !important;
	display: block !important;
}
.site-footer-copyright {
	padding-top: 30px !important;
	text-align: center !important;
}
.site-footer-copyright p {
	margin: 0 !important;
	color: #545454 !important;
	font-size: 14px !important;
}

@media (max-width: 768px) {
	.site-footer-main {
	}
	.site-footer-content {
		flex-direction: column !important;
		gap: 30px !important;
		
		padding: 40px 20px 30px 20px !important;
	}
	.site-footer-left {
		gap: 15px !important;
	}
	.site-footer-logo img {
		height: 40px !important;
	}
	.site-footer-contact {
		flex-direction: column !important;
		gap: 15px !important;
	}
	.site-footer-text {
		font-size: 11px !important;
	}
	.site-footer-value {
		font-size: 16px !important;
	}
}




.photo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.photo-item {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	text-decoration: none;
	display: block;
}

.photo-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.photo-image-wrapper {
	width: 100%;
	height: 200px;
	background: #d3d3d3;
	position: relative;
	overflow: hidden;
}

.photo-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo-content {
	padding: 16px;
}

.photo-title {
	font-size: 20px;
	color: #000;
	font-weight: 600;
	margin-bottom: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: left;
}

.photo-description {
	font-size: 13px;
	color: #666;
	line-height: 1.5;
	margin-bottom: 60px;
	height: 42px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	text-align: left;
}

.photo-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
}

.photo-rating .star {
	color: #fbbf24;
	font-size: 16px;
}

.photo-rating .rating-score {
	color: #000;
	font-weight: 600;
}

.photo-rating .rating-count {
	color: #999;
	margin-left: 10px;
}

.bottom {
	text-align: right;
	margin: 30px 0;
}

.btnbox1 .btn00 {
	display: inline-block;
	padding: 12px 30px;
	background-color: #0066ff;
	color: #fff;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s;
}

.btnbox1 .btn00:hover {
	background-color: #0052cc;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 102, 255, 0.3);
}

.btnbox1 .btn00 a {
	color: #fff;
	text-decoration: none;
}

/* 페이지네이션 스타일 */
#pagingdiv {
	clear: both;
	width: 100%;
	padding: 30px 0;
	text-align: center;
}

#pagingdiv a,
#pagingdiv strong {
	display: inline-block;
	min-width: 20px;
	height: 32px;
	line-height: 32px;
	margin: 0 0px;
	padding: 0 8px;
	text-align: center;
	text-decoration: none;
	color: #666;
	border-radius: 4px;
	font-size: 14px;
	transition: all 0.2s;
}

#pagingdiv a:hover {
	background-color: #e8f2ff;
	color: #0066ff;
}

#pagingdiv strong {
	background-color: #0066ff;
	color: #fff;
	font-weight: 600;
}

.no-data {
	width: 100%;
	text-align: center;
	padding: 60px 20px;
	color: #666;
	font-size: 16px;
}

@media (max-width: 1024px) {
	.photo-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.photo-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.photo-image-wrapper {
		height: 150px;
	}
}

@media (max-width: 480px) {
	.photo-grid {
		grid-template-columns: 1fr;
	}
}


/* 차량 카드 스타일 */
.car-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.car-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.car-card a {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.car-image {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #f5f5f5;
	flex-shrink: 0;
}

.car-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.car-badges {
	display: flex;
    justify-content: unset;
    align-items: flex-start;
    gap: 5px;
    z-index: 2;
}

.badge {
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	display: inline-block;
}

.badge-cert {
	background: #3182f7;
}

.badge-service {
	background: #e9f6ff;
	color: #07f;
}

.car-info {
	padding: 20px 10px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.car-name {
	font-size: 20px;
	color: #000;
	font-weight: 700;
	margin: 15px 0 12px 0;
	line-height: 1.4;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.car-details {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
	font-size: 12px;
	color: #666;
	align-items: center;
}

.car-details span {
	position: relative;
	padding-right: 8px;
	white-space: nowrap;
}

.car-details span:not(:last-child)::after {
	
	position: absolute;
	right: 2px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 10px;
	background: #ddd;
}

.car-price {
	text-align: left;
	margin-bottom: 8px;
}

.car-price strong {
	font-size: 20px;
	font-weight: 700;
	color: #111;
}

.car-installment {
	text-align: left;
	font-size: 16px;
	color: #333;
}

.car-installment .highlight {
	color: #3182f7;
	font-weight: 700;
	font-size: 16px;
}

/* 반응형 */
@media (max-width: 768px) {
	.car-name {
		font-size: 14px;
	}
	
	.car-details {
		font-size: 12px;
	}
	
	.car-price strong {
		font-size: 18px;
	}
	
	.car-installment {
		font-size: 12px;
	}
	
	.car-info {
		padding: 12px;
	}
}



/* 검색 박스 탭 스타일 */
.search-tabs-container {
	background: #fff;
    border-radius: 8px;
    max-width: 1200px;
}

.search-tabs-header {
	display: flex;
	gap: 0;
	margin-bottom: 20px;
}

.search-tab-btn {
	padding: 15px 30px;
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	color: #666;
	position: relative;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: all 0.3s;
}

.search-tab-btn:hover {
	color: #004af9;
}

.search-tab-btn.active {
	color: #004af9;
	border-bottom-color: #004af9;
	font-weight: 600;
}

.search-tab-content {
	display: none;
}

.search-tab-content.active {
	display: block;
}

/* 차량 검색 테이블 */
.car-search-table {
	width: 100%;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	overflow: hidden;
}

/* 테이블 헤더 */
.table-header-wrapper {
	display: flex;
	width: 100%;
	background: #f8f9fa;
}

.table-header-cell {
	padding: 15px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	border-bottom: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
}

.table-header-cell:first-child {
	width: 150px;
	flex-shrink: 0;
}

.table-header-cell:not(:first-child) {
	flex: 1;
}

.table-header-cell:last-child {
	border-right: none;
}

/* 테이블 바디 wrapper */
.table-body-wrapper {
	display: flex;
	height: 200px;
}

/* 제조사 컬럼 스크롤 영역 */
.brand-column-wrapper {
	width: 150px;
	flex-shrink: 0;
	overflow-y: auto;
	border-right: 1px solid #e5e5e5;
	background: #fff;
	box-sizing: border-box;
}

.brand-column-wrapper::-webkit-scrollbar {
	width: 6px;
}

.brand-column-wrapper::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.brand-column-wrapper::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 3px;
}

.brand-column-wrapper::-webkit-scrollbar-thumb:hover {
	background: #999;
}

/* 선택 컬럼들 wrapper */
.select-columns-wrapper {
	flex: 1;
	display: flex;
	min-width: 0;
}

.brand-cell {
	padding: 15px;
	text-align: center;
	font-size: 14px;
	color: #333;
	background: #fff;
	cursor: pointer;
	transition: all 0.2s;
	border-bottom: 1px solid #f5f5f5;
}

.brand-cell:hover {
	background: #f8f9fa;
	color: #004af9;
}

.brand-cell.selected {
	background: #004af9;
	color: white;
	font-weight: 600;
}

.select-cell {
	position: relative;
	flex: 1;
	background: #fafafa;
	padding: 20px;
	border-right: 1px solid #e5e5e5;
	box-sizing: border-box;
}

.select-cell:last-child {
	border-right: none;
}

.select-placeholder {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #999;
	font-size: 14px;
	line-height: 1.8;
}

.select-cell .list {
	list-style: none;
	padding: 0;
	margin: 0;
	height: calc(100% - 40px);
	overflow-y: auto;
}

.select-cell .list::-webkit-scrollbar {
	width: 6px;
}

.select-cell .list::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.select-cell .list::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 3px;
}

.select-cell .list::-webkit-scrollbar-thumb:hover {
	background: #999;
}

.select-cell .list li {
	list-style: none;
}

.select-cell .list li a {
	display: block;
	padding: 12px 15px;
	color: #333;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.2s;
	border-radius: 4px;
	margin-bottom: 4px;
}

.select-cell .list li a:hover {
	background-color: #fff;
	color: #004af9;
}

.select-cell .list li.on a {
	background-color: #004af9;
	color: white;
}

.select-cell .list li.on a span {
	color: white;
}

/* 필터 버튼 (차종별 검색) */
.filter-btn {
	padding: 10px 20px;
	border: 1px solid #ddd;
	background: white;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	color: #333;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	min-width: 120px;
}

.filter-btn:hover {
	border-color: #004af9;
	color: #3182F7;
}

.filter-btn.active {
	background: #004af9;
	color: white;
	border-color: #004af9;
}

/* 상세 검색 박스 */
#carselectbox {
	clear: both;	
	max-width: 1200px;
	background-color: #f8f9fa;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 20px;
}

#carselectbox ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 15px;
	padding: 0;
	list-style: none;
}

#carselectbox li {
	display: flex;
	align-items: center;
	gap: 10px;
	list-style: none;
}

.sale_text {
	color: #333;
	font-size: 14px;
	font-weight: 500;
	min-width: 60px;
}

.sale_select,
#carselectbox input[type="text"] {
	padding: 9px 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	background: white;
	transition: border-color 0.3s;
}

.sale_select:focus,
#carselectbox input[type="text"]:focus {
	outline: none;
	border-color: #004af9;
	box-shadow: 0 0 0 3px rgba(49, 130, 247, 0.1);
}

/* 상세검색 제목 추가 */
.search-detail-title {
	font-size: 15px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
	padding-bottom: 10px;
}


.homecarinfo li{overflow:hidden; width:100%; line-height:22px}
.homecarinfo li dt{float:left;}
.homecarinfo li dd{float:right;}