/* ========================================
   전역 스타일 & CSS 변수
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 컬러 팔레트 */
    --primary: #ff6b9d;
    --primary-light: #ff8fab;
    --primary-dark: #e75480;
    --secondary: #c44569;
    --accent: #ffa5d8;
    --gold: #ffd700;

    /* 그라데이션 */
    --gradient-primary: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-pink: linear-gradient(135deg, #ff6b9d 0%, #ffa5d8 50%, #c44569 100%);
    --gradient-soft: linear-gradient(135deg, #ffeef8 0%, #ffe5f1 50%, #ffd9ec 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffc400 100%);
    --gradient-orb-1: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 70%);
    --gradient-orb-2: radial-gradient(circle, rgba(102, 126, 234, 0.25) 0%, transparent 70%);
    --gradient-orb-3: radial-gradient(circle, rgba(255, 165, 216, 0.2) 0%, transparent 70%);

    /* 텍스트 컬러 */
    --text-dark: #2d3436;
    --text-medium: #636e72;
    --text-light: #b2bec3;
    --white: #ffffff;

    /* 배경 컬러 */
    --bg-light: #ffeef8;
    --bg-white: #ffffff;
    --bg-dark: #2d3436;

    /* 그림자 */
    --shadow-xs: 0 1px 3px rgba(255, 107, 157, 0.08);
    --shadow-sm: 0 2px 10px rgba(255, 107, 157, 0.1);
    --shadow-md: 0 8px 30px rgba(255, 107, 157, 0.15);
    --shadow-lg: 0 15px 50px rgba(255, 107, 157, 0.2);
    --shadow-xl: 0 20px 60px rgba(255, 107, 157, 0.25);

    /* 간격 */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-full: 9999px;

    /* 트랜지션 */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--gradient-soft);
    overflow-x: hidden;
}

/* ========================================
   스크롤 진행 바
======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}

/* ========================================
   플로팅 연락 버튼
======================================== */
.floating-contact {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}

.floating-btn:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.phone-btn {
    background: var(--gradient-primary);
    color: var(--white);
}

.kakao-btn {
    background: linear-gradient(135deg, #ffe812 0%, #ffd60a 100%);
    color: #3c1e1e;
}

/* ========================================
   헤더
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.8rem;
    animation: sparkle 2s ease-in-out infinite;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    position: relative;
    padding: 0.5rem 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width var(--transition-normal);
}

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

.nav a:hover::after {
    width: 100%;
}

/* 드롭다운 메뉴 스타일 */
.nav .dropdown {
    position: relative;
}

.nav .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav .dropdown .arrow {
    font-size: 0.7rem;
    transition: transform var(--transition-normal);
}

.nav .dropdown:hover .arrow {
    transform: rotate(180deg);
}

.nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 0.8rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 100;
}

.nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.nav .dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.nav .dropdown-menu a::after {
    display: none;
}

.nav .dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 2rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ========================================
   히어로 섹션
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-orb-1);
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-orb-2);
    bottom: -150px;
    right: -100px;
    animation-delay: 3s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-orb-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 107, 157, 0.85) 0%,
        rgba(196, 69, 105, 0.9) 100%
    );
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

/* ========================================
   버튼 스타일
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    font-family: 'Noto Sans KR', sans-serif;
    cursor: pointer;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-call {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    color: var(--white);
}

.btn-kakao {
    background: linear-gradient(135deg, #ffe812 0%, #ffd60a 100%);
    color: #3c1e1e;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.btn svg,
.btn .btn-content {
    position: relative;
    z-index: 1;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.btn-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ========================================
   섹션 공통 스타일
======================================== */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
}

.title-underline {
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    margin: 0 auto 2rem;
    border-radius: var(--radius-sm);
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
}

.title-underline.left {
    margin: 0 0 2rem 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ========================================
   소개 섹션
======================================== */
.intro {
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.intro-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff9fc 100%);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

.intro-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 157, 0.3);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 2.5rem;
}

.intro-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.intro-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* ========================================
   Why Choose Us 섹션
======================================== */
.why-section {
    background: linear-gradient(135deg, #ffeef8 0%, #fff5fb 100%);
}

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

.why-content {
    text-align: left;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.why-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.why-text p {
    color: var(--text-medium);
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ========================================
   가격 섹션
======================================== */
.price {
    background: linear-gradient(135deg, #ffeef8 0%, #fff5fb 100%);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.price-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    border: 3px solid transparent;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.price-card:hover::before {
    opacity: 0.05;
}

.price-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.price-card.popular {
    background: linear-gradient(135deg, #fff0f7 0%, #ffe5f1 100%);
    border-color: var(--primary);
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: translateY(-15px) scale(1.08);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 0.6rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    letter-spacing: 1px;
    z-index: 1;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.person-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.price-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.price-desc {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 400;
}

.price-amount {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-medium);
    vertical-align: top;
}

.price-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.price-features {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 1;
}

.price-features li {
    padding: 0.8rem 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}

.price-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 25px;
    height: 25px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.price-notice {
    margin-top: 3rem;
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 107, 157, 0.1);
    border-radius: var(--radius-md);
    border-left: 5px solid var(--primary);
}

.price-notice p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ========================================
   서비스 섹션
======================================== */
.service {
    background: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff9fc 100%);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(255, 107, 157, 0.1) 90deg,
        transparent 180deg
    );
    opacity: 0;
    transition: all 0.6s ease;
}

.service-card:hover::before {
    opacity: 1;
    transform: rotate(180deg);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 157, 0.3);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(360deg);
}

.service-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-link {
    transform: translateX(5px);
}

/* ========================================
   FAQ 섹션
======================================== */
.faq-section {
    background: linear-gradient(135deg, #ffeef8 0%, #fff5fb 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 2rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(255, 107, 157, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 300;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2.5rem 2rem 2.5rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ========================================
   위치 섹션
======================================== */
.location-section {
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fff9fc 100%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 157, 0.3);
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

.location-contact {
    padding: 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.location-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-buttons-small {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-small {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--text-dark);
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-small:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.location-map {
    background: linear-gradient(135deg, #ffeef8 0%, #ffe5f1 100%);
    border-radius: var(--radius-lg);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    min-height: 500px;
}

.map-placeholder {
    text-align: center;
    color: var(--text-medium);
}

.map-placeholder svg {
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.map-placeholder p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ========================================
   연락처 섹션
======================================== */
.contact {
    background: var(--gradient-purple);
    padding: 6rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.orb-contact-1,
.orb-contact-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
}

.orb-contact-1 {
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.orb-contact-2 {
    background: radial-gradient(circle, rgba(255, 165, 216, 0.25) 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    animation: float 20s ease-in-out infinite reverse;
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
}

.contact-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
}

.contact-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-check {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   푸터
======================================== */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-notice {
    color: var(--primary-light);
    font-weight: 600;
}

/* ========================================
   애니메이션
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        filter: brightness(1.5);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 157, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 107, 157, 0);
    }
}

/* 스크롤 애니메이션 */
.intro-card,
.price-card,
.service-card,
.why-item,
.stat-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.intro-card:nth-child(1),
.price-card:nth-child(1),
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.intro-card:nth-child(2),
.price-card:nth-child(2),
.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.intro-card:nth-child(3),
.price-card:nth-child(3),
.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.intro-card:nth-child(4),
.price-card:nth-child(4),
.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* ========================================
   반응형 디자인
======================================== */
@media (max-width: 1200px) {
    .why-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .hero-features {
        gap: 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

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

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons .btn {
        width: 100%;
        max-width: 400px;
    }

    .price-grid,
    .service-grid,
    .intro-content {
        grid-template-columns: 1fr;
    }

    .floating-contact {
        right: 20px;
        bottom: 20px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .price-card {
        padding: 2rem 1.5rem;
    }

    .service-card,
    .intro-card {
        padding: 2rem 1.5rem;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .location-map {
        padding: 2rem;
        min-height: 300px;
    }
}

/* ========================================
   푸터 추가 스타일 (SEO 최적화)
======================================== */

/* 사업자 정보 */
.footer-business {
    background: rgba(255, 107, 157, 0.15);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.footer-business h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.business-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    text-align: left;
}

.business-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.8;
}

.business-info strong {
    color: var(--white);
    margin-right: 0.5rem;
    font-weight: 700;
}

/* 푸터 링크 바 */
.footer-links-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 1rem;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    border-top: 1px solid rgba(255, 107, 157, 0.3);
    border-bottom: 1px solid rgba(255, 107, 157, 0.3);
}

.footer-links-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

.footer-links-bar a:hover {
    color: var(--white);
}

.footer-links-bar .divider {
    color: rgba(255, 255, 255, 0.5);
}

/* SEO 키워드 섹션 */
.footer-keywords {
    background: rgba(255, 107, 157, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.footer-keywords p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 2;
    margin-bottom: 1rem;
}

.footer-keywords p:last-child {
    margin-bottom: 0;
}

.footer-keywords strong {
    color: var(--white);
    font-weight: 600;
    margin-right: 0.5rem;
}

/* 저작권 및 면책조항 */
.footer-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

/* 모달 팝업 */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    margin: 3% auto;
    padding: 0;
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    margin: 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-size: 1.8rem;
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-body ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body ul li {
    color: var(--text-medium);
    line-height: 1.8;
    position: relative;
    margin-bottom: 0.5rem;
}

.modal-body ul li:before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.modal-close {
    color: white;
    float: right;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition-normal);
    padding: 0 0.5rem;
}

.modal-close:hover {
    transform: rotate(90deg);
    opacity: 0.7;
}

/* 반응형 - 모바일 */
@media (max-width: 768px) {
    .business-info {
        grid-template-columns: 1fr;
    }

    .footer-links-bar {
        font-size: 0.85rem;
    }

    .footer-keywords {
        padding: 1.5rem;
    }

    .footer-keywords p {
        font-size: 0.85rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        padding: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-body h3 {
        font-size: 1.1rem;
    }
}
