/* 전역 스타일 */
body {
    font-family: "Pretendard", sans-serif;
}

/* 견적 도착 페이지 스타일 - 피그마 디자인 기반 */

/* 기본 컨테이너 */
.quote-arrival-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    min-height: 100vh;
}

.quote-arrival-container {
    width: 100%;
    max-width: 650px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

/* 네비게이션 헤더 */

.quote-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 24px;
    top: 0;
    z-index: 100;
}

.quote-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.quote-nav-logo {
    display: flex;
    align-items: center;
}

.quote-nav-logo img {
    height: 44px;
    display: block;
}

.quote-nav-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-nav-menu img {
    width: 24px;
    height: 24px;
}

/* 히어로 섹션 */
.quote-hero {
    background: linear-gradient(135deg, #388EFF 20.09%, #086CFF 56.69%, #0166FF 79.91%);
    padding: 48px 0 60px;
    text-align: center;
    color: white;
}

.quote-hero-content {
    padding: 0 20px;
}

.quote-bell-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-bell-icon img {
    width: 100%;
    height: 100%;
}

.quote-hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin: 0 0 4px;
    text-align: center;
}

.quote-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin: 0 0 38px;
    opacity: 0.8;
}

.quote-hero-description {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin: 0;
}

/* 전문가 카드 섹션 */
.quote-experts {
    padding: 23px 20px;
    background-color: #ffffff;
}

/* 전문가 카드 */
.quote-expert {
    background-color: #ffffff;
    border: 1px solid #E3E5EA;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.quote-expert-content {
    padding: 22px;
}

/* 전문가 프로필 섹션 */
.quote-expert-profile-section {
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 0 0px 28px 0px;
}

.quote-expert-image-container {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
}

.quote-expert-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-expert-info {
    flex: 1;
}

.quote-expert-name {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #121212;
    margin: 0 0 8px;
}

@media (max-width: 480px) {
    
    .quote-expert-badge img {
        width: 12px;
        height: 12px;
    }
}

.quote-expert-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.quote-expert-badges::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.quote-expert-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    flex-shrink: 0;
}

.quote-expert-badge.verified {
    background-color: #DCFCE7;
    color: #15803D;
}

.quote-expert-badge.premium {
    background-color: #E3EFFF;
    color: #0166FF;
}

.quote-expert-badge img {
    width: 14px;
    height: 14px;
}

.quote-expert-services {
    display: flex;
    gap: 6px;
}

.quote-service-tag {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #999999;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #777777;
}

/* 전문가 통계 */
.quote-expert-stats {
    display: flex;
    justify-content: space-between;
    gap: 23px;
    margin-bottom: 20px;
}

.quote-stat-item {
    flex: 1;
    text-align: center;
}

.quote-stat-value {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #121212;
    margin: 0 0 8px;
}

.quote-stat-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #777777;
}

@media (max-width: 480px) {
    .quote-expert-stats {
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .quote-stat-value {
        font-size: 20px;
        margin: 0 0 6px;
    }

    .quote-stat-label {
        font-size: 14px;
    }
}

/* 전문가 상세 정보 버튼 */
.quote-expert-detail-link {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #0066FF;
    border: 1px solid #0066FF;
    border-radius: 6px;
    margin: 0 0 24px;
}

.quote-expert-detail-link img {
    width: 20px;
    height: 20px;
}

.quote-expert-detail-link:hover {
    background-color: rgba(0, 102, 255, 0.04);
}

@media (max-width: 480px) {
    .quote-expert-detail-link {
        font-size: 15px;
        padding: 8px 0;
        margin: 0 0 18px;
    }

    .quote-expert-detail-link img {
        width: 15px;
        height: 15px;
    }
}

/* 구분선 */
.quote-expert-divider {
    width: 100%;
    height: 1px;
    background-color: #E3E5EA;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .quote-expert-divider {
        margin-bottom: 18px;
    }
}

/* 가격 섹션 */
.quote-expert-price-section {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.quote-price-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.quote-price-label-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.quote-price-icon {
    width: 20px;
    height: 20px;
}

.quote-price-label {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #777777;
}

.quote-price-value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: #0166FF;
}

.quote-select-expert-btn {
    background-color: #0166FF;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0 30px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-select-expert-btn:hover {
    background-color: #0052CC;
}

@media (max-width: 480px) {
    .quote-select-expert-btn {
        padding: 0 20px;
        font-size: 18px;
    }
}

/* 안내 카드 */
.quote-info-card {
    background-color: #ffffff;
    border: 1px solid #E3E5EA;
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 20px;
}

.quote-info-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #121212;
    margin: 0 0 12px;
}

.quote-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-info-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.quote-info-item span {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #121212;
}

@media (max-width: 480px) {
    .quote-info-title {
        font-size: 18px;
    }

    .quote-info-check {
        width: 16px;
        height: 16px;
    }

    .quote-info-item span {
        font-size: 16px;
    }
}

@media (max-width: 395px) {
    .quote-info-check {
        width: 14px;
        height: 14px;
    }

    .quote-info-item span {
        font-size: 14px;
    }
}

/* 하단 예약 정보 */
.quote-bottom {
    background-color: #ffffff;
}

.quote-separator {
    width: 100%;
    height: 4px;
    background-color: #E3EFFF;
}

.quote-reservation-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 42px;
}

.quote-reservation-label {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #121212;
}

.quote-reservation-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
}

.quote-reservation-toggle img {
    width: 100%;
    height: 100%;
}

@media (max-width: 480px) {
    .quote-reservation-label {
        font-size: 18px;
        margin-left: 18px;
    }
}

/* 반응형 디자인 */
@media (max-width: 480px) {
    .quote-arrival-container {
        max-width: 100%;
        box-shadow: none;
    }
    
    .quote-hero {
        padding: 40px 0 50px;
    }
    
    .quote-hero-content {
        padding: 0 16px;
    }
    
    .quote-hero-title {
        font-size: 32px;
    }
    
    .quote-hero-subtitle {
        font-size: 15px;
    }
    
    .quote-hero-description {
        font-size: 18px;
    }
    
    .quote-experts {
        padding: 20px 16px;
    }
    
    .quote-expert-content {
        padding: 18px;
    }
    
    .quote-expert-profile-section {
        display: flex;
        align-items: center;
        gap: 20px;
        margin: 0 0 18px 0;
    }
    
    .quote-expert-image-container {
        width: 110px;
        height: 110px;
    }
    
    .quote-expert-name {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .quote-expert-badge {
        gap: 4px;
        padding: 3px 10px;
        font-size: 10px;
    }

    .quote-expert-badge img {
        width: 14px;
        height: 14px;
    }

    .quote-service-tag {
        padding: 3px 8px;;
        font-size: 14px;
    }

    .quote-expert-stats {
        gap: 16px;
        margin-bottom: 16px;
    }

    .quote-price-info {
        gap: 2px;
    }

    .quote-price-icon {
        width: 14px;
        height: 14px;
    }

    .quote-price-label {
        font-size: 14px;
    }

    .quote-price-value {
        font-size: 24px;
    }
    
    .quote-info-card {
        padding: 18px;
    }
    
    .quote-reservation-info {
        padding: 16px 20px;
    }
    
    .quote-nav-logo img {
        height: 44px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .quote-arrival-container {
        max-width: 100%;
        margin: 0 20px;
        border-radius: 12px;
    }
    
}

@media (min-width: 769px) {
    .quote-arrival-container {
        margin: 20px 0;
        border-radius: 12px;
    }
    
} 