/* ===== NAP 정보 스타일 ===== */
.nap-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
    text-align: center;
    flex-wrap: wrap;
}

.nap-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.nap-item i {
    color: #d4af37;
    font-size: 1.1rem;
}

.nap-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nap-item a:hover {
    color: #d4af37;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .nap-info {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===== 히어로 섹션 스타일 ===== */
.main-hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.2)
    );
    z-index: 2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transition: opacity 0.1s ease;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1400px;
    padding: 0 40px;
}

.main-hero-title {
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: uppercase;
    animation: fadeInUp 0.3s ease-out;
    color: #d4af37; /* 골드색 */
    white-space: normal; /* 줄바꿈 허용으로 변경 */
    overflow: visible;
    text-overflow: unset;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8); /* 텍스트 가독성 향상을 위한 그림자 효과 */
    padding: 0 20px;
    word-break: keep-all; /* 한글 단어 단위로 줄바꿈 */
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeInUp 0.3s ease-out 0.1s both;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8); /* 텍스트 가독성 향상을 위한 그림자 효과 */
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.3s ease-out 0.2s both;
}

.main-btn-primary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-btn-primary:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

.main-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.main-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* 스크롤 진행률 표시 */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: white;
    z-index: 1003;
    transition: width 0.1s ease;
}

/* ===== 포트폴리오 갤러리 섹션 스타일 ===== */
/* 공통 스타일 변수 - common.css의 변수 사용 */

.portfolio-showcase {
    padding: 100px 0;
    background: var(--light-gray);
}

.portfolio-showcase .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-showcase .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 9rem; /* 더 큰 여백 (6rem → 9rem) */
    color: var(--navy-bg);
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #000;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.portfolio-item:hover {
    transform: scale(1.02);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-number {
    color: var(--white-text);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.portfolio-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.portfolio-title {
    color: var(--white-text);
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portfolio-category {
    color: var(--gray-text);
    font-size: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-price {
    color: var(--white-text);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 로딩 상태 스타일 */
.portfolio-loading {
    text-align: center;
    padding: 60px 0;
    color: var(--gray-text);
    font-size: 1.1rem;
}


.btn-view-all {
    display: inline-block;
    background: transparent;
    color: var(--navy-bg);
    border: 2px solid var(--navy-bg);
    padding: 15px 40px;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-view-all:hover {
    background: var(--navy-bg);
    color: var(--white-text);
    transform: translateY(-2px);
}

/* 포트폴리오 아이템 애니메이션 */
.portfolio-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

/* 애니메이션 지연 최적화 - CSS 변수 사용 */
.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }
.portfolio-item:nth-child(7) { animation-delay: 0.7s; }
.portfolio-item:nth-child(8) { animation-delay: 0.8s; }
.portfolio-item:nth-child(9) { animation-delay: 0.9s; }
.portfolio-item:nth-child(10) { animation-delay: 1.0s; }
.portfolio-item:nth-child(11) { animation-delay: 1.1s; }
.portfolio-item:nth-child(12) { animation-delay: 1.2s; }
.portfolio-item:nth-child(13) { animation-delay: 1.3s; }
.portfolio-item:nth-child(14) { animation-delay: 1.4s; }
.portfolio-item:nth-child(15) { animation-delay: 1.5s; }
.portfolio-item:nth-child(16) { animation-delay: 1.6s; }

/* ===== 공통 애니메이션 - common.css에서 관리 ===== */

/* ===== 반응형 디자인 ===== */
/* 히어로 섹션 반응형 */
@media (max-width: 768px) {
    /* 히어로 섹션 상단 여백 추가 (헤더와 겹치지 않도록) */
    .main-hero-section {
        margin-top: 60px !important;              /* 헤더 높이만큼 아래로 이동 */
        height: calc(100vh - 60px) !important;    /* 화면 높이 - 헤더 높이 */
        padding-top: 0 !important;
    }
    
    /* 히어로 배경과 콘텐츠가 헤더 영역 침범하지 않도록 */
    .hero-background,
    .hero-content {
        pointer-events: none;  /* 클릭 이벤트 통과 */
    }
    
    /* 히어로 섹션 내부 링크와 버튼만 클릭 가능하게 */
    .hero-content a,
    .hero-content button {
        pointer-events: auto;  /* 버튼은 클릭 가능 */
    }
    
    .main-hero-title {
        font-size: 2.2rem;
        white-space: normal; /* 줄바꿈 허용 */
        overflow: visible;   /* 잘림 방지 */
        text-overflow: unset; /* 말줄임표 제거 */
        line-height: 1.3;
        padding: 0 20px; /* 좌우 여백 추가 */
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .main-btn-primary,
    .main-btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    /* 포트폴리오 갤러리 반응형 */
    .portfolio-showcase {
        padding: 60px 0;
    }
    
    .portfolio-showcase .section-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 6rem; /* 더 큰 여백 (4rem → 6rem) */
        color: var(--navy-bg);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .portfolio-number {
        font-size: 1.5rem;
    }
    
    .portfolio-title {
        font-size: 0.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .portfolio-category {
        font-size: 0.7rem;
    }
    
    .portfolio-price {
        font-size: 0.8rem;
        padding: 6px 12px;
        font-weight: 600;
    }
}

@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    /* 히어로 섹션 상단 여백 추가 (헤더와 겹치지 않도록) */
    .main-hero-section {
        margin-top: 60px !important;              /* 헤더 높이만큼 아래로 이동 */
        height: calc(100vh - 60px) !important;    /* 화면 높이 - 헤더 높이 */
        padding-top: 0 !important;
    }
    
    /* 히어로 배경과 콘텐츠가 헤더 영역 침범하지 않도록 */
    .hero-background,
    .hero-content {
        pointer-events: none;  /* 클릭 이벤트 통과 */
    }
    
    /* 히어로 섹션 내부 링크와 버튼만 클릭 가능하게 */
    .hero-content a,
    .hero-content button {
        pointer-events: auto;  /* 버튼은 클릭 가능 */
    }
    
    .main-hero-title {
        font-size: 1.8rem;
        white-space: normal; /* 줄바꿈 허용 */
        overflow: visible;   /* 잘림 방지 */
        text-overflow: unset; /* 말줄임표 제거 */
        line-height: 1.4;
        padding: 0 15px; /* 좌우 여백 추가 */
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    /* 포트폴리오 갤러리 모바일 최적화 */
    .portfolio-showcase .container {
        padding: 0 15px;
    }
    
    .portfolio-showcase .section-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 4.5rem; /* 더 큰 여백 (3rem → 4.5rem) */
        color: var(--navy-bg);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .portfolio-overlay {
        padding: 15px;
    }
    
    .portfolio-number {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .portfolio-title {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .portfolio-category {
        font-size: 0.6rem;
    }
    
    .portfolio-price {
        font-size: 0.7rem;
        padding: 4px 8px;
        font-weight: 600;
    }
    
    .btn-view-all {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* ===== 메인 콘텐츠 스타일 ===== */
.main-content {
    margin-top: 70px; /* 헤더 높이만큼 여백 */
}

/* ===== 서비스 섹션 스타일 ===== */
.services-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--white-text);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wealth-gold), var(--bright-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border-color: var(--wealth-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--wealth-gold), var(--bright-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--navy-bg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--navy-bg);
}

.service-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== 스타일 섹션 스타일 ===== */
.styles-section {
    padding: 100px 0;
    background: var(--white-text);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.style-card {
    background: var(--white-text);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
    border-color: var(--wealth-gold);
}

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

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

.style-content {
    padding: 25px;
}

.style-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--navy-bg);
}

.style-content p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.style-link {
    color: var(--wealth-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.style-link:hover {
    color: var(--bright-gold);
}

/* ===== FAQ 섹션 스타일 ===== */
.faq-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    position: relative;
}

.faq-section .section-title {
    color: #ffd700 !important;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    font-weight: 700;
}

.faq-section .section-subtitle {
    color: #ffffff !important;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,215,0,0.1) 0%, transparent 70%);
    z-index: 1;
}

.faq-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.faq-stat-item {
    text-align: center;
    padding: 20px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.faq-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-stat-item:hover::before {
    opacity: 1;
}

.faq-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2);
}

.faq-stat-item .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.faq-stat-item .stat-label {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.faq-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.btn-faq-more {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    border: none;
    font-size: 0.9rem;
}

.btn-faq-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

/* ===== 리뷰 섹션 스타일 ===== */
.reviews-section {
    padding: 50px 0;
    background: white;
    position: relative;
}

.reviews-section .section-subtitle {
    text-align: center;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.review-stat-item {
    text-align: center;
    padding: 20px 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.review-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 100%);
}

.review-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.review-stat-item .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.review-stat-item .stat-label {
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
    line-height: 1.2;
}

.reviews-cta {
    text-align: center;
}

.btn-reviews-more {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: white;
    border: none;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-reviews-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ===== 오시는길 섹션 스타일 ===== */
.map-section {
    text-align: center;
    margin: 30px 0;
}

.map-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.location-summary {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.location-summary p {
    margin: 8px 0;
    color: #666;
    font-size: 0.95rem;
    text-align: center;
}

/* ===== 위치 통계 섹션 스타일 ===== */
.location-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.location-stat-item {
    text-align: center;
    padding: 20px 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.location-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 100%);
}

.location-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.location-stat-item .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.location-stat-item .stat-label {
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
    line-height: 1.2;
}

.location-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-location-detail {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: white;
    border: none;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-location-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ===== 지역 서비스 섹션 스타일 ===== */
:root {
    --location-card-width: 800px;
    --location-card-height: 700px;
    --location-card-ratio: 800/700;
}

/* 지역 서비스 섹션 - Updated 2024 */
.location-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.location-services .section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.location-single {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.location-single .location-card {
    max-width: 800px;
    width: 100%;
    aspect-ratio: 800/700;
    min-height: 500px;
    min-width: 372px;
    min-height: 350px;
}

/* 지도 배경 카드 스타일 */
.location-card-with-map {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(248, 249, 250, 0.95) 0%,
        rgba(233, 236, 239, 0.9) 100%
    );
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.location-card-with-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/location/route-map.avif');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 1;
    border-radius: 15px;
    /* 이미지 품질 향상 */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* 반응형 이미지 최적화 */
    background-attachment: local;
}

/* AVIF를 지원하지 않는 브라우저용 WebP fallback */
@supports not (background-image: url('/assets/images/location/route-map.avif')) {
    .location-card-with-map::before {
        background-image: url('/assets/images/location/route-map.webp');
    }
}

/* WebP도 지원하지 않는 브라우저용 JPG fallback */
@supports not (background-image: url('/assets/images/location/route-map.webp')) {
    .location-card-with-map::before {
        background-image: url('/assets/images/location/route-map.jpg');
    }
}

.location-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: transparent;
    padding: 30px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
}

.location-content h3 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 3.5rem; /* PC에서 0.8배 증가 (1.8 * 1.8) */
    margin-bottom: 15px;
    margin-top: -20px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.location-content p {
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 25px;
    margin-top: 0px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    font-size: 1.3rem; /* PC에서 0.8배 증가 (기본 1rem * 1.3) */
}

.location-content .location-features {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-content .location-features li {
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 1.2rem; /* 기존 1.1rem에서 0.8배 증가 (1.1 * 1.1) */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px; /* 기존 8px에서 0.8배 증가 */
}

.location-content .location-features i {
    color: #d4af37;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.location-content .btn-outline {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    backdrop-filter: none;
    text-shadow: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 24px;
}

.location-content .btn-outline:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.location-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


.location-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.location-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.location-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.location-features li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-features i {
    color: #d4af37;
    font-size: 0.9rem;
}


/* ===== 포트폴리오 CTA 스타일 ===== */
.portfolio-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-consultation-portfolio {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-consultation-portfolio:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* ===== 아티스트 CTA 스타일 ===== */
.artist-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-portfolio {
    background: white;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-portfolio:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
}

/* ===== 최종 CTA 섹션 스타일 ===== */
.final-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #d4af37;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-cta-primary, .btn-cta-secondary, .btn-cta-tertiary {
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-cta-secondary {
    background: white;
    color: #2c3e50;
    border: 2px solid white;
}

.btn-cta-tertiary {
    background: transparent;
    color: white;
    border: 2px solid #d4af37;
}

.btn-cta-primary:hover, .btn-cta-secondary:hover, .btn-cta-tertiary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta-features .feature i {
    font-size: 2rem;
    color: #d4af37;
}

.cta-features .feature span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== 아티스트 소개 섹션 스타일 ===== */
.artist-section {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.artist-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.artist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.artist-text {
    padding-right: 40px;
}

.artist-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #333;
    line-height: 1.4;
    word-break: keep-all; /* 한글 단어 단위로 줄바꿈 */
}

.artist-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
}

.artist-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}


.btn-artist {
    display: inline-block;
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 15px 30px;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-artist:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

.artist-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.artist-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.artist-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.05)
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.artist-image-caption {
    text-align: center;
    margin-top: 15px;
}

.artist-image-caption p {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* 아티스트 섹션 애니메이션 */
.artist-text {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

.artist-image {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards 0.3s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* 아티스트 섹션 반응형 디자인 */
@media (max-width: 1024px) {
    .artist-content {
        gap: 60px;
    }
    
    .artist-text {
        padding-right: 20px;
    }
    
    .artist-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .artist-section {
        padding: 80px 0;
    }
    
    .artist-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .artist-text {
        padding-right: 0;
        text-align: center;
    }
    
    .artist-title {
        font-size: 2rem;
    }
    
    .artist-description {
        font-size: 1.1rem;
    }
    
    .artist-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .artist-image img {
        height: 400px;
    }
}

/* ===== 반응형 미디어 쿼리 ===== */
/* 실제 모바일 디바이스 최적화 */
@media (max-width: 1024px) and (orientation: portrait) {
    .location-single .location-card {
        max-width: 100%;
        aspect-ratio: 1/1.2;
        min-height: 450px;
    }
}

@media (max-width: 1024px) {
    .services-grid,
    .styles-grid,
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .service-card,
    .style-card,
    .review-card {
        padding: 30px 25px;
    }
}

/* 실제 모바일 디바이스 최적화 */
@media (max-width: 768px) and (orientation: portrait) {
    .location-single .location-card {
        max-width: 100%;
        aspect-ratio: 1/1.1;
        min-height: 420px;
        margin: 20px 0;
    }
    
    .location-card-with-map::before {
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-top: 60px;
    }
    
    .services-section,
    .styles-section,
    .reviews-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-stats,
    .reviews-stats,
    .location-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 500px;
    }
    
    .faq-stat-item,
    .review-stat-item,
    .location-stat-item {
        padding: 15px 8px;
    }
    
    .faq-stat-item .stat-number,
    .review-stat-item .stat-number,
    .location-stat-item .stat-number {
        font-size: 1.5rem;
    }
    
    .faq-stat-item .stat-label,
    .review-stat-item .stat-label,
    .location-stat-item .stat-label {
        font-size: 0.8rem;
    }
    
    .services-grid,
    .styles-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .service-card,
    .style-card,
    .review-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .style-content {
        padding: 20px;
    }
    
    .style-card img {
        height: 180px;
    }
    
    .location-single {
        margin: 30px 0;
    }
    
    .location-services .section-subtitle {
        max-width: 100%;
        margin: 0 auto 30px;
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .location-single .location-card {
        max-width: 100%;
        padding: 25px 20px;
        aspect-ratio: 800/700;
        min-height: 320px;
        min-width: 350px;
    }
    
    .location-card-with-map::before {
        opacity: 0.4;
        background-position: center top;
        background-size: contain;
        background-attachment: local;
    }
    
    .location-content {
        padding: 25px 15px 20px 15px;
    }
    
    .location-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        margin-top: -15px;
    }
    
    .location-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .location-content .location-features li {
        font-size: 1.0rem; /* 모바일은 현재 상태 유지 */
        margin-bottom: 8px;
        padding: 0 10px;
    }
    
    .portfolio-cta, .artist-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        white-space: normal;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .services-section,
    .styles-section,
    .reviews-section,
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-stats,
    .reviews-stats,
    .location-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 400px;
    }
    
    .faq-stat-item,
    .review-stat-item,
    .location-stat-item {
        padding: 12px 6px;
    }
    
    .faq-stat-item .stat-number,
    .review-stat-item .stat-number,
    .location-stat-item .stat-number {
        font-size: 1.3rem;
    }
    
    .faq-stat-item .stat-label,
    .review-stat-item .stat-label,
    .location-stat-item .stat-label {
        font-size: 0.75rem;
    }
    
    .service-card,
    .style-card,
    .review-card {
        padding: 20px 15px;
        border-radius: 10px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .style-content {
        padding: 15px;
    }
    
    .style-card img {
        height: 150px;
    }
    
    .review-card::before {
        font-size: 3rem;
        top: 15px;
        left: 20px;
    }
    
    .artist-section .container {
        padding: 0 15px;
    }
    
    .artist-title {
        font-size: 1.8rem;
    }
    
    .artist-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .artist-image img {
        height: 300px;
    }
    
    .btn-artist {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .location-card-with-map::before {
        opacity: 0.3;
        background-size: contain;
        background-position: center center;
        background-attachment: local;
    }
    
    .location-single .location-card {
        aspect-ratio: 800/700;
        min-height: 300px;
        min-width: 320px;
    }
    
    .location-content {
        padding: 20px 10px 15px 10px;
    }
    
    .location-content h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        margin-top: -5px;
        line-height: 1.2;
    }
    
    .location-content p {
        font-size: 0.8rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .location-content .location-features li {
        font-size: 0.9rem; /* 모바일은 현재 상태 유지 */
        margin-bottom: 6px;
        padding: 0 3px;
        line-height: 1.2;
    }
    
    .location-content .btn-outline {
        font-size: 1.0rem;
        padding: 10px 20px;
        margin-top: 10px;
    }
    
    .location-services .section-subtitle {
        max-width: 100%;
        margin: 0 auto 25px;
        font-size: 0.95rem;
        padding: 0 15px;
    }
}

@media (max-width: 320px) {
    .service-card h3,
    .style-content h3 {
        font-size: 1.2rem;
    }
    
    .service-card p,
    .style-content p,
    .review-text {
        font-size: 0.9rem;
    }
}

/* ===== 가격/위생 통합 섹션 스타일 ===== */
.pricing-hygiene-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.pricing-hygiene-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
                radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.pricing-hygiene-section .container {
    position: relative;
    z-index: 2;
    max-width: 1600px; /* 브라우저 최대 사용 사이즈 */
    margin: 0 auto;
    padding: 0 20px;
}

/* 반응형 레이아웃 - 데스크톱에서는 좌우 배치, 모바일에서는 세로 배치 */
.pricing-hygiene-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
    min-height: 800px;
}

.pricing-hygiene-wrapper .pricing-section,
.pricing-hygiene-wrapper .hygiene-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 가격 섹션 스타일 */
.pricing-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* center → flex-start로 변경 */
    position: relative;
    overflow: hidden;
}

.pricing-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

.pricing-content .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px; /* 20px → 30px로 증가 */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-content .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.pricing-overview {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #d4af37, #f4d03f);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.price-item:hover::before {
    transform: scaleY(1);
}

.price-item:hover {
    transform: translateX(5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

.pricing-note {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
    font-style: italic;
}

.pricing-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-pricing-consultation {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border: none;
    font-size: 1rem;
}

.btn-pricing-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

/* 위생 섹션 스타일 */
.hygiene-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* center → flex-start로 변경 */
    position: relative;
    overflow: hidden;
}

.hygiene-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

.hygiene-content .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px; /* 20px → 30px로 증가 */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hygiene-content .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hygiene-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.hygiene-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.hygiene-item:hover {
    transform: translateX(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.hygiene-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.hygiene-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.hygiene-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.hygiene-certifications {
    margin-bottom: 30px;
}

.certifications-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.certifications-list {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.certification-item {
    text-align: center;
    flex: 1;
    max-width: 150px;
}

.certification-image {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.certification-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certification-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin: 0;
}


/* 모바일에서는 세로 배치로 변경 */

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .pricing-hygiene-wrapper {
        gap: 30px;
        min-height: 700px;
    }
    
    .pricing-content,
    .hygiene-content {
        padding: 40px 30px;
    }
    
    .pricing-content .section-title,
    .hygiene-content .section-title {
        font-size: 2rem;
    }
    
    .price-item {
        padding: 18px 20px;
    }
    
    .hygiene-item {
        padding: 18px;
        gap: 15px;
    }
    
    .hygiene-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .pricing-hygiene-section {
        padding: 60px 0;
    }
    
    /* 모바일에서는 세로 배치로 변경 */
    .pricing-hygiene-wrapper {
        flex-direction: column;
        gap: 40px;
        min-height: auto;
    }
    
    .pricing-content,
    .hygiene-content {
        padding: 35px 25px;
    }
    
    .pricing-content .section-title,
    .hygiene-content .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .pricing-content .section-subtitle,
    .hygiene-content .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .price-item {
        padding: 15px 18px;
        gap: 10px;
    }
    
    .price-label {
        font-size: 1rem;
    }
    
    .price-value {
        font-size: 1.2rem;
    }
    
    .hygiene-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 15px;
    }
    
    .hygiene-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .hygiene-title {
        font-size: 1.1rem;
    }
    
    .hygiene-description {
        font-size: 0.9rem;
    }
    
    .certifications-list {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .certification-item {
        max-width: 200px;
    }
    
    .certification-image {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .pricing-hygiene-section {
        padding: 40px 0;
    }
    
    .pricing-content,
    .hygiene-content {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .pricing-content .section-title,
    .hygiene-content .section-title {
        font-size: 1.6rem;
    }
    
    .pricing-content .section-subtitle,
    .hygiene-content .section-subtitle {
        font-size: 0.95rem;
    }
    
    .price-item {
        padding: 12px 15px;
    }
    
    .price-label {
        font-size: 0.95rem;
    }
    
    .price-value {
        font-size: 1.1rem;
    }
    
    .hygiene-item {
        padding: 15px 12px;
    }
    
    .hygiene-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .hygiene-title {
        font-size: 1rem;
    }
    
    .hygiene-description {
        font-size: 0.85rem;
    }
    
    .certification-image {
        height: 70px;
    }
    
    .certification-text {
        font-size: 0.8rem;
    }
    
    .btn-pricing-consultation {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-card,
    .style-card,
    .review-card {
        animation: none;
        transition: none;
    }
    
    .price-item,
    .hygiene-item {
        transition: none;
    }
}