/* CSS 변수 */
:root {
    --primary-gold: #D4AF37;
    --light-gold: #F4E4BC;
    --dark-gold: #B8860B;
    --accent-gold: #FFD700;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --text-light: #f5f5f5;
    --text-dark: #333;
    --border-gold: rgba(212, 175, 55, 0.3);
}

/* 성능 최적화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-display: swap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* 이미지 최적화 */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
    decoding: async;
}

/* 애니메이션 최적화 */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* GPU 가속 최적화 */
.header,
.floating-contact,
.mobile-menu {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.container {
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

/* 헤더 */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 데스크톱 네비게이션 */
.desktop-nav {
    display: none;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.desktop-nav .nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.desktop-nav .nav-list a:hover {
    color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
}

.desktop-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.desktop-nav .nav-list a:hover::after {
    width: 80%;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
    
    .menu-btn {
        display: none;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 50px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.logo-symbol {
    font-size: 14px;
    font-weight: 900;
    color: var(--dark-bg);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    z-index: 1;
    position: relative;
    letter-spacing: -0.5px;
}

.logo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin-bottom: 2px;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--light-gold);
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
    margin-top: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 메뉴 버튼 */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* 모바일 메뉴 */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active .menu-content {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.menu-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.menu-nav {
    padding: 20px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.menu-item:hover {
    background: #f8f9fa;
    color: #667eea;
}

.menu-icon {
    font-size: 20px;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.menu-contact {
    padding: 20px;
    background: #f8f9fa;
    text-align: center;
    margin-top: auto;
}

.menu-phone {
    display: block;
    background: #667eea;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.menu-phone:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.menu-contact p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 모바일 프로필 */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.profile-item img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.profile-actions {
    text-align: center;
    margin-top: 14px;
}

.more-link {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 20px;
    background: #f0f2f5;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #e5e7eb;
}

.more-link:hover {
    background: #e9ecf1;
}

/* 메인 배너 */
.main-banner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%),
                url('images/A (1).gif') center/cover no-repeat;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.main-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/A (1).gif') center/cover no-repeat;
    filter: blur(2px);
    opacity: 0.7;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.banner-subtitle a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.banner-subtitle a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--primary-gold);
}

.banner-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.contact-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 55px;
    white-space: nowrap;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
}

.contact-btn:hover::before {
    left: 100%;
}

.telegram-btn {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.9) 0%, rgba(0, 170, 255, 0.9) 100%);
    border-color: rgba(0, 136, 204, 0.8);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    animation: pulse-telegram 2s infinite;
}

.telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
    background: linear-gradient(135deg, rgba(0, 119, 187, 0.95) 0%, rgba(0, 153, 238, 0.95) 100%);
}

.kakao-btn {
    background: linear-gradient(135deg, rgba(254, 229, 0, 0.9) 0%, rgba(255, 215, 0, 0.9) 100%);
    border-color: rgba(254, 229, 0, 0.8);
    color: #2c1810;
    box-shadow: 0 4px 15px rgba(254, 229, 0, 0.3);
    animation: pulse-kakao 2s infinite;
}

.kakao-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 229, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 193, 7, 0.95) 100%);
}

.btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.telegram-icon {
    color: #ffffff;
}

.kakao-icon {
    color: #3C1E1E;
}

.btn-text {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.3px;
    line-height: 1;
}

/* 특징 섹션 */
.features {
    padding: 50px 0;
    background: #f8f9fa;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 14px;
}

/* 서비스 섹션 */
.services {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.service-item p {
    color: #666;
    margin-bottom: 15px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
}

/* 지역 섹션 */
.areas {
    padding: 50px 0;
    background: #f8f9fa;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.area-item {
    background: white;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.area-note {
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* 프로세스 섹션 */
.process {
    padding: 50px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.step p {
    color: #666;
    font-size: 14px;
}

/* 회사소개 섹션 */
.about {
    padding: 50px 0;
    background: #f8f9fa;
}

.about-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.about-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    padding: 8px 0;
    color: #333;
    font-weight: 500;
}

/* 여성앨범 섹션 */
.gallery {
    padding: 50px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.gallery-placeholder {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-placeholder span {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.gallery-placeholder h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.gallery-placeholder p {
    color: #666;
    font-size: 14px;
}

/* 이용안내 섹션 */
.guide {
    padding: 50px 0;
    background: #f8f9fa;
}

.guide-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.guide-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.guide-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.guide-item p {
    color: #666;
    line-height: 1.6;
}

/* 공지사항 섹션 */
.notice {
    padding: 50px 0;
}

.notice-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.notice-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.notice-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.notice-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.notice-item p {
    color: #666;
    line-height: 1.6;
}

/* 이용후기 섹션 */
.reviews {
    padding: 50px 0;
    background: #f8f9fa;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.review-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.review-rating {
    font-size: 16px;
    margin-bottom: 10px;
}

.review-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.review-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    font-style: italic;
}

.review-date {
    font-size: 12px;
    color: #999;
    text-align: right;
}

/* 이벤트 섹션 */
.events {
    padding: 50px 0;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.event-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    border-left: 4px solid #ddd;
}

.event-item.active {
    border-left-color: #ffd700;
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ddd;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.event-item.active .event-badge {
    background: #ffd700;
    color: #333;
}

.event-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    padding-right: 80px;
}

.event-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.event-period {
    font-size: 12px;
    color: #999;
}

/* 연락처 섹션 */
.contact {
    padding: 50px 0;
    background: #f8f9fa;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.contact-link {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    text-decoration: none;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    font-size: 14px;
}

/* 브레드크럼 네비게이션 */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin: 0 0.5rem;
    color: #6c757d;
}

.breadcrumb-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--primary-gold);
}

.breadcrumb-list li:last-child {
    color: #6c757d;
}

/* 관련 서비스 링크 */
.related-services {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-top: 4rem;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.link-group h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 0.5rem;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
}

.link-group a:hover {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

/* 푸터 */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3,
.footer-links h4,
.footer-contact h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-gold);
}

.footer-info p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.7;
}

.footer-meta a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-meta a:hover {
    color: var(--primary-gold);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* 플로팅 버튼 */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.float-call {
    background: #ffd700;
    color: #333;
    padding: 15px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* 태블릿 이상 화면 */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
        padding: 0 30px;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .area-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-info {
        flex-direction: row;
    }
    
    .process-steps {
        flex-direction: row;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        flex: 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .guide-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .menu-btn {
        display: none;
    }
}

/* 스크롤 애니메이션 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}/* 반응형 디자인 - 버튼 */
@media (max-width: 360px) {
    .contact-buttons {
        flex-direction: column;
        gap: 12px;
        max-width: 280px;
    }
    
    .contact-btn {
        max-width: 250px;
        width: 100%;
        min-width: auto;
    }
}

@media (min-width: 361px) and (max-width: 480px) {
    .contact-buttons {
        gap: 12px;
        max-width: 350px;
    }
    
    .contact-btn {
        min-width: 120px;
        max-width: 150px;
        padding: 14px 20px;
        height: 50px;
        gap: 8px;
    }
    
    .btn-icon {
        width: 20px;
        height: 20px;
    }
    
    .btn-text {
        font-size: 14px;
    }
}

@media (min-width: 481px) {
    .contact-btn {
        min-width: 160px;
        max-width: 200px;
    }
}

/* 버튼 깜박이는 애니메이션 */
@keyframes pulse-telegram {
    0% { 
        box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 25px rgba(0, 136, 204, 0.5);
        transform: scale(1.02);
    }
    100% { 
        box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
        transform: scale(1);
    }
}

@keyframes pulse-kakao {
    0% { 
        box-shadow: 0 4px 15px rgba(254, 229, 0, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 25px rgba(254, 229, 0, 0.5);
        transform: scale(1.02);
    }
    100% { 
        box-shadow: 0 4px 15px rgba(254, 229, 0, 0.3);
        transform: scale(1);
    }
}/* 회사소개 페이지
스타일 */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #764ba2 100%);
    color: var(--text-light);
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    animation: backgroundMove 15s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(212, 175, 55, 0.03) 2px,
        rgba(212, 175, 55, 0.03) 4px
    );
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes backgroundMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(5deg);
    }
}

.page-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3),
                 0 0 30px rgba(212, 175, 55, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3),
                     0 0 30px rgba(212, 175, 55, 0.3);
    }
    50% {
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4),
                     0 0 40px rgba(212, 175, 55, 0.5),
                     0 0 60px rgba(212, 175, 55, 0.2);
    }
}

.page-header p {
    font-size: 18px;
    color: var(--light-gold);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.about-main {
    padding: 60px 0;
    background: var(--text-light);
    color: var(--text-dark);
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

.company-story,
.service-philosophy,
.service-areas,
.massage-types,
.payment-system,
.professional-staff,
.safety-measures,
.contact-info {
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-gold);
}

.company-story h3,
.service-philosophy h3,
.service-areas h3,
.massage-types h3,
.payment-system h3,
.professional-staff h3,
.safety-measures h3,
.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.company-story p,
.service-philosophy p,
.service-areas p,
.massage-types p,
.payment-system p,
.professional-staff p,
.safety-measures p,
.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.philosophy-grid,
.massage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.philosophy-item,
.massage-item {
    background: rgba(212, 175, 55, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 3px solid var(--primary-gold);
}

.philosophy-item h4,
.massage-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gold);
    margin-bottom: 15px;
}

.philosophy-item p,
.massage-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.area-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.area-item {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-gold);
}

.area-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gold);
    margin-bottom: 10px;
}

.area-item p {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
}

.payment-benefits,
.staff-qualifications {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.benefit-item,
.qualification-item {
    background: rgba(212, 175, 55, 0.08);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-gold);
}

.benefit-item h4,
.qualification-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-gold);
    margin-bottom: 8px;
}

.benefit-item p,
.qualification-item p {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
}

.menu-item.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
}

/* 반응형 디자인 - 회사소개 페이지 */
@media (min-width: 768px) {
    .philosophy-grid,
    .massage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-highlights,
    .payment-benefits,
    .staff-qualifications {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-header h1 {
        font-size: 48px;
    }

    .about-intro h2 {
        font-size: 40px;
    }
}

/* 지역안내 페이지 스타일 */
.regions-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 20%, #0f3460 40%, #533483 60%, #667eea 80%, #764ba2 100%);
}

.regions-main {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.regions-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.regions-intro h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.regions-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.regions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.region-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.region-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-gold);
}

.region-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    cursor: pointer;
    transition: background 0.3s ease;
}

.region-header:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.region-header:active {
    transform: scale(0.98);
}

.region-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.region-icon {
    font-size: 32px;
    line-height: 1;
}

.region-title h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-gold);
    margin: 0;
}

.toggle-icon {
    font-size: 20px;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
    font-weight: bold;
}

.sub-regions {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.sub-regions.active {
    padding: 25px;
    background: rgba(248, 249, 250, 0.5);
}

.sub-region-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.sub-region-item {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.sub-region-item:hover {
    background: linear-gradient(135deg, var(--light-gold) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-color: var(--primary-gold);
    color: var(--dark-gold);
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.2);
}

.service-notice {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 5px solid var(--primary-gold);
}

.service-notice h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.service-notice p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* 반응형 디자인 - 지역안내 페이지 */
@media (min-width: 480px) {
    .sub-region-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .sub-region-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .sub-region-item {
        padding: 14px 18px;
        font-size: 15px;
    }

    .regions-intro h2 {
        font-size: 36px;
    }

    .regions-intro p {
        font-size: 18px;
    }

    .region-title h3 {
        font-size: 26px;
    }

    .region-icon {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .sub-region-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .regions-list {
        gap: 25px;
    }
}

/* 지역 상세 페이지 스타일 */
.region-detail-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 20%, #0f3460 40%, #533483 60%, #667eea 80%, #764ba2 100%);
    padding: 120px 0 60px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumb a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.breadcrumb span {
    color: white;
    font-weight: 600;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--primary-gold);
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.back-button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.region-detail-main {
    padding: 60px 0;
    background: #f8f9fa;
}

.region-content {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.region-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.4;
}

.region-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gold);
    margin-top: 40px;
    margin-bottom: 20px;
}

.region-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.content-section {
    margin-bottom: 35px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.content-section strong {
    color: var(--dark-gold);
    font-weight: 600;
}

.area-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.area-list li {
    padding: 12px 20px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-left: 4px solid var(--primary-gold);
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.area-list li strong {
    color: var(--dark-gold);
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
    border: 2px solid var(--border-gold);
}

.cta-section h3 {
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    margin-top: 0;
}

.cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.keywords-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.keywords-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keyword-tag {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    font-size: 14px;
    color: var(--dark-gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.keyword-tag:hover {
    background: linear-gradient(135deg, var(--light-gold) 0%, rgba(212, 175, 55, 0.3) 100%);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.nearby-regions {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nearby-regions h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.nearby-item {
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nearby-item:hover {
    background: linear-gradient(135deg, var(--light-gold) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-color: var(--primary-gold);
    color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* 반응형 디자인 - 지역 상세 페이지 */
@media (max-width: 768px) {
    .region-content {
        padding: 30px 20px;
    }

    .region-content h2 {
        font-size: 24px;
    }

    .region-content h3 {
        font-size: 20px;
    }

    .content-section p {
        font-size: 15px;
        line-height: 1.8;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .cta-section h3 {
        font-size: 22px;
    }
}

@media (min-width: 768px) {
    .nearby-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (min-width: 1024px) {
    .region-detail-main .container {
        max-width: 1200px;
    }

    .region-content {
        padding: 60px 80px;
    }
}