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

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

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;
}

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

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

p {
  margin: 0;
}

/* ========================================
   4. Header
   ======================================== */
.header {
  background: #fff;
  height: 99px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.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: 75px;
  height: 31px;
  display: block;
}

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

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

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

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

.hero-badge {
  background: rgba(68, 68, 68, 0.42);
  border: 1px solid #969696;
  border-radius: 36px;
  padding: 20px 36px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;
}

.hero-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1.44px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -1.92px;
  margin-bottom: 0;
}

/* ========================================
   6. Stats Section
   ======================================== */
.stats {
  background: #000;
  padding: 0 0 85px;
}

.stats-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 180px;
  padding-top: 150px;
}

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

.stat-number {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -1.92px;
  margin-bottom: 15px;
  line-height: 1;
}

.stat-label {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.96px;
  line-height: 1;
}

/* ========================================
   7. Services Section
   ======================================== */
.services {
  background: #fff;
  padding: 150px 0 120px;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: rgba(68, 68, 68, 0.6);
  border: 1px solid #969696;
  border-radius: 36px;
  padding: 25px 60px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.section-title {
  font-size: 64px;
  font-weight: 700;
  color: #2c2b2b;
  margin-bottom: 25px;
  line-height: 90px;
}

.section-description {
  font-size: 20px;
  color: #555353;
  line-height: 1.6;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  gap: 70px;
}

.service-card {
  background: #4b4949;
  border: 1px solid #c4c4c4;
  border-radius: 38px;
  padding: 30px;
  width: calc(100% / 3 - 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  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;
}

.service-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 90px;
}

.service-description {
  font-size: 18px;
  color: #edebeb;
  line-height: 1.8;
}

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

.brand-content {
  text-align: center;
  margin-bottom: 60px;
}

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

.brand-content .section-title {
  color: #fff;
}

.brand-content .section-description {
  color: #e8e7e7;
}

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

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

.brand-feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  border: 1px solid white;
  padding: 12px 24px;
  border-radius: 50px;
}

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

.brand-main-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 80px auto 60px;
}

.brand-main-icon img {
  width: 218px;
  height: 218px;
  object-fit: contain;
}

.brand-images {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
}

.brand-image {
  width: 218px;
  height: 218px;
  border-radius: 50%;
  object-fit: cover;
}

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

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

.safety-header .section-title {
  color: #fff;
}

.safety-header .section-description {
  color: #e8e7e7;
}

.safety-grid {
  display: flex;
  margin: 0 auto;
  padding: 0 60px;
  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: 420px;
  height: 420px;
  background: #e5e1e1;
  border-radius: 50%;
  border: 1px solid #7d7b7b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 30px;
  gap: 30px;
}

.safety-number {
  font-size: 40px;
  font-weight: 700;
  color: #555353;
  line-height: 1;
  margin-bottom: 10px;
}

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

.safety-description {
  font-size: 14px;
  color: #2c2b2b;
  line-height: 1.6;
  text-align: center;
}

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

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

.business-header .section-badge {
  background: rgba(68, 68, 68, 0.6);
}

.business-header .section-title {
  color: #fff;
}

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

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

.business-image {
  /* flex: 0 0 48%; */
  width: 780px;
  border-radius: 20px;
  overflow: hidden;
}

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

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

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

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

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

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

.business-feature-subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: white;
}

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

.business-cta {
}

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

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

/* ========================================
   11. 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 {
}

/* ========================================
   13. 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;
}

/* ========================================
   14. 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);
  color: #fff;
}

.news-header .section-title {
  color: #fff;
}

.news-header .section-description {
  color: #e8e7e7;
}

/* 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: 110px;
}

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

.news-title {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  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;
}

/* ========================================
   15. 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: 27px;
  font-weight: 700;
  padding: 3px 22px;
}

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

.vehicle-display {
}

.vehicle-image {
  width: 600px;
}

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

/* ========================================
   16. Footer
   ======================================== */
.footer {
  background: #141414;
  padding: 100px 0;
  color: #fff;
}

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

.footer-top {
}
.footer-top-line {
  margin-bottom: 30px;
  padding-bottom: 17px;
  border-bottom: 1px solid #fff;
}

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

.footer-logo {
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

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

.footer-company-box {
}

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

.footer-center {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}

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

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  margin-top: 15px;
}

.footer-right a {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

.footer-social {
  display: flex;
  gap: 20px;
  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: 24px;
  height: 24px;
  object-fit: contain;
}

/* ========================================
   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;
}
