/* ============================================
   DROP 모빌리티 - Beeline 리뉴얼 스타일시트
   1440px 기준 PC 전용 디자인
   Figma 디자인 완벽 반영
   ============================================ */

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

/* ========================================
   1.5 Splash Screen
   ======================================== */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.8s ease-out,
    visibility 0.8s ease-out;
}

.splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.splash-content {
  text-align: center;
  position: relative;
}

.splash-logo {
  width: 200px;
  height: auto;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.8);
  animation: logoFadeIn 1s ease-out forwards;
  animation-delay: 0.3s;
}

.splash-text {
  /* font-family: 'Inter', sans-serif; */
  font-size: 20px;
  font-weight: 400;
  color: #e5e5e5;
  margin: 30px 0 5px;
  opacity: 0;
  animation: textFadeIn 0.8s ease-out forwards;
  animation-delay: 0.8s;
  letter-spacing: 2px;
}

/* .splash-bar {
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  margin: 5px auto 0;
  border-radius: 2px;
  animation: barSlide 1s ease-out forwards;
  animation-delay: 1.3s;
} */

@keyframes logoFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes textFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes barSlide {
  to {
    width: 355px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    'Inter',
    'Noto Sans KR',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: #fff;
  color: #1d1d1d;
  margin: 0 auto;
  width: 100%;
  overflow-x: hidden;
}

/* PC 전용: 최소 너비 설정 */
@media (min-width: 1024px) {
  body {
    min-width: 1440px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Layout - 1440px 기준
   ======================================== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

/* ========================================
   Header
   ======================================== */
.header {
  background: transparent;
  height: 99px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.header.scrolled {
  background: #fff;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 95px;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  width: 150px;
  display: block;
}

.header-nav {
  display: flex;
  gap: 0;
}

.header-nav a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header.scrolled .header-nav a {
  color: #000;
}

.header-nav a:hover {
  color: #666;
}

/* 모바일 메뉴 버튼 & 오버레이 숨김 (PC) */
.mobile-menu-btn,
.mobile-menu-overlay {
  display: none;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  padding: 165px 0px;
  height: 931px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: contain;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 250px;
}

.hero-intro {
  font-family: 'Battambang', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 37px;
  margin-bottom: 40px;
  color: #fff;
  white-space: nowrap;
}

.hero-title {
  font-size: 55px;
  font-weight: 700;
  letter-spacing: -1.65px;
  margin-bottom: 32px;
  /* line-height: 19px; */
}

.hero-subtitle {
  font-size: 36px;
  font-weight: 500;
  line-height: 52px;
  margin-bottom: 0;
  text-align: center;
}

/* 웨이브 텍스트 효과 */
.wave-text {
  display: inline-block;
  opacity: 0;
}

.wave-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px);
  animation: waveIn 0.6s ease-out forwards;
}

@keyframes waveIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Stats/App Section
   ======================================== */
.app {
  background: #f7f8fa;
  padding: 120px 0 85px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-review {
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin-bottom: 80px;
  padding: 0 50px;
}

.stat-item {
  text-align: center;
  color: #1f1d1d;
}

.stat-number {
  font-size: 64px;
  font-weight: 800;
  line-height: 69px;
  margin-bottom: 0;
  color: #1f1d1d;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.stat-label {
  font-size: 48px;
  font-weight: 500;
  line-height: 69px;
  color: #1f1d1d;
}

/* App Swiper Container */
.app-img {
  position: relative;
  width: 100%;
  max-width: 1440px; /* 3.6개 이미지만 표시되도록 너비 제한 */
  margin: 0 auto;
  padding: 0 40px; /* 좌우 여백 조정 */
  overflow: hidden;
  height: 700px; /* 고정 높이 */
  box-sizing: border-box; /* padding 포함 */
}

.app-swiper-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  transition: transform 0.6s ease-in-out;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-image {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 30px;
}

.app-swiper-wrapper img {
  flex: 0 0 auto;
  height: 700px; /* 고정 높이 */
  width: auto; /* 비율 유지 */
  object-fit: contain; /* 비율 유지하며 전체 표시 */
}

/* ========================================
   Brand Identity Section
   ======================================== */
.brand-identity {
  background: #000;
  padding: 150px 0;
  color: #fff;
}

.brand-content {
  text-align: center;
  display: flex;
  flex-flow: nowrap column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0 90px;
}

.brand-content .section-badge {
  background: rgba(68, 68, 68, 0.6);
  border: 1px solid #969696;
  border-radius: 36px;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 35px;
}

.brand-content .section-title {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 90px;
  margin-bottom: 25px;
  text-align: justify;
}

.brand-content .section-description {
  color: #bdbdbd;
  font-size: 20px;
  line-height: 39px;
  text-align: justify;
  padding-left: 10px;
}

.brand-images {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 60px auto;
  max-width: 1200px;
}

.brand-image {
  width: 188px;
  height: 188px;
  object-fit: contain;
  margin: 0 auto;
}

.brand-features {
  display: flex;
  justify-content: space-around;
  margin: 80px auto 0;
  width: 90%;
}

.brand-feature {
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: nowrap column;
  gap: 20px;
}

.brand-feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  border: 1px solid white;
  padding: 15px 28px;
  border-radius: 50px;
  line-height: 31px;
}

.brand-feature-description {
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: 31px;
}

/* ========================================
   9. Safety Section
   ======================================== */
.safety {
  background: #fff;
  padding: 150px 0;
  color: #000;
}

.safety-header {
  text-align: center;
  margin-bottom: 100px;
}

.safety-header .section-badge {
  background: rgba(68, 68, 68, 0.6);
  border: 1px solid #969696;
  border-radius: 36px;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.safety-header .section-title {
  color: #000;
  font-size: 64px;
  font-weight: 700;
  line-height: 90px;
  margin: 35px 0 15px;
}

.safety-header .section-description {
  color: #767171;
  font-size: 32px;
  line-height: 32px;
}

.safety-grid {
  display: flex;
  margin: 0 auto;
  gap: 55px;
  padding: 0 124px;
  justify-content: center;
  align-items: center;
}

.safety-card {
  text-align: center;
  position: relative;
}

.safety-card:nth-child(1) {
  z-index: 1;
}
.safety-card:nth-child(2) {
  z-index: 2;
}
.safety-card:nth-child(3) {
  z-index: 3;
}
.safety-card:nth-child(4) {
  z-index: 4;
}

.safety-card:not(:first-child) {
  margin-left: -100px;
}

.safety-circle {
  width: 330px;
  height: 330px;
  background: #000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 50px 35px;

  border: 1px solid white;
}

.safety-number {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 15px;
}

.safety-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 10px 0;
}

.safety-description {
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
  text-align: center;
  font-weight: 400;
}

/* ========================================
   Business Solution
   ======================================== */
.business {
  background: #000;
  padding: 100px 0 150px;
  color: #fff;
}

.business-header {
  text-align: center;
  margin-bottom: 60px;
}

.business-header .section-badge {
  background: rgba(68, 68, 68, 0.6);
  border: 1px solid #969696;
  border-radius: 36px;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.business-header .section-title {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 90px;
  margin: 40px 0 15px;
}

.business-header .section-description {
  color: #e8e7e7;
  font-size: 20px;
  line-height: 29px;
}

.business-content {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  flex-flow: nowrap row;
  padding: 0 110px;
}

.business-image {
  width: 640px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.business-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.business-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: start;
  justify-content: flex-end;
}

.business-feature {
  display: flex;
  align-items: flex-start;
}

.business-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.business-feature-content {
  flex: 1;
}

.business-feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 32px;
  color: #fff;
  display: flex;
  gap: 12px;
  align-items: center;
}

.business-feature-subtitle {
  font-size: 16px;
  font-weight: 500;

  color: white;
  /* margin-bottom: 4px; */
}

.business-feature-description {
  font-size: 15px;
  color: #e8e7e7;
}

.business-cta {
  margin-top: 0;
}

.btn-business {
  background: #fff;
  color: #000;
  padding: 5px 66px;
  border-radius: 36px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  line-height: 32px;
}

.btn-business:hover {
  background: #e8e7e7;
  transform: scale(1.05);
}

/* ========================================
   Review Section (고객 리뷰)
   ======================================== */
.review {
  background: #fff;
  padding: 150px 0;
  color: #000;
}

.review-header {
  text-align: center;
  margin-bottom: 100px;
}

.review-header .section-badge {
  background: rgba(68, 68, 68, 0.6);
  border: 1px solid #969696;
  border-radius: 36px;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.review-header .section-title {
  color: #000;
  font-size: 64px;
  font-weight: 700;
  line-height: 90px;
  margin: 35px 0 15px;
}

.review-content {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  max-width: 1155px;
  margin: 0 auto;
  padding: 60px 80px;
  background: #fff;
  border-radius: 0 0 0 200px;
  box-shadow:
    0px 4px 4px 0px rgba(0, 0, 0, 0.25),
    11px 7px 14.7px 0px rgba(0, 0, 0, 0.25);
}

/* 모바일 전용 리뷰 이미지 (PC에서 숨김) */
.review-mobile-image {
  display: none;
}

/* Review Swiper Container */
.review-swiper-container {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  overflow: hidden;
  box-sizing: border-box;
}

.review-swiper-wrapper {
  display: flex;
  gap: 40px;
  transition: transform 0.6s ease-in-out;
  width: fit-content;
}

.review-slide {
  flex: 0 0 auto;
  width: 900px; /* 1.2개가 보이도록 조정 (1440px 컨테이너 기준) */
  height: auto;
}

.review-slide-image {
  width: 90%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ========================================
   Care Section (교통약자 케어)
   ======================================== */
.care {
  background: #000;
  padding: 100px;
  color: #fff;
}

.care-header {
  text-align: center;
  margin-bottom: 100px;
}

.care-header .section-title {
  color: #fff;
  font-size: 64px;
  line-height: 1.4;
  letter-spacing: -1.92px;
}

.care-grid {
  display: flex;
  margin: 0 auto;
  flex-flow: nowrap column;
}

.care-item {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 400px;
}

.care-item:nth-child(1),
.care-item:nth-child(3) {
  flex-direction: row;
}

.care-item:nth-child(2),
.care-item:nth-child(4) {
  flex-direction: row-reverse;
}

.care-image {
  flex: 0 0 45%;
  border-radius: 20px;
  overflow: hidden;
}

.care-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.care-content {
  flex: 1;
  padding: 20px;
}

.care-title {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1.08px;
  line-height: 1.9;
  text-align: left;
}

.care-item:nth-child(even) .care-title {
  text-align: right;
}

.care-title strong {
  /* font-weight: 800; */
  line-height: 1.9;
  vertical-align: top;
}

/* ========================================
   12. Premium Service
   ======================================== */
.premium {
  background: #dadada;
  padding: 120px 100px;
  display: flex;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.premium-content {
  /* margin:0 auto; */
}

.premium-badge {
  font-size: 30px;
  font-weight: 800;
  color: #1d1d1d;
  letter-spacing: -1.44px;
  margin-bottom: 30px;
  line-height: 1.1;
}

.premium-title {
  font-size: 36px;
  font-weight: 500;
  color: #1d1d1d;
  letter-spacing: -1.08px;
  line-height: 1.5;
  margin-bottom: 60px;
}

.premium-apps {
  display: flex;
  gap: 30px;
  justify-content: flex-start;
}

.app-link img {
  flex: 0 0 220px;
  /* background: #fff; */
  border-radius: 6px;
  overflow: hidden;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  transition:
    transform 0.8s ease,
    box-shadow 0.8s ease;
  object-fit: contain;
}

.app-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.app-link img {
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
  background: #fff;
  padding: 150px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 100px;
}

.faq-header .section-badge {
  background: rgba(68, 68, 68, 0.6);
  color: #fff;
}

.faq-header .section-title {
  color: #2c2b2b;
}

.faq-list {
  max-width: 1155px;
  margin: 0 auto;
  padding: 0 50px;
}

.faq-wrapper {
  margin-bottom: 40px;
}

.faq-question-box {
  background: #e8e7e7;
  border-radius: 24px;
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question-box:hover {
  background: #f0f0f0;
}

.faq-question-box h3 {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.faq-icon {
  font-size: 40px;
  font-weight: 300;
  color: #555353;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    margin-top 0.4s ease;
  margin-top: 0;
}

.faq-wrapper.faq-open .faq-answer {
  max-height: 600px;
  margin-top: 20px;
}

.faq-answer-box {
  background: #555353;
  border-radius: 20px;
  padding: 40px 50px;
}

.faq-answer-box p {
  font-size: 24px;
  color: #fff;
  line-height: 1.8;
  margin: 0;
}

/* ========================================
   News Section
   ======================================== */
.news {
  background: #000;
  padding: 150px 0;
  color: #fff;
}

.news-header {
  text-align: center;
  margin-bottom: 65px;
}

.news-header .section-badge {
  background: rgba(68, 68, 68, 0.42);
  border: 1px solid #969696;
  border-radius: 36px;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.news-header .section-title {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 90px;
  margin: 35px 0 15px;
}

.news-header .section-description {
  color: #e8e7e7;
  font-size: 20px;
  line-height: 29px;
}

/* News Swiper Wrapper */
.news-swiper-wrapper {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 101px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.news-swiper-container {
  overflow: hidden;
  flex: 1;
  max-width: 1056px;
}

.news-grid {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
  justify-content: flex-start;
}

.news-grid .news-card {
  flex: 0 0 332px;
  width: 332px;
}

.news-card {
  background: transparent;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.news-card:hover {
  transform: translateY(-10px);
  transition: all 0.7s;
}

.news-image {
  width: 100%;
  height: 298px;
  object-fit: cover;
  margin-bottom: 0;
}

.news-content {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px;
  min-height: 99px;
}

.news-date {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-align: center;
  line-height: 30px;
  margin-bottom: 5px;
}

.news-title {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  color: #000;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
}

/* News Swiper Buttons */
.news-swiper-btn {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 36px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.news-swiper-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.news-swiper-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.news-swiper-btn:disabled:hover {
  transform: none;
}

/* News Pagination */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
}

.news-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-pagination-bullet.active {
  background: #fff;
  width: 14px;
  height: 14px;
}

.news-pagination-bullet:hover {
  background: #bbb;
}

/* ========================================
   Vehicle Lineup
   ======================================== */
.vehicle {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.vehicle .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: nowrap row;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
}

.vehicle-title-box {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.vehicle-header {
  margin-bottom: 80px;
}

.vehicle-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  letter-spacing: -1.44px;
  line-height: 90px;
}

.vehicle-badge {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  font-size: 32px;
  font-weight: 700;
  padding: 1px 30px;
}

.vehicle-description {
  font-size: 24px;
  color: #000;
  letter-spacing: -0.72px;
  line-height: 41px;
}

.vehicle-display {
}

.vehicle-image {
  width: 680px;
  flex-shrink: 0;
}

.vehicle-image img {
  width: 100%;
  height: auto;
}

.vehicle-image video {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Floating App Download Bar
   ======================================== */
.floating-app-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 999;
  display: none; /* 초기에는 숨김, JS로 스크롤 시 표시 */
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.floating-app-bar.visible {
  display: block;
}

.floating-app-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 120px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.floating-app-logo-wrapper {
  flex-shrink: 0;
}

.floating-app-logo {
  width: 120px;
  height: auto;
  display: block;
}

.floating-app-text {
  font-size: 27px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  flex: 1;
}

.floating-app-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.floating-app-btn {
  transition: transform 0.3s ease;

  background: white;
  width: 167px;
  height: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
}
.floating-app-btn:hover {
  background-color: #e4e4e4;
}

.floating-app-btn img {
  height: auto;
  width: 79%;
  display: block;
  object-fit: contain;
}
.floating-app-btn:nth-of-type(2) img {
  width: 62%;
  margin-bottom: 4px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: #403e3e;
  padding: 65px 0 180px;
  color: #fff;
}

.footer-container {
  padding: 0 78px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
}

.footer-top-line {
  margin-bottom: 50px;
  border-bottom: 1px solid white;
  padding-bottom: 50px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo {
  width: 196px;
  height: 40px;
  object-fit: contain;
}

.footer-top-contents {
  display: flex;
  flex-flow: nowrap row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 60px;
}

.footer-company-box {
  flex: 1;
}

.footer-company-box p {
  font-size: 20px;
  line-height: 42px;
  letter-spacing: -0.6px;
  margin: 0;
  color: #fff;
}

.footer-center {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.footer-center p {
  font-size: 20px;
  line-height: 42px;
  letter-spacing: -0.6px;
  margin: 0;
  color: #fff;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  flex: 1;
}

.footer-right a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  line-height: 42px;
  letter-spacing: -0.6px;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #ccc;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.footer-copyright {
  font-size: 24px;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: -0.72px;
  margin: 0;
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 17px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-info p {
  font-size: 20px;
  line-height: 42px;
  letter-spacing: -0.6px;
  margin: 0;
  color: #fff;
}

/* ========================================
   17. Animations - Scroll Reveal
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay='100'] {
  transition-delay: 0.05s;
}

.reveal[data-delay='200'] {
  transition-delay: 0.1s;
}

.reveal[data-delay='300'] {
  transition-delay: 0.15s;
}

.reveal[data-delay='400'] {
  transition-delay: 0.2s;
}

.reveal-slide-left {
  opacity: 0;
  transform: translateX(100%);
  transition:
    opacity 1s cubic-bezier(0.5, 0, 0.1, 1),
    transform 5s cubic-bezier(0.5, 0, 0.1, 1);
}

.reveal-slide-left.active {
  opacity: 1;
  transform: translateX(0);
}

.premium-car {
  overflow: hidden;

  width: 1000px;
  position: absolute;
  right: -18%;
  top: -10px;
}

.premium-car img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   18. Smooth Scrolling & Misc
   ======================================== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: rgb(176, 176, 176);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
