@charset "utf-8";

/* ONE Mobile 폰트 정의 */
@font-face {
  font-family: "ONE Mobile";
  src: url("../../font/ONE Mobile OTF Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "ONE Mobile";
  src: url("../../font/ONE Mobile OTF Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "ONE Mobile";
  src: url("../../font/ONE Mobile OTF Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

/* 전역 폰트 적용 */
body {
  font-family: "ONE Mobile", "Noto Sans KR", sans-serif !important;
}

/* 로고 텍스트 스타일 */
.logo-text {
  font-family: "ONE Mobile", "Noto Sans KR", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2563eb;
}

/* 블루 계열 테마 적용 */
:root {
  --primary-blue: #2563eb;
  --primary-blue-dark: #1d4ed8;
  --primary-blue-light: #3b82f6;
  --secondary-blue: #dbeafe;
  --accent-blue: #1e40af;
  --light-blue: #eff6ff;
  --medium-blue: #93c5fd;
  --dark-blue: #1e3a8a;
  --blue-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
}

/* 버튼 색상 변경 */
.btnset-primary {
  background: var(--blue-gradient) !important;
  border: 1px solid var(--primary-blue) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
  transition: all 0.3s ease !important;
}

.btnset-primary:hover {
  background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--accent-blue) 100%) !important;
  border-color: var(--primary-blue-dark) !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
  transform: translateY(-2px) !important;
}

/* 헤딩 폰트 가중치 조정 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700 !important;
}

/* 네비게이션 링크 폰트 가중치 */
.nav-link,
.fullmenu-gnblink {
  font-weight: 600 !important;
}

/* 그림자 제거 (플랫 디자인) */
.btnset,
.cardset,
.service-card,
.car-card {
  box-shadow: none !important;
}

/* 히어로 섹션 스타일 */
.hero-inquiry {
  background-image: url("../images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 0rem 0 0rem 0;
  min-height: 80vh !important;
  position: relative;
  display: flex !important;
  align-items: center !important;
}

.hero-inquiry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(30 64 175 / 58%), rgb(59 130 246 / 31%));
  z-index: 1;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-form {
  /* margin-left: auto; */
}

.hero-text {
  text-align: left;
}

.hero-title {
  color: white !important;
  font-weight: 900 !important;
  font-size: 5.8rem !important;
  line-height: 1.4 !important;
  display: block !important;
  position: relative !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* 3D 효과 제거됨 */

/* 3D 애니메이션 제거됨 */

/* 모든 애니메이션 강제 제거 */
.hero-title,
.hero-title *,
.hero-title::before,
.hero-title::after {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-feature i {
  color: #fbbf24;
  font-size: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 폼 스타일 */
.hero-form {
  background: white;
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
  border: 1px solid var(--secondary-blue);
  aspect-ratio: 1 / 1.414 !important;
  max-width: 400px !important;
  width: 98.5vw !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: auto !important;
  position: relative;
  z-index: 2;
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.form-header p {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.5;
}

.inquiry-form .form-tit {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.8rem;
}

.inquiry-form .inputset-input,
.inquiry-form .inputset-textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid var(--secondary-blue);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  height: 5.25rem;
  box-sizing: border-box;
  margin-bottom: 1.5rem;
}

.inquiry-form .inputset-textarea {
  height: 7.5rem;
  resize: vertical;
}

.inquiry-form .inputset-input:focus,
.inquiry-form .inputset-textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.inquiry-form .inputset-input::placeholder,
.inquiry-form .inputset-textarea::placeholder {
  color: #9ca3af;
}

.checkset-label {
  font-size: 1rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  /* margin: 1.5rem 0;
  padding: 0.5rem 0; */
}

.btnset-block {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 2rem;
  height: 5.25rem;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem !important;
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-feature {
    font-size: 1rem;
  }

  .form-header h3 {
    font-size: 1.5rem;
  }

  .inquiry-form .form-tit {
    font-size: 1rem;
  }

  .inquiry-form .inputset-input,
  .inquiry-form .inputset-textarea {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  .btnset-block {
    font-size: 1rem;
    padding: 0.8rem;
  }
}

/* 필드 에러 메시지 스타일 */
.field-error {
  font-size: 1.5rem !important;
}

/* loan-N5 섹션 제목 폰트 크기 */
.loan-N5 .title-area .h2 {
  font-size: 4.5rem !important;
  line-height: 1.3 !important;
}

/* 플로팅 폼 스타일 */
.floating-form {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.floating-form.show {
  transform: translateY(0);
  opacity: 1;
}

.floating-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--blue-gradient);
  color: white;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.floating-form-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.floating-form-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.floating-form-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.floating-form-content {
  padding: 20px;
}

.floating-input-group {
  margin-bottom: 16px;
}

.floating-input-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.floating-input-group input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.floating-submit-btn {
  width: 100%;
  padding: 12px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.floating-submit-btn:hover {
  background: var(--primary-blue-dark);
}

.floating-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--blue-gradient);
  color: white;
  padding: 16px 20px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
}

.floating-toggle:hover {
  background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--accent-blue) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.floating-toggle.hide {
  opacity: 0;
  pointer-events: none;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .floating-form {
    width: calc(100vw - 40px);
    right: 20px;
    left: 20px;
    bottom: 80px;
  }

  .floating-toggle {
    bottom: 20px;
    right: 20px;
    padding: 14px 18px;
    font-size: 0.85rem;
  }
}

/* 프로모션 말풍선 스타일 */
.promotion-bubble {
  position: relative;
  background: var(--blue-gradient);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  animation: pulse 2s infinite;
  text-align: center;
}

.bubble-content {
  position: relative;
  z-index: 2;
}

.bubble-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  display: block;
}

.bubble-arrow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--accent-blue);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  }
}

/* 인기수출차량 카드 스타일 */
.luckyshop-N5 .cardset {
  border-radius: 2rem !important;
  overflow: hidden !important;
  background: white !important;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1) !important;
  border: 1px solid var(--secondary-blue) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.luckyshop-N5 .cardset:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 15px rgba(37, 99, 235, 0.2) !important;
  border-color: var(--primary-blue) !important;
}

.luckyshop-N5 .cardset-figure {
  position: relative !important;
  overflow: hidden !important;
}

.luckyshop-N5 .cardset-figure img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.luckyshop-N5 .cardset:hover .cardset-figure img {
  transform: scale(1.05) !important;
}

/* 국가 배지 */
.country-badge {
  position: absolute !important;
  top: 1rem !important;
  left: 1rem !important;
  background: var(--blue-gradient) !important;
  color: white !important;
  padding: 0.5rem 1rem !important;
  border-radius: 2rem !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
}

.country-badge i {
  display: none !important;
}

/* 차량 모델 행 */
.car-model-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 1rem !important;
}

.car-model {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  line-height: 1.2 !important;
  min-height: 2.2em !important;
  display: flex !important;
  align-items: center !important;
}

.car-year {
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  background: #f3f4f6 !important;
  padding: 0.3rem 0.8rem !important;
  border-radius: 1rem !important;
}

/* 가격 행 */
.price-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 0.8rem !important;
}

.price-label {
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  color: #374151 !important;
}

.price-value {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
}

.export-price-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 1.5rem !important;
}

.export-price {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: var(--primary-blue) !important;
}

/* 상태 바 */
.status-bar {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: var(--blue-gradient) !important;
  color: white !important;
  padding: 1rem !important;
  border-radius: 0.5rem !important;
  margin-top: 1rem !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
}

.status-text {
  font-size: 2rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.status-arrow {
  font-size: 1.2rem !important;
}

.status-bar i {
  display: none !important;
}

/* 카드 본문 패딩 */
.luckyshop-N5 .cardset-body {
  padding: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* PC 스타일 */
@media (min-width: 769px) {
  .luckyshop-N5 .cardset {
    aspect-ratio: 9/16 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .luckyshop-N5 .cardset-figure {
    flex: 2 !important;
    flex-shrink: 0 !important;
    min-height: 200px !important;
  }

  .luckyshop-N5 .cardset-body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .car-model {
    white-space: nowrap !important;
    line-height: 1.2 !important;
    min-height: 2.2em !important;
    display: flex !important;
    align-items: center !important;
  }

  .status-text {
    white-space: nowrap !important;
  }
}

/* 모바일 스타일 */
@media (max-width: 768px) {
  .luckyshop-N5 .content-swiper-wrap .swiper-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
    transform: none !important;
  }

  .luckyshop-N5 .swiper-slide {
    width: 100% !important;
  }

  .luckyshop-N5 .swiper {
    overflow: visible !important;
  }

  .luckyshop-N5 .swiper-button-prev,
  .luckyshop-N5 .swiper-button-next,
  .luckyshop-N5 .swiper-pagination {
    display: none !important;
  }

  .luckyshop-N5 .cardset-figure {
    height: 120px !important;
    flex-shrink: 0 !important;
  }

  .luckyshop-N5 .cardset-body {
    min-height: 180px !important;
    flex: 1 !important;
  }

  .luckyshop-N5 .cardset-figure,
  .luckyshop-N5 .cardset-figure img {
    border-radius: 0 !important;
  }

  .car-model {
    font-size: 1.4rem !important;
    min-height: 2.4em !important;
    text-align: center !important;
    line-height: 1.2 !important;
    white-space: normal !important;
  }

  .status-text {
    text-align: center !important;
    line-height: 1.2 !important;
    white-space: normal !important;
  }
}

/* 후기 별점 스타일 */
.review-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 1rem !important;
}

.star-rating {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.stars {
  color: #fbbf24 !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.rating-score {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--primary-blue) !important;
  background: var(--light-blue) !important;
  padding: 0.2rem 0.6rem !important;
  border-radius: 0.5rem !important;
  min-width: 2.5rem !important;
  text-align: center !important;
  border: 1px solid var(--secondary-blue) !important;
}

/* 모바일에서 별점 스타일 조정 */
@media (max-width: 768px) {
  .review-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }

  .star-rating {
    align-self: flex-end !important;
  }

  .stars {
    font-size: 1rem !important;
  }

  .rating-score {
    font-size: 0.9rem !important;
    padding: 0.1rem 0.4rem !important;
  }
}

/* 추가 블루 계열 스타일 */
.section-title {
  color: #1f2937 !important;
}

.badge {
  background: var(--light-blue) !important;
  color: var(--primary-blue) !important;
  border: 1px solid var(--secondary-blue) !important;
}

.badge-line {
  background: transparent !important;
  color: var(--primary-blue) !important;
  border: 1px solid var(--primary-blue) !important;
}

/* 헤더 네비게이션 블루 계열 */
.header-gnblink:hover {
  color: var(--primary-blue) !important;
}

.header-gnblink.active {
  color: var(--primary-blue) !important;
}

/* 폼 라벨 블루 계열 */
.form-tit {
  color: var(--primary-blue) !important;
  font-weight: 600 !important;
}

/* 체크박스 스타일 */
.checkset-input:checked + .checkset-label::before {
  background: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
}

/* 링크 색상 */
a {
  color: #374151 !important;
}

a:hover {
  color: var(--primary-blue-dark) !important;
}

/* 스와이퍼 버튼 블루 계열 */
.swiper-btn button {
  background: var(--light-blue) !important;
  border: 1px solid var(--secondary-blue) !important;
  color: var(--primary-blue) !important;
}

.swiper-btn button:hover {
  background: var(--primary-blue) !important;
  color: white !important;
}

/* Loan-N5 section title styles */
.loan-N5 .title-main {
  color: #374151;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.3;
  display: block;
  margin-bottom: 0.5rem;
}

.loan-N5 .title-sub {
  color: var(--medium-blue);
  font-weight: bold;
  font-size: 5.8rem;
  line-height: 1.4;
  display: block;
  background: linear-gradient(135deg, #1e40af, var(--medium-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 모바일에서 loan-N5 제목 스타일 조정 */
@media (max-width: 768px) {
  .loan-N5 .title-main {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .loan-N5 .title-sub {
    font-size: 4rem;
    line-height: 1.3;
  }
  .temhatutor-N8 .title-main {
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 0.5rem;
  }
}

/* temhatutor-N8 섹션 독립 h2 제목 스타일 */
.temhatutor-N8 .h2.section-title {
  font-family: var(--ff-ko1);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  letter-spacing: var(--letter-spacing-h2);
  text-align: center;
}

.temhatutor-N8 .desc-area .textset-tit.h3 {
  color: var(--medium-blue);
  font-weight: bold;
  font-size: 4rem !important;
  line-height: 1.4;
  display: block;
  background: linear-gradient(135deg, #1e40af, var(--medium-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 모바일에서 temhatutor-N8 제목 폰트 사이즈 조정 */
@media (max-width: 768px) {
  .temhatutor-N8 .h2.section-title {
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
    margin-bottom: 2rem !important;
  }

  .temhatutor-N8 .desc-area .textset-tit.h3 {
    font-size: 3.4rem !important;
    line-height: 1.3 !important;
  }

  /* temhatutor-N8 desc-wrap 세로 가운데 정렬 */
  .temhatutor-N8 .desc-wrap {
    display: flex;
    align-items: center;
    height: 100%;
  }
}

/* cardset-desc 호버 효과 제거 */
.cardset-desc:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
  background: inherit !important;
  color: inherit !important;
}

.cardset:hover .cardset-desc {
  transform: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
  background: inherit !important;
  color: inherit !important;
}

/* swiper-slide cardset 호버 효과 제거 */
.swiper-slide.cardset:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
  background: inherit !important;
}

.swiper-slide.cardset.swiper-slide-active:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
  background: inherit !important;
}

/* swiper-slide 내부 a 태그 호버 효과 제거 (색상과 포인터는 유지) */
.swiper-slide.cardset a:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
  background: inherit !important;
  text-decoration: none !important;
  /* color와 cursor는 유지 */
}

.swiper-slide.cardset.swiper-slide-active a:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
  background: inherit !important;
  text-decoration: none !important;
  /* color와 cursor는 유지 */
}

/* rentalcar-N3 플로팅 폼 스타일 - 플로팅 애니메이션 */
.rentalcar-N3 {
  position: fixed;
  bottom: 2.4rem;
  right: 2.4rem;
  z-index: 50;
  pointer-events: none;
  animation: float 3s ease-in-out infinite;
}

/* 폼이 활성화되면 플로팅 애니메이션 정지 */
.rentalcar-N3.form-active {
  animation: none;
}

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

.rentalcar-N3 .contents-container {
  padding: 0;
}

.rentalcar-N3 .quick-wrap {
  pointer-events: auto;
  overflow: visible;
}

.rentalcar-N3 .quick-item {
  position: relative;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  pointer-events: auto;
  z-index: 5;
}

/* .rentalcar-N3 .quick-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
} */

.rentalcar-N3 .quick-item:hover::before {
  left: 100%;
}

.rentalcar-N3 .quick-item + .quick-item {
  margin-top: 1.2rem;
}

.rentalcar-N3 .quick-item .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
  border: none;
  border-radius: 1.5rem;
  font-size: 2.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
}

.rentalcar-N3 .quick-item .btn svg {
  width: 3rem;
  height: 3rem;
  transition: all 0.3s ease;
}

.rentalcar-N3 .quick-item .btn .btn-text {
  display: none; /* 데스크톱에서는 숨김 */
}

.rentalcar-N3 .quick-item .btn:hover svg {
  transform: scale(1.1);
}

/* 문의하기 버튼 특별 효과 */
.rentalcar-N3 .btn-contact:hover svg {
  animation: pulse 1.5s ease-in-out infinite;
}

/* TOP 버튼 특별 효과 */
.rentalcar-N3 .btn-top:hover svg {
  animation: bounce 1s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.3);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) scale(1.1);
  }
  50% {
    transform: translateY(-3px) scale(1.1);
  }
}
html body div.floating-modal {
  display: block;
}

/* PC에서 플로팅 모달 스타일 */
@media (min-width: 769px) {
  html body div.floating-modal {
    position: fixed !important;
    top: 50% !important;
    right: 2.4rem !important;
    z-index: 9999 !important;
    pointer-events: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-50%) translateX(100%) !important;
    transition: all 0.3s ease !important;
    display: block !important;
  }

  html body div.floating-modal:not(.active) {
    display: block !important;
  }

  html body div.floating-modal.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(-50%) translateX(0) !important;
    pointer-events: auto !important;
    display: block !important;
    position: fixed !important;
    top: 50% !important;
    right: 2.4rem !important;
    z-index: 9999 !important;
  }

  html body div.floating-modal .quick-form {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
    border-radius: 1.5rem 1.5rem 1.5rem 1.5rem !important;
    padding: 2rem !important;
    box-shadow: rgb(0 0 0 / 61%) 0px 8px 32px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    width: 48rem !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
    position: relative !important;
  }

  html body div.floating-modal .btn-close {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    width: 3rem !important;
    height: 3rem !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #6b7280 !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 10001 !important;
  }

  html body div.floating-modal .btn-close:hover {
    background: white !important;
    transform: rotate(90deg) !important;
  }
}

/* 모바일에서 플로팅 버튼과 폼 분리 */
@media (max-width: 768px) {
  .rentalcar-N3 {
    position: fixed;
    bottom: 2.4rem;
    right: 2.4rem;
    z-index: 50;
    pointer-events: none;
    animation: float 3s ease-in-out infinite;
  }

  /* 플로팅 모달 기본 스타일 - PC용 - 최강 선택자 */
  html body div.floating-modal {
    position: fixed !important;
    top: 50% !important;
    right: 2.4rem !important;
    z-index: 9999 !important;
    pointer-events: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-50%) translateX(100%) !important;
    transition: all 0.3s ease !important;
    display: block !important;
  }

  /* 모달이 숨겨진 상태에서도 공간을 차지하지 않도록 */
  html body div.floating-modal:not(.active) {
    display: block !important;
  }

  html body div.floating-modal.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(-50%) translateX(0) !important;
    pointer-events: auto !important;
    display: block !important;
    position: fixed !important;
    top: 50% !important;
    right: 2.4rem !important;
    z-index: 9999 !important;
  }

  html body div.floating-modal .quick-form {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
    border-radius: 1.5rem 1.5rem 0 0 !important;
    padding: 2rem !important;
    box-shadow: rgb(0 0 0 / 61%) 0px 8px 32px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    width: 48rem !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
    position: relative !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  html body div.floating-modal .contact-header {
    position: fixed !important;
    bottom: 10rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    border-radius: 1.5rem 1.5rem 1.5rem 1.5rem !important;
    padding: 1.5rem !important;
    margin: 0 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 40rem !important;
    box-sizing: border-box !important;
    z-index: 10001 !important;
  }

  html body div.floating-modal .contact-header a {
    color: #ffffff !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    text-align: center !important;
    margin: 0 !important;
  }

  html body div.floating-modal .btn-close {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    width: 3rem !important;
    height: 3rem !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #6b7280 !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
  }

  html body div.floating-modal .btn-close:hover {
    background: white !important;
    transform: rotate(90deg) !important;
  }

  /* 모바일에서만 전체화면 모달 */
  @media (max-width: 768px) {
    html body div.floating-modal {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      width: 100% !important;
      height: 100vh !important;
      background: rgba(0, 0, 0, 0.7) !important;
      backdrop-filter: blur(10px) !important;
      z-index: 10000 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      padding: 1rem !important;
      transform: none !important;
    }

    html body div.floating-modal .quick-form {
      width: 100% !important;
      max-width: 40rem !important;
      background: white !important;
      border-radius: 1.5rem 1.5rem 1.5rem 1.5rem !important;
      padding: 2rem !important;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
      transform: scale(0.95) !important;
      transition: all 0.3s ease !important;
      top: 32%;
      position: relative !important;
      margin-bottom: 0 !important;
    }

    html body div.floating-modal.active .quick-form {
      transform: scale(1) !important;
    }

    html body div.floating-modal .contact-header {
      position: fixed !important;
      bottom: 5rem !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
      border-radius: 1.5rem 1.5rem 1.5rem 1.5rem !important;
      padding: 1.5rem !important;
      margin: 0 !important;
      text-align: center !important;
      width: 100% !important;
      max-width: 40rem !important;
      box-sizing: border-box !important;
      z-index: 10001 !important;
    }
  }

  /* 3등분 연락처 입력 필드 스타일 - 강력한 선택자로 강제 적용 */
  .phone-input-group {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    /* margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important; */
    flex-wrap: nowrap !important;
    flex-direction: row !important;
  }

  /* 모든 phone-input 클래스에 강제 적용 */
  input.phone-input,
  .phone-input,
  .phone-input-group input,
  .phone-input-group .phone-input {
    flex: 1 !important;
    min-width: 0 !important;
    max-width: calc(32% - 0.5rem) !important;
    width: auto !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid var(--secondary-blue); !important;
    border-radius: 0.5rem !important;
    padding: 1.2rem 1.5rem !important;
    font-size: 1.4rem !important;
    transition: all 0.3s ease !important;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important; */
    height: 5.25rem !important;
    box-sizing: border-box !important;
    text-align: center !important;
    color: #1f2937 !important;
    margin: 0 !important;
    font-family: inherit !important;
    line-height: 1.5 !important;
    display: inline-block !important;
  }

  input.phone-input:focus,
  .phone-input:focus,
  .phone-input-group input:focus,
  .phone-input-group .phone-input:focus {
    outline: none !important;
    border-color: #2563eb !important;
    background: white !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
  }

  input.phone-input::placeholder,
  .phone-input::placeholder,
  .phone-input-group input::placeholder,
  .phone-input-group .phone-input::placeholder {
    color: #9ca3af !important;
  }

  .phone-separator {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #6b7280 !important;
    user-select: none !important;
    flex-shrink: 0 !important;
  }

  /* 모바일용 연락처 입력 필드 스타일 */
  @media (max-width: 768px) {
    input.phone-input,
    .phone-input,
    .phone-input-group input,
    .phone-input-group .phone-input {
      height: 6rem !important;
      padding: 0.8rem !important;
      font-size: 2rem !important;
    }

    .phone-separator {
      font-size: 2rem !important;
    }
  }

  .rentalcar-N3 .contents-container {
    padding: 0;
  }

  .rentalcar-N3 .quick-wrap {
    pointer-events: auto;
    overflow: visible;
  }

  .rentalcar-N3 .quick {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .rentalcar-N3 .quick-item {
    position: relative;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    pointer-events: auto;
    z-index: 5;
  }

  .rentalcar-N3 .quick-item + .quick-item {
    margin-top: 1.2rem;
  }

  .rentalcar-N3 .quick-item .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    border: none;
    border-radius: 2rem;
    font-size: 2.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
  }

  .rentalcar-N3 .quick-item .btn svg {
    width: 2.4rem;
    height: 2.4rem;
    transition: all 0.3s ease;
  }

  .rentalcar-N3 .quick-item .btn .btn-text {
    display: none; /* 모바일에서도 텍스트 숨김 */
  }

  .rentalcar-N3 .quick-contact {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999 !important;
    pointer-events: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .rentalcar-N3 .quick-contact.active {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
  }

  .rentalcar-N3 .quick-contact .contact-header {
    display: none;
  }

  /* 모바일에서 폼이 제대로 보이도록 강제 설정 */
  .rentalcar-N3 .quick-contact.active .quick-form {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .rentalcar-N3 .quick-form {
    width: 100%;
    max-width: 32rem;
    margin: 0;
    padding: 2rem;
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: scale(0.95);
    transition: all 0.3s ease;
  }

  .rentalcar-N3 .quick-contact.active .quick-form {
    transform: scale(1);
  }

  .rentalcar-N3 .quick-form .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: none;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .rentalcar-N3 .quick-form .btn-close:active {
    background: #e5e7eb;
    transform: scale(0.95);
  }

  /* 모바일 폼 내부 스타일 */
  .rentalcar-N3 .quick-form .form-tit {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
  }

  .rentalcar-N3 .quick-form .form-tit span {
    color: #ef4444;
  }

  .rentalcar-N3 .quick-form .inputset-input {
    width: 100%;
    height: 3rem;
    padding: 0 1rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    background: #ffffff;
    transition: all 0.3s ease;
  }

  .rentalcar-N3 .quick-form .inputset-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
    outline: none;
  }

  .rentalcar-N3 .quick-form .form-box + .form-box {
    margin-top: 1.2rem;
  }

  .rentalcar-N3 .quick-form .contents-agree {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
  }

  .rentalcar-N3 .quick-form .checkset-label {
    font-size: 0.85rem;
    color: #374151;
  }

  .rentalcar-N3 .quick-form .btnset-link {
    font-size: 0.85rem;
    color: #2563eb;
    text-decoration: underline;
  }

  .rentalcar-N3 .quick-form .form-btn .btnset {
    width: 100%;
    height: 3.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 1rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
  }

  .rentalcar-N3 .quick-form .form-btn .btnset:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
  }
}

.rentalcar-N3 .quick-item .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.rentalcar-N3 .quick-item .btn:hover::before {
  width: 100%;
  height: 100%;
}

.rentalcar-N3 .quick-item .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 50%, #1e3a8a 100%);
}

/* 데스크톱용 quick-contact 스타일 */
@media (min-width: 769px) {
  .rentalcar-N3 .quick-contact {
    position: absolute;
    right: 8.5rem;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    min-width: 45rem;
    transform: translateX(20px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: none;
    z-index: 20;
    pointer-events: auto;
  }
}

/* 데스크톱용 active 스타일 */
@media (min-width: 769px) {
  .rentalcar-N3 .quick-contact.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    animation: slideInBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
}

@keyframes slideInBounce {
  0% {
    transform: translateX(30px) scale(0.8);
    opacity: 0;
  }
  50% {
    transform: translateX(-5px) scale(1.02);
    opacity: 0.8;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

.rentalcar-N3 .contact-header {
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 25;
}

.rentalcar-N3 .contact-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
}

.rentalcar-N3 .contact-header a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2.2rem;
  font-weight: 700;
  color: #1e40af;
  transition: all 0.3s ease;
}

.rentalcar-N3 .contact-header a:hover {
  color: #1d4ed8;
  transform: scale(1.02);
}

.rentalcar-N3 .contact-header a::before {
  font-size: 3rem;
  transition: all 0.3s ease;
}

.rentalcar-N3 .contact-header a:hover::before {
  transform: rotate(5deg) scale(1.1);
}

.rentalcar-N3 .quick-form {
  margin-top: 1rem;
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  box-shadow: 0 8px 32px #747474;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 25;
}

.rentalcar-N3 .quick-form .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.8rem;
  color: #6b7280;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rentalcar-N3 .quick-form .btn-close:hover {
  background: #ef4444;
  color: white;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.rentalcar-N3 .quick-form form {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}

.rentalcar-N3 .form-box + .form-box {
  margin-top: 1.2rem;
}

.rentalcar-N3 .quick-form .inputset,
.rentalcar-N3 .quick-form .selectset {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.rentalcar-N3 .quick-form .form-tit {
  flex: 1 0 6.6rem;
  margin: 0;
  max-width: 6.6rem;
  font-weight: 600;
  color: #374151;
  transition: all 0.3s ease;
}

.rentalcar-N3 .quick-form .form-tit span {
  color: #ef4444;
  font-weight: 700;
}

.rentalcar-N3 .quick-form .inputset-input {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(37, 99, 235, 0.1);
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.rentalcar-N3 .quick-form .inputset-input:focus {
  outline: none;
  border-color: #2563eb;
  background: white;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
  transform: translateY(-1px);
}

.rentalcar-N3 .quick-form .inputset-input::placeholder {
  color: #9ca3af;
  transition: all 0.3s ease;
}

.rentalcar-N3 .quick-form .inputset-input:focus::placeholder {
  color: #d1d5db;
  transform: translateY(-2px);
}

.rentalcar-N3 .quick-form .radio-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.rentalcar-N3 .radioset.radioset-thumb .radioset-label {
  font-weight: var(--fw-medium);
}

.rentalcar-N3 .selectset .selectset-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
}

.rentalcar-N3 .selectset .selectset-arrow::after {
  right: 2.6rem;
}

.rentalcar-N3 .quick-form .contents-agree {
  display: flex;
  margin: 0;
}

.rentalcar-N3 .quick-form .contents-agree .wrap {
  display: flex;
  align-items: center;
}

.rentalcar-N3 .checkset .checkset-label::before {
  width: 2.4rem;
  height: 2.4rem;
}

.rentalcar-N3 .checkset .checkset-label::after {
  font-size: 2.4rem;
}

.rentalcar-N3 .form-btn {
  margin-top: 2rem;
  text-align: center;
}

.rentalcar-N3 .form-btn .btnset {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
  border: none;
  border-radius: 1.2rem;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

.rentalcar-N3 .form-btn .btnset::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;
}

.rentalcar-N3 .form-btn .btnset:hover::before {
  left: 100%;
}

.rentalcar-N3 .form-btn .btnset:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 50%, #1e3a8a 100%);
}

.rentalcar-N3 .info-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem;
  border-bottom: 1px solid #e5e5e5;
}

.rentalcar-N3 .info-title h3 {
  font-size: var(--fs-h4);
}

.rentalcar-N3 .modal-close {
  cursor: pointer;
}

.rentalcar-N3 .info-area {
  overflow-y: auto;
}

.rentalcar-N3 .info-group + .info-group {
  margin-top: 2.4rem;
}

.rentalcar-N3 .info-group strong {
  display: block;
  padding-bottom: 1.2rem;
  font-size: var(--fs-h5);
}

.rentalcar-N3 .info-desc {
  overflow-y: auto;
  padding: 1.6rem;
  max-height: 20.7rem;
  background: #f8f8fa;
  border-radius: 1.6rem;
}

.rentalcar-N3 .info-desc::-webkit-scrollbar {
  width: 6px;
}

.rentalcar-N3 .info-desc::-webkit-scrollbar-track {
  background-color: #ddd;
}

.rentalcar-N3 .info-desc::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 3px;
}

.rentalcar-N3 .info-desc p {
  font-size: var(--fs-p1);
}

.rentalcar-N3 .info-desc p.fw-medium {
  font-weight: var(--fw-medium);
}

.rentalcar-N3 .info-desc .mtb {
  margin: 2.4rem 0;
}

.rentalcar-N3 .info-desc em {
  display: flex;
  align-items: center;
  position: relative;
  margin: 2.4rem 0 1rem;
  font-style: normal;
  font-weight: 600;
}

.rentalcar-N3 .info-list em::before {
  content: "";
  margin-right: 0.8rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--black);
  border-radius: 50%;
}

.rentalcar-N3 .info-list p {
  padding-left: 1.2rem;
}

.rentalcar-N3 .modal-confirm .modal-area {
  position: relative;
  padding: 3.2rem;
  max-width: 36rem;
  background: var(--text-color1);
  border-radius: 0.8rem;
}

.rentalcar-N3 .modal-confirm .modal-icon {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  background: transparent;
}

.rentalcar-N3 .modal-confirm .modal-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rentalcar-N3 .modal-confirm .modal-figure {
  margin: 0 auto;
  width: 5.6rem;
  height: 5.6rem;
}

.rentalcar-N3 .modal-confirm .modal-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rentalcar-N3 .modal-confirm .modal-body {
  font-size: var(--fs-p1);
  text-align: center;
  color: var(--white);
}

.rentalcar-N3 .modal-confirm .modal-textarea {
  margin: 1.6rem 0;
}

.rentalcar-N3 .modal-confirm .modal-footer {
  text-align: center;
}

.rentalcar-N3 .modal-confirm .modal-footer .btnset {
  min-width: 9.4rem;
  height: 4rem;
  border-radius: 0.4rem;
}

.rentalcar-N3 .modal-confirm .modal-footer .btnset.btnset-line-light {
  border-color: var(--white);
  color: var(--white);
}

.rentalcar-N3 .modalset .modalset-close::before {
  color: var(--text-color1);
}

.rentalcar-N3 .modalset {
  pointer-events: auto;
}

@media (max-width: 992px) {
  .rentalcar-N3 {
    bottom: 1.6rem;
    right: 1.6rem;
  }

  .rentalcar-N3 .quick-item + .quick-item {
    margin-top: 0.4rem;
  }

  .rentalcar-N3 .quick-item .btn {
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
  }

  .rentalcar-N3 .quick-contact {
    min-width: 32.8rem;
  }

  .rentalcar-N3 .contact-header a {
    padding: 1.6rem;
  }

  .rentalcar-N3 .contact-header a::before {
    font-size: 2.4rem;
  }

  .rentalcar-N3 .quick-form {
    margin-top: 0.8rem;
    padding: 1.6rem;
  }

  .rentalcar-N3 .quick-form .btn-close {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 1.4rem;
  }

  .rentalcar-N3 .quick-form form {
    margin-top: 1.6rem;
  }

  .rentalcar-N3 .form-box + .form-box {
    margin-top: 0.8rem;
  }

  .rentalcar-N3 .quick-form .form-tit {
    flex-basis: 5.8rem;
    min-width: 5.8rem;
  }

  .rentalcar-N3 .quick-form .radio-wrap {
    gap: 0.4rem;
  }

  /* 플로팅 폼 개인정보 수집동의 한 줄 표시 */
  .rentalcar-N3 .contents-agree {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .rentalcar-N3 .contents-agree .checkset {
    margin: 0;
  }

  .rentalcar-N3 .contents-agree .checkset-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
  }

  .rentalcar-N3 .contents-agree .btnset-link {
    margin-left: 0;
  }

  .rentalcar-N3 .form-btn {
    margin-top: 0.8rem;
  }

  .rentalcar-N3 .modal-confirm .modal-figure {
    width: 4.8rem;
    height: 4.8rem;
  }

  .rentalcar-N3 .modal-confirm .modal-textarea {
    margin: 0.8rem 0;
  }
}

/* 하단 폼 통일 스타일 */
.temhatutor-N9 .form-group {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  height: 46.5rem;
}

.temhatutor-N9 .form-tit {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.8rem;
  display: block;
}

.temhatutor-N9 .inputset-input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid rgba(37, 99, 235, 0.1);
  border-radius: 0.5rem;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
  background: rgba(255, 255, 255, 0.9);
  height: 7.25rem;
  box-sizing: border-box;
  margin-bottom: 1.5rem;
}

/* 전화번호 입력 그룹 전체 크기 맞추기 */
.temhatutor-N9 .phone-input-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  height: 7.25rem;
  padding: 1.2rem 1.5rem;
  border: 2px solid rgba(37, 99, 235, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.temhatutor-N9 .phone-input-group:focus-within {
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.temhatutor-N9 .phone-input-group .phone-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  padding: 0;
  margin: 0;
  height: 7.25rem;
  box-shadow: none;
  border-radius: 0;
  min-width: 0;
}

.temhatutor-N9 .phone-input-group .phone-input:focus {
  outline: none;
  border: none;
  box-shadow: none;
  background: transparent;
}

.temhatutor-N9 .phone-input-group .phone-separator {
  color: #9ca3af;
  font-size: 1.4rem;
  font-weight: 500;
  flex-shrink: 0;
}

.temhatutor-N9 .inputset-input:focus {
  outline: none;
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.temhatutor-N9 .inputset-input::placeholder {
  color: #9ca3af;
  font-size: 1.8rem;
}

.temhatutor-N9 .contents-agree {
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.temhatutor-N9 .checkset-label {
  font-size: 2rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
}

.temhatutor-N9 .btnset-link {
  color: #2563eb;
  text-decoration: underline;
  font-size: 1rem;
  margin-left: 0.5rem;
}

.temhatutor-N9 .btnset-link:hover {
  color: #1d4ed8;
}

.temhatutor-N9 .btnset-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
  border: none;
  border-radius: 1.2rem;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 5.25rem;
  margin-top: 2rem;
}

.temhatutor-N9 .btnset-primary::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;
}

.temhatutor-N9 .btnset-primary:hover::before {
  left: 100%;
}

.temhatutor-N9 .btnset-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 50%, #1e3a8a 100%);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .temhatutor-N9 .form-group {
    padding: 6rem 2rem 2rem 2rem;
    margin: 1rem;
  }

  .temhatutor-N9 .form-tit {
    font-size: 2rem;
  }

  .temhatutor-N9 .inputset-input {
    font-size: 1.2rem;
    padding: 1rem 1.2rem;
    height: 6.5rem;
  }

  .temhatutor-N9 .phone-input-group {
    height: 4.5rem;
    padding: 1rem 1.2rem;
  }

  .temhatutor-N9 .phone-input-group .phone-input {
    font-size: 1.2rem;
  }

  .temhatutor-N9 .phone-input-group .phone-separator {
    font-size: 1.2rem;
  }

  .temhatutor-N9 .inputset-input::placeholder {
    font-size: 1.2rem;
  }

  .temhatutor-N9 .btnset-primary {
    font-size: 1.4rem;
    padding: 1.2rem 1.5rem;
    height: 4.5rem;
  }

  .temhatutor-N9 .contents-agree {
    /* flex-direction: column; */
    /* align-items: flex-start; */
    gap: 0.5rem;
  }
}

/* 최종 강제 스타일 - 모든 연락처 입력 필드에 적용 */
input[class*="phone-input"],
.phone-input-group input,
.phone-input-group .phone-input {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid var(--secondary-blue);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  height: 5.25rem;
  box-sizing: border-box;
  margin-bottom: 1.5rem;
  max-width: calc(32% - 0.5rem) !important;
  width: auto !important;
  display: inline-block !important;
}
/* .phone-input-group .phone-input {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 2px solid rgba(37, 99, 235, 0.1) !important;
  border-radius: 1rem !important;
  padding: 1.2rem 1.5rem !important;
  font-size: 1.4rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  height: 5.25rem !important;
  text-align: center !important;
  color: #1f2937 !important;
  box-sizing: border-box !important;
  flex: 1 !important;
  min-width: 0 !important;
  max-width: calc(32% - 0.5rem) !important;
  width: auto !important;
  display: inline-block !important;
} */

input[class*="phone-input"]:focus,
.phone-input-group input:focus,
.phone-input-group .phone-input:focus {
  outline: none !important;
  border-color: #2563eb !important;
  background: white !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

input[class*="phone-input"]::placeholder,
.phone-input-group input::placeholder,
.phone-input-group .phone-input::placeholder {
  color: #9ca3af !important;
  font-size: 1.8rem !important;
}

/* 모바일 모달 전용 강제 스타일 */
.mobile-quote-form input[class*="phone-input"],
.mobile-quote-form .phone-input-group input,
.mobile-quote-form .phone-input-group .phone-input {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 2px solid rgba(37, 99, 235, 0.1) !important;
  border-radius: 1rem !important;
  padding: 1.2rem 1.5rem !important;
  font-size: 1.4rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  height: 7rem !important;
  text-align: center !important;
  color: #1f2937 !important;
  box-sizing: border-box !important;
  flex: 1 !important;
  min-width: 0 !important;
  max-width: calc(32% - 0.5rem) !important;
  width: auto !important;
  display: inline-block !important;
}

.mobile-quote-form input[class*="phone-input"]:focus,
.mobile-quote-form .phone-input-group input:focus,
.mobile-quote-form .phone-input-group .phone-input:focus {
  outline: none !important;
  border-color: #2563eb !important;
  background: white !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

/* 모바일에서 인풋 포커싱 시 모달 위치 조정 */
@media (max-width: 768px) {
  html body div.floating-modal.input-focused {
    align-items: flex-start !important;
    padding-top: 2rem !important;
  }

  html body div.floating-modal.input-focused .quick-form {
    transform: scale(1) !important;
    margin-top: 0 !important;
  }
}

/* PC에서 수출이 우측에 오도록 순서 변경 */
@media (min-width: 993px) {
  .rentalcar-N6 .comparsion-area .cardset.lease {
    order: 1 !important;
  }

  .rentalcar-N6 .comparsion-area .sub-tit {
    order: 2 !important;
  }

  .rentalcar-N6 .comparsion-area .cardset.rental {
    order: 3 !important;
  }
}

/* 모바일에서 수출이 아래쪽에 오도록 순서 유지 */
@media (max-width: 992px) {
  .rentalcar-N6 .comparsion-area .cardset.lease {
    order: 1 !important;
  }

  .rentalcar-N6 .comparsion-area .sub-tit {
    order: 2 !important;
  }

  .rentalcar-N6 .comparsion-area .cardset.rental {
    order: 3 !important;
  }
}
