/* CarplayAuto 렌트/리스 플랫폼 - Activello 디자인 통합 */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Toss 흰색 바탕 색상 팔레트 */
  --primary-color: #007bff;
  --primary-hover: #0056b3;
  --secondary-color: #6c757d;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #ffffff;
  --dark-color: #1a1a1a;
  --text-color: #333333;
  --link-color: #007bff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f4;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --blue-50: #e3f2fd;
  --blue-100: #bbdefb;
  --blue-500: #2196f3;
  --blue-600: #1976d2;
  
  /* Bootstrap 호환 변수 */
  --bs-primary: #007bff;
  --bs-secondary: #6c757d;
  --bs-success: #28a745;
  --bs-danger: #dc3545;
  --bs-warning: #ffc107;
  --bs-info: #17a2b8;
  --bs-light: #ffffff;
  --bs-dark: #1a1a1a;
  
  /* Toss 디자인 호환 변수 */
  --toss-blue: #007bff;
  --toss-blue-light: #e3f2fd;
  --toss-gray-50: #f8f9fa;
  --toss-gray-100: #f1f3f4;
  --toss-gray-200: #e9ecef;
  --toss-gray-400: #ced4da;
  --toss-gray-600: #6c757d;
  --toss-gray-700: #495057;
  --toss-gray-900: #212529;
  --toss-success: #28a745;
  --toss-danger: #dc3545;
  --toss-warning: #ffc107;
  
  /* 반응형 간격 */
  --mobile-padding: 15px;
  --desktop-padding: 30px;
  
  /* 반응형 폰트 크기 */
  --mobile-h1: 1.6rem;
  --desktop-h1: 2.2rem;
  --mobile-text: 0.85rem;
  --desktop-text: 0.9rem;
}

/* 기본 스타일 - Toss 스타일 */
body {
  color: var(--text-color);
  background-color: var(--light-color);
  word-wrap: break-word;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  font-size: var(--mobile-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.02em;
}

/* Activello 링크 스타일 */
a {
  color: var(--link-color);
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover, a:focus {
  color: var(--primary-color);
  text-decoration: none;
}

/* Toss 헤딩 스타일 */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: var(--text-color);
  font-weight: 700;
  font-family: 'Pretendard', sans-serif;
  margin: 20px 0;
  letter-spacing: -0.04em;
}

.container {
  max-width: 1090px;
}

/* 컨테이너 반응형 */
.container, .container-fluid {
  padding-left: var(--mobile-padding);
  padding-right: var(--mobile-padding);
}

/* ===== 웹/데스크톱 최적화 ===== */
@media (min-width: 768px) {
  /* 네이버처럼 데스크톱에서 최소 너비 고정 - 창을 줄여도 콘텐츠가 축소되지 않고 잘림 */
  html {
    min-width: 1400px;
    overflow-x: auto;
  }
  
  body {
    min-width: 1400px;
    width: 100%;
  }

  body {
    font-size: var(--desktop-text);
  }
  
  .container, .container-fluid {
    padding-left: var(--desktop-padding);
    padding-right: var(--desktop-padding);
  }
  
  .hero-section h1 {
    font-size: var(--desktop-h1);
  }
  
  /* 데스크톱 네비게이션 */
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
  }
  
  /* 데스크톱 카드 호버 효과 */
  .vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  /* 데스크톱 버튼 크기 */
  .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
  }
}

/* ===== 모바일 최적화 ===== */
@media (max-width: 767px) {
  /* 모바일 히어로 섹션 */
  .hero-section {
    padding: 2rem 0 !important;
  }
  
  .hero-section h1 {
    font-size: var(--mobile-h1);
    margin-bottom: 1rem;
  }
  
  .hero-section .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-section .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  /* 모바일 네비게이션 */
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-collapse {
    margin-top: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    border-radius: 6px;
    font-size: 1.1rem;
    text-align: center;
    background: rgba(255,255,255,0.1);
  }
  
  /* 모바일 카드 최적화 */
  .vehicle-card {
    margin-bottom: 1.5rem;
  }
  
  .vehicle-card .card-img-top {
    height: 180px;
  }
  
  .vehicle-card .card-body {
    padding: 1rem;
  }
  
  .vehicle-card .card-title {
    font-size: 1.2rem;
  }
  
  /* 모바일 버튼 */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
  }
  
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  /* 모바일 폼 */
  .form-control, .form-select {
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 8px;
  }
  
  .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  /* 모바일 통계 카드 */
  .stats-card {
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .stats-card .fs-1 {
    font-size: 2.5rem !important;
  }
  
  /* 모바일 터치 영역 확대 */
  .card, .btn, .form-control, .form-select {
    min-height: 44px; /* iOS 권장 터치 영역 */
  }
  
  /* 모바일 간격 조정 */
  .my-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  
  .my-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

/* ===== 공통 컴포넌트 스타일 ===== */

/* 히어로 섹션 - Toss 스타일 */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  color: var(--text-color);
  min-height: 70vh;
  border-bottom: 1px solid var(--gray-200);
}

/* 홈페이지 이미지가 없을 경우 대체 배경 */
.hero-section.no-image {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.2);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1, .hero-section .lead, .hero-section .text-muted {
  color: var(--text-color) !important;
}

/* 히어로 섹션 이미지 애니메이션 */
.hero-image {
  animation: floatAnimation 3s ease-in-out infinite;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border-color: var(--primary-color);
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* 모바일에서 애니메이션 약하게 */
@media (max-width: 767px) {
  .hero-image {
    animation: floatAnimationMobile 2s ease-in-out infinite;
    max-width: 90%;
  }
  
  .hero-image:hover {
    transform: none; /* 모바일에서 호버 효과 제거 */
  }
  
  @keyframes floatAnimationMobile {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }
}

/* 카드 스타일 */
.card {
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.vehicle-card {
  position: relative;
}

.vehicle-card .card-img-top {
  object-fit: cover;
  background-color: var(--light-color);
  transition: transform 0.3s ease;
}

.vehicle-card:hover .card-img-top {
  transform: scale(1.05);
}

/* 가격 태그 */
.price-tag {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary-color);
  background: linear-gradient(45deg, var(--primary-color), #0056b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 차량 상태 배지 */
.vehicle-status {
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vehicle-status.available {
  background: linear-gradient(45deg, var(--success-color), #28a745);
  color: white;
}

.vehicle-status.rented {
  background: linear-gradient(45deg, var(--warning-color), #ffc107);
  color: #000;
}

.vehicle-status.maintenance {
  background: linear-gradient(45deg, var(--danger-color), #dc3545);
  color: white;
}

/* 검색 필터 */
.search-filters {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
}

/* 버튼 개선 */
.btn {
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
}

/* 토스트 알림 */
.toast-container {
  z-index: 9999;
}

.toast {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border: none;
}

/* 로딩 스피너 */
.spinner-border {
  animation-duration: 0.8s;
}

/* 푸터 */
footer {
  margin-top: auto;
  background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
}

footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

footer .list-unstyled li {
  padding: 0.25rem 0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

footer .list-unstyled li:hover {
  background: rgba(13, 110, 253, 0.1);
  padding-left: 0.5rem;
}

footer a:hover {
  color: var(--primary-color) !important;
  text-decoration: underline !important;
}

footer .border-secondary {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* 모바일 푸터 최적화 */
@media (max-width: 767px) {
  footer .row > div {
    text-align: center !important;
    margin-bottom: 2rem;
  }
  
  footer h5 {
    font-size: 1.1rem;
  }
  
  footer .col-md-4:last-child {
    margin-bottom: 1rem;
  }
}

/* ===== 터치 최적화 ===== */
@media (pointer: coarse) {
  /* 터치 디바이스용 스타일 */
  .btn, .card, .form-control {
    min-height: 48px;
  }
  
  .navbar-nav .nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* 터치 피드백 */
  .btn:active, .card:active {
    transform: scale(0.98);
  }
  
  /* 스크롤 개선 */
  .container {
    -webkit-overflow-scrolling: touch;
  }
}

/* ===== 접근성 개선 ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-image {
    animation: none !important;
  }
}

/* 다크모드 대응 */
@media (prefers-color-scheme: dark) {
  .hero-section {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
  }
}

/* ===== 유틸리티 클래스 ===== */
.mobile-only {
  display: block;
}

.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
  
  .desktop-only {
    display: block;
  }
}

/* 모바일 전용 스타일 */
.mobile-card-stack .col-md-6,
.mobile-card-stack .col-lg-4 {
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .mobile-card-stack .col-md-6,
  .mobile-card-stack .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* 스와이프 제스처 힌트 */
.swipe-hint {
  position: relative;
}

.swipe-hint::after {
  content: '← 스와이프하여 더보기 →';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  display: none;
}

@media (max-width: 767px) {
  .swipe-hint::after {
    display: block;
  }
}

/* ===== Activello 추가 기능들 ===== */

/* 스크롤 투 탑 버튼 */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.scroll-to-top i {
  font-size: 1.2rem;
  line-height: 50px;
}

@media (max-width: 767px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .scroll-to-top i {
    line-height: 45px;
    font-size: 1.1rem;
  }
}

/* FlexSlider 스타일 (Activello 스타일 적용) */
.flexslider {
  margin: 0;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.flex-viewport {
  max-height: 2000px;
  transition: all 1s ease;
}

.flexslider .slides img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 50px;
  height: 50px;
  margin: -25px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
  line-height: 50px;
  text-align: center;
  font-size: 1.2rem;
}

.flex-direction-nav a.flex-prev {
  left: 20px;
}

.flex-direction-nav a.flex-next {
  right: 20px;
}

.flexslider:hover .flex-direction-nav a {
  opacity: 1;
}

.flex-direction-nav a:hover {
  opacity: 1;
  background: rgba(0,0,0,0.8);
  transform: scale(1.1);
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 20px;
  text-align: center;
  z-index: 10;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
}

.flex-control-nav li a {
  width: 12px;
  height: 12px;
  display: block;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  text-indent: -9999px;
  transition: all 0.3s ease;
}

.flex-control-nav li a:hover,
.flex-control-nav li a.flex-active {
  background: var(--primary-color);
  transform: scale(1.3);
}

/* Activello 스타일 이미지 호버 효과 */
.image-hover-effect {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.image-hover-effect img {
  transition: transform 0.3s ease;
}

.image-hover-effect:hover img {
  transform: scale(1.05);
}

.image-hover-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.image-hover-effect:hover::before {
  opacity: 1;
}

/* 블로그 스타일 카드 (Activello에서 영감) */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.blog-card .blog-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-card .blog-content {
  padding: 1.5rem;
}

.blog-card .blog-meta {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-card .blog-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card .blog-excerpt {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card .read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-card .read-more:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* 매거진 스타일 레이아웃 */
.magazine-layout .featured-post {
  margin-bottom: 3rem;
}

.magazine-layout .featured-post .blog-card {
  display: flex;
  align-items: stretch;
  min-height: 300px;
}

.magazine-layout .featured-post .blog-image {
  flex: 0 0 50%;
  height: auto;
}

.magazine-layout .featured-post .blog-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 767px) {
  .magazine-layout .featured-post .blog-card {
    flex-direction: column;
  }
  
  .magazine-layout .featured-post .blog-image {
    flex: 0 0 auto;
    height: 200px;
  }
}

/* 고급 애니메이션 효과 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-down {
  animation: fadeInDown 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* 지연 애니메이션 */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* 페이지 로딩 애니메이션 */
.page-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.page-loading.hide {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 소셜 아이콘 스타일 (Activello에서 영감) */
.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: white;
}

.social-icon.facebook:hover { background: #3b5998; }
.social-icon.twitter:hover { background: #1da1f2; }
.social-icon.instagram:hover { background: #e4405f; }
.social-icon.youtube:hover { background: #ff0000; }
.social-icon.linkedin:hover { background: #0077b5; }

/* 프로그레스 바 스타일 */
.progress-bar-custom {
  height: 8px;
  background: var(--light-color);
  border-radius: 4px;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-bar-custom .progress {
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-hover));
  border-radius: 4px;
  transition: width 1s ease;
  position: relative;
}

.progress-bar-custom .progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    45deg,
    transparent 35%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 65%
  );
  animation: progressShine 2s infinite;
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}