/* ========================================
   비엘렌트카 - 모바일 우선 스타일시트
   주황색 테마 (#FF6B00, #FF8C00, #FFA500)
======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 주황색 컬러 팔레트 */
    --primary-orange: #FF6B00;
    --primary-orange-light: #FF8C00;
    --primary-orange-lighter: #FFA500;
    --primary-orange-dark: #E85D00;
    
    /* 보조 컬러 */
    --kakao-yellow: #FEE500;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f0f0f0;
    --border-color: #e0e0e0;
    
    /* 그림자 */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    
    /* 폰트 크기 - 모바일 우선 */
    --font-xs: 0.75rem;    /* 12px */
    --font-sm: 0.875rem;   /* 14px */
    --font-base: 1rem;     /* 16px */
    --font-lg: 1.125rem;   /* 18px */
    --font-xl: 1.25rem;    /* 20px */
    --font-2xl: 1.5rem;    /* 24px */
    --font-3xl: 1.875rem;  /* 30px */
    --font-4xl: 2.25rem;   /* 36px */
    
    /* 간격 */
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-sm: 0.75rem;  /* 12px */
    --spacing-md: 1rem;     /* 16px */
    --spacing-lg: 1.5rem;   /* 24px */
    --spacing-xl: 2rem;     /* 32px */
    --spacing-2xl: 3rem;    /* 48px */
    
    /* 헤더 높이 */
    --header-height: 60px;
    --fixed-cta-height: 64px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
    padding-bottom: var(--fixed-cta-height);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================================
   Header & Navigation
======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--primary-orange);
}

.logo i {
    font-size: var(--font-2xl);
}

/* Hamburger Menu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-orange);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    visibility: visible;
    opacity: 1;
}

.nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--bg-white);
    padding: var(--spacing-xl) var(--spacing-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active .nav-content {
    transform: translateX(0);
}

.nav-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    font-size: var(--font-2xl);
    color: var(--primary-orange);
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-list {
    list-style: none;
    margin-top: var(--spacing-2xl);
}

.nav-list li {
    margin-bottom: var(--spacing-md);
}

.nav-link {
    display: block;
    padding: var(--spacing-sm) 0;
    font-size: var(--font-lg);
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:active {
    color: var(--primary-orange);
}

/* ========================================
   Promotion Banner Slider
======================================== */

.promo-slider {
    margin-top: var(--header-height);
    height: 300px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
}

.promoSwiper {
    width: 100%;
    height: 100%;
}

.promo-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
}

.promo-slide-2 {
    background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--primary-orange-lighter) 100%);
}

.promo-slide-3 {
    background: linear-gradient(135deg, var(--primary-orange-dark) 0%, var(--primary-orange) 100%);
}

.promo-content {
    max-width: 500px;
}

.promo-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.promo-title {
    font-size: var(--font-3xl);
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

.promo-text {
    font-size: var(--font-lg);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.promo-slider .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.promo-slider .swiper-pagination-bullet-active {
    background-color: var(--bg-white);
}

/* ========================================
   Hero Section
======================================== */

.hero {
    padding: var(--spacing-2xl) 0;
    text-align: center;
    background-color: var(--bg-white);
}

.hero-subtitle {
    display: block;
    font-size: var(--font-base);
    font-weight: 500;
    color: var(--primary-orange);
    margin-bottom: var(--spacing-xs);
}

.hero-title {
    font-size: var(--font-4xl);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero-description {
    font-size: var(--font-lg);
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.stat-item {
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.stat-number {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--font-sm);
    color: var(--text-gray);
}

/* ========================================
   Section Titles
======================================== */

.section-title {
    font-size: var(--font-3xl);
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: var(--font-base);
    color: var(--text-gray);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* ========================================
   Service Section
======================================== */

.service {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.service-card {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2xl);
    color: var(--bg-white);
}

.service-card-title {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.service-card-text {
    font-size: var(--font-sm);
    color: var(--text-gray);
    line-height: 1.5;
}

/* ========================================
   Vehicles Section (모바일 최적화)
======================================== */

.vehicles {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-white);
}

/* Swiper 컨테이너 - 윗줄/아랫줄 독립 */
.vehicleSwiperTop,
.vehicleSwiperBottom {
    padding-bottom: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    overflow: visible;
}

.vehicleSwiperTop {
    margin-top: var(--spacing-lg);
}

.vehicleSwiperBottom {
    margin-bottom: var(--spacing-2xl);
}

/* 슬라이드 기본 스타일 */
.vehicleSwiperTop .swiper-slide,
.vehicleSwiperBottom .swiper-slide {
    height: auto;
}

.vehicle-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--primary-orange-lighter);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover,
.vehicle-card:active {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.vehicle-image {
    position: relative;
    width: 100%;
    height: 140px; /* 2줄 그리드용 높이 줄임 */
    overflow: hidden;
    background-color: var(--bg-gray);
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-image img,
.vehicle-card:active .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-info {
    padding: var(--spacing-sm) var(--spacing-md); /* 2줄용 패딩 줄임 */
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vehicle-name {
    font-size: var(--font-sm); /* 2줄용 작게 */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; /* 한 줄로 */
}

.vehicle-description {
    font-size: var(--font-xs); /* 2줄용 작게 */
    color: var(--text-gray);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; /* 한 줄로 */
}

.vehicle-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    padding: 6px 14px;
    background-color: var(--primary-orange);
    color: var(--bg-white);
    font-size: var(--font-xs);
    font-weight: 700;
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* 배지 색상 */
.badge-popular {
    background-color: #e74c3c;
}

.badge-premium {
    background-color: var(--primary-orange);
}

.badge-new {
    background-color: #3498db;
}

.badge-eco {
    background-color: #27ae60;
}

/* Swiper 페이지네이션 커스텀 */
.vehicleSwiperTop .swiper-pagination,
.vehicleSwiperBottom .swiper-pagination {
    bottom: 0;
}

.vehicleSwiperTop .swiper-pagination-bullet,
.vehicleSwiperBottom .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--text-light);
    opacity: 1;
    transition: all 0.3s ease;
}

.vehicleSwiperTop .swiper-pagination-bullet-active,
.vehicleSwiperBottom .swiper-pagination-bullet-active {
    background-color: var(--primary-orange);
    width: 20px;
    border-radius: 4px;
}

.vehicle-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 8px;
}

.vehicle-note i {
    color: var(--primary-orange);
}

.vehicle-note p {
    font-size: var(--font-sm);
    color: var(--text-gray);
}

/* ========================================
   Process Timeline
======================================== */

/* ========================================
   Process Timeline
======================================== */

.process {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    position: relative;
}

/* 타임라인 연결선 (데스크톱) */
@media (min-width: 768px) {
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 10%;
        right: 10%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-orange-lighter) 100%);
        z-index: 0;
    }
}

.process-step {
    position: relative;
    text-align: center;
    background: var(--bg-white);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: var(--font-2xl);
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
    border: 4px solid var(--bg-light);
}

.step-icon {
    font-size: 48px;
    color: var(--primary-orange);
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.step-title {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.step-description {
    font-size: var(--font-sm);
    color: var(--text-gray);
    line-height: 1.6;
}

/* 모바일 최적화 */
@media (max-width: 767px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .process-step {
        padding: var(--spacing-lg);
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: var(--font-xl);
    }
    
    .step-icon {
        font-size: 36px;
        margin: var(--spacing-md) 0 var(--spacing-sm);
    }
}

/* ========================================
   Old Timeline Styles (백업용)
======================================== */

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-orange) 0%, var(--primary-orange-lighter) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -30px;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: var(--font-lg);
    box-shadow: 0 0 0 4px var(--bg-light);
    z-index: 1;
}

.timeline-content {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.timeline-title {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: var(--spacing-sm);
}

.timeline-text {
    font-size: var(--font-sm);
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========================================
   Video Section
======================================== */

.video-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-white);
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    background-color: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 8px;
}

.video-note i {
    color: var(--primary-orange);
}

.video-note p {
    font-size: var(--font-sm);
    color: var(--text-gray);
}

/* ========================================
   Reviews Section
======================================== */

.reviews {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-light);
}

.reviewSwiper {
    padding-bottom: var(--spacing-2xl);
    margin-top: var(--spacing-lg);
}

.review-card {
    background-color: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    height: auto;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: var(--spacing-md);
}

.review-rating i {
    color: var(--primary-orange);
    font-size: var(--font-lg);
}

.review-text {
    font-size: var(--font-base);
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
    position: relative;
    padding-left: var(--spacing-md);
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: var(--font-4xl);
    color: var(--primary-orange-lighter);
    font-weight: 700;
    opacity: 0.5;
}

.review-author {
    border-top: 1px solid var(--border-color);
    padding-top: var(--spacing-md);
}

.author-name {
    font-size: var(--font-base);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-vehicle {
    font-size: var(--font-sm);
    color: var(--text-gray);
}

/* ========================================
   FAQ Section
======================================== */

.faq {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-orange);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg);
    background-color: var(--bg-white);
    border: none;
    text-align: left;
    font-size: var(--font-base);
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-item.active .faq-question {
    color: var(--primary-orange);
}

.faq-question i {
    color: var(--primary-orange);
    font-size: var(--font-lg);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    font-size: var(--font-sm);
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   Contact Section
======================================== */

.contact {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
    color: var(--bg-white);
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--bg-white);
}

.contact-cta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    min-height: 120px;
}

.cta-phone {
    background-color: var(--bg-white);
    color: var(--primary-orange);
}

.cta-phone:hover {
    background-color: var(--bg-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cta-kakao {
    background-color: var(--kakao-yellow);
    color: #3c1e1e;
}

.cta-kakao:hover {
    background-color: #ffd400;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cta-button i {
    font-size: var(--font-3xl);
    margin-bottom: var(--spacing-sm);
}

.cta-button span {
    text-align: center;
    line-height: 1.4;
}

.cta-button strong {
    display: block;
    font-size: var(--font-lg);
    margin-top: 4px;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: var(--font-xl);
    color: var(--bg-white);
    margin-top: 2px;
}

.info-label {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.info-value {
    font-size: var(--font-base);
    color: var(--bg-white);
    font-weight: 600;
}

/* ========================================
   Consult Form Section (2번에서 추가)
======================================== */

.consult-form-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-light);
}

.consult-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-dark);
    font-size: var(--font-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: var(--font-base);
    font-family: 'Noto Sans KR', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: var(--font-lg);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.submit-btn:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

/* ========================================
   Footer
======================================== */

.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: var(--spacing-lg);
}

.footer-logo i {
    font-size: var(--font-2xl);
}

.footer-info {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.footer-info p {
    font-size: var(--font-xs);
    line-height: 1.8;
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-links a {
    font-size: var(--font-sm);
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-copyright {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: var(--font-xs);
    color: var(--text-light);
}

/* ========================================
   Fixed Bottom CTA
======================================== */

.fixed-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    height: var(--fixed-cta-height);
}

.fixed-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.fixed-phone {
    background-color: var(--primary-orange);
    color: var(--bg-white);
}

.fixed-phone:active {
    background-color: var(--primary-orange-dark);
}

.fixed-kakao {
    background-color: var(--kakao-yellow);
    color: #3c1e1e;
}

.fixed-kakao:active {
    background-color: #ffd400;
}

.fixed-cta-btn i {
    font-size: var(--font-xl);
    margin-bottom: 4px;
}

.fixed-cta-btn span {
    font-size: var(--font-sm);
}

/* ========================================
   Swiper Pagination
======================================== */

.swiper-pagination-bullet {
    background-color: var(--text-light);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-orange);
}

/* ========================================
   Responsive - Tablet (768px+)
======================================== */

@media (min-width: 768px) {
    :root {
        --font-3xl: 2.25rem;  /* 36px */
        --font-4xl: 3rem;     /* 48px */
        --header-height: 70px;
    }

    .container {
        padding: 0 var(--spacing-xl);
    }

    .promo-slider {
        height: 350px;
    }

    .promo-title {
        font-size: var(--font-4xl);
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }

    .hero-stats {
        gap: var(--spacing-xl);
    }

    .stat-number {
        font-size: var(--font-2xl);
    }

    .contact-cta {
        gap: var(--spacing-lg);
    }

    .cta-button {
        padding: var(--spacing-2xl);
        min-height: 150px;
    }

    /* 차량 섹션 - 태블릿 */
    .vehicleSwiperTop,
    .vehicleSwiperBottom {
        padding-bottom: var(--spacing-xl);
    }

    .vehicle-image {
        height: 160px;
    }

    .vehicle-info {
        padding: var(--spacing-md);
    }

    .vehicle-name {
        font-size: var(--font-base);
        white-space: normal; /* 태블릿부터 여러 줄 가능 */
    }

    .vehicle-description {
        font-size: var(--font-sm);
        white-space: normal;
    }
}

/* ========================================
   Responsive - Desktop (1024px+)
======================================== */

@media (min-width: 1024px) {
    .promo-slider {
        height: 400px;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fixed-bottom-cta {
        display: none;
    }

    body {
        padding-bottom: 0;
    }

    .timeline {
        padding-left: 60px;
    }

    /* 차량 섹션 - 데스크톱 */
    .vehicleSwiperTop,
    .vehicleSwiperBottom {
        padding-bottom: var(--spacing-2xl);
    }

    .vehicle-image {
        height: 180px;
    }

    .vehicle-info {
        padding: var(--spacing-lg);
    }

    .vehicle-name {
        font-size: var(--font-lg);
    }

    .vehicle-description {
        font-size: var(--font-base);
    }
}

/* ========================================
   Utility Classes
======================================== */

.text-center {
    text-align: center;
}

.text-orange {
    color: var(--primary-orange);
}

.bg-orange {
    background-color: var(--primary-orange);
}

/* ========================================
   Animations
======================================== */

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ========================================
   Accessibility
======================================== */

:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

/* ========================================
   Print Styles
======================================== */

@media print {
    .header,
    .fixed-bottom-cta,
    .promo-slider,
    .mobile-nav {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

/* ========================================
   Smartlog 채팅 위젯 숨기기
======================================== */

/* Smartlog 채팅 버튼 숨기기 */
#smlog-chat-button,
#smlog_chat_button,
[id*="smlog"][id*="chat"],
[class*="smlog"][class*="chat"],
.smartlog-chat,
#smartlog-chat {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}