/* ========================================
   우주 최강 여성 취향 프리미엄 디자인
   - 라벤더, 로즈 골드, 샴페인 골드 컬러
   - 부드럽고 우아한 그라데이션
   - 럭셔리한 애니메이션 효과
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 프리미엄 컬러 팔레트 */
    --lavender: #E6E6FA;
    --deep-lavender: #9370DB;
    --rose-gold: #B76E79;
    --champagne: #F7E7CE;
    --pearl-white: #FFF5EE;
    --soft-pink: #FFE4E1;
    --blush: #FFC0CB;
    --mauve: #DDA0DD;
    --gold: #DAA520;
    --silver: #C0C0C0;

    /* 그라데이션 */
    --gradient-luxury: linear-gradient(135deg, #E6E6FA 0%, #DDA0DD 50%, #B76E79 100%);
    --gradient-rose: linear-gradient(135deg, #FFE4E1 0%, #FFC0CB 50%, #B76E79 100%);
    --gradient-pearl: linear-gradient(135deg, #FFF5EE 0%, #F7E7CE 50%, #E6E6FA 100%);
    --gradient-royal: linear-gradient(135deg, #9370DB 0%, #DDA0DD 50%, #B76E79 100%);
    --gradient-shine: linear-gradient(135deg, #FFE4E1 0%, #FFF5EE 30%, #E6E6FA 60%, #DDA0DD 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #DAA520 50%, #B8860B 100%);

    /* 반짝임 효과 */
    --shimmer: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );

    /* 텍스트 컬러 */
    --text-dark: #4A4A4A;
    --text-medium: #6B6B6B;
    --text-light: #A0A0A0;
    --white: #FFFFFF;

    /* 배경 */
    --bg-cream: #FFF5EE;
    --bg-white: #FFFFFF;
    --bg-lavender: #F8F8FF;

    /* 그림자 */
    --shadow-soft: 0 4px 20px rgba(147, 112, 219, 0.15);
    --shadow-medium: 0 8px 30px rgba(183, 110, 121, 0.2);
    --shadow-strong: 0 15px 45px rgba(147, 112, 219, 0.25);
    --shadow-luxury: 0 20px 60px rgba(183, 110, 121, 0.3);

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

    /* Border Radius */
    --radius-soft: 15px;
    --radius-medium: 25px;
    --radius-large: 35px;
    --radius-full: 9999px;

    /* 트랜지션 */
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

/* 배경 반짝임 효과 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(230, 230, 250, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 192, 203, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(183, 110, 121, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* ========================================
   스크롤 진행 바
======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background: var(--gradient-luxury);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 30px rgba(147, 112, 219, 0.6), 0 0 60px rgba(183, 110, 121, 0.4);
}

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

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-luxury);
    transition: all var(--transition-bounce);
    cursor: pointer;
    animation: floatGently 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--shimmer);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

.floating-btn:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 25px 70px rgba(147, 112, 219, 0.4);
}

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

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

/* ========================================
   헤더
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 4px 30px rgba(147, 112, 219, 0.1);
    z-index: 1000;
    transition: all var(--transition-smooth);
    border-bottom: 1px solid rgba(230, 230, 250, 0.3);
}

.header.scrolled {
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.95);
}

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

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

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

.logo-icon {
    font-size: 2rem;
    animation: sparkleRotate 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(147, 112, 219, 0.5));
}

@keyframes sparkleRotate {
    0%, 100% { transform: rotate(0deg) scale(1); filter: brightness(1); }
    25% { transform: rotate(15deg) scale(1.1); filter: brightness(1.3); }
    50% { transform: rotate(0deg) scale(1.15); filter: brightness(1.5); }
    75% { transform: rotate(-15deg) scale(1.1); filter: brightness(1.3); }
}

.logo-text {
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', 'Nanum Myeongjo', serif;
}

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

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

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

.nav a:hover {
    color: var(--deep-lavender);
    text-shadow: 0 0 20px rgba(147, 112, 219, 0.3);
}

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

.nav .dropdown {
    position: relative;
}

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

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

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

.nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-strong);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    z-index: 100;
    border: 1px solid rgba(230, 230, 250, 0.4);
}

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

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

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

.nav .dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(230, 230, 250, 0.3) 0%, rgba(255, 228, 225, 0.3) 100%);
    color: var(--rose-gold);
    padding-left: 2.3rem;
}

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

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gradient-luxury);
    border-radius: 3px;
    transition: all var(--transition-smooth);
}

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

.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(100px);
    opacity: 0.5;
    animation: floatOrb 25s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(230, 230, 250, 0.4) 0%, transparent 70%);
    top: -250px;
    left: -150px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 192, 203, 0.35) 0%, transparent 70%);
    bottom: -200px;
    right: -150px;
    animation-delay: 4s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(221, 160, 221, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 8s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(230, 230, 250, 0.88) 0%,
        rgba(221, 160, 221, 0.92) 50%,
        rgba(183, 110, 121, 0.90) 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.25;
    filter: saturate(1.2) brightness(1.1);
}

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

.hero-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: fadeSlideDown 1s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.25), 0 0 60px rgba(255, 255, 255, 0.3);
    line-height: 1.2;
    animation: fadeSlideUp 1.2s ease 0.2s both;
    font-family: 'Playfair Display', 'Nanum Myeongjo', serif;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    line-height: 2;
    animation: fadeSlideUp 1.2s ease 0.4s both;
    opacity: 0.97;
    letter-spacing: 0.5px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 1.2s ease 0.6s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-smooth);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 1.7rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeSlideUp 1.2s ease 0.8s both;
}

/* ========================================
   버튼 스타일
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
    font-family: 'Noto Sans KR', sans-serif;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

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

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

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 70px rgba(147, 112, 219, 0.4);
}

.btn-call {
    background: var(--gradient-rose);
    color: var(--white);
}

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

.btn-recruit {
    background: var(--gradient-royal);
    color: var(--white);
}

.btn-large {
    padding: 1.7rem 3.5rem;
    font-size: 1.3rem;
}

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

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

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

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

/* ========================================
   섹션 공통 스타일
======================================== */
.section {
    padding: 7rem 2rem;
    position: relative;
    z-index: 1;
}

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

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

.section-tag {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    background: var(--gradient-luxury);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    font-family: 'Playfair Display', 'Nanum Myeongjo', serif;
    letter-spacing: 1px;
}

.title-underline {
    width: 120px;
    height: 6px;
    background: var(--gradient-luxury);
    margin: 0 auto 2.5rem;
    border-radius: var(--radius-soft);
    position: relative;
    box-shadow: 0 3px 15px rgba(147, 112, 219, 0.3);
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 4px solid var(--deep-lavender);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(147, 112, 219, 0.5);
}

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

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    line-height: 2;
    letter-spacing: 0.3px;
}

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

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

.intro-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf8ff 100%);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-bounce);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.intro-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(230, 230, 250, 0.5);
}

.card-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    font-family: 'Playfair Display', serif;
}

.card-icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--gradient-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-bounce);
}

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

.card-icon {
    font-size: 2.8rem;
    filter: drop-shadow(0 3px 8px rgba(255, 255, 255, 0.3));
}

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

.intro-card p {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ========================================
   선수 구인 섹션 (NEW!)
======================================== */
.recruit-section {
    background: var(--gradient-shine);
    position: relative;
    overflow: hidden;
}

.recruit-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: floatOrb 30s ease-in-out infinite;
}

.recruit-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.recruit-info {
    text-align: left;
}

.recruit-info .section-tag {
    background: var(--gradient-gold);
    color: var(--text-dark);
}

.recruit-info .section-title {
    text-align: left;
}

.recruit-info .title-underline {
    margin-left: 0;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.benefit-item:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(230, 230, 250, 0.8);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.benefit-text h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.benefit-text p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

.recruit-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-luxury);
    border: 2px solid rgba(230, 230, 250, 0.4);
}

.recruit-form-container h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.recruit-form-container p {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(230, 230, 250, 0.5);
    border-radius: var(--radius-soft);
    font-size: 1.05rem;
    font-family: 'Noto Sans KR', sans-serif;
    transition: all var(--transition-smooth);
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-lavender);
    box-shadow: 0 0 0 4px rgba(147, 112, 219, 0.1);
    background: white;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.5rem;
    background: var(--gradient-royal);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-medium);
    letter-spacing: 1px;
}

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

/* ========================================
   가격 섹션
======================================== */
.price {
    background: var(--bg-lavender);
}

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

.price-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-bounce);
    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-luxury);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: 0;
}

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

.price-card:hover {
    transform: translateY(-20px) scale(1.04);
    box-shadow: var(--shadow-luxury);
    border-color: var(--deep-lavender);
}

.price-card.popular {
    background: linear-gradient(135deg, #faf8ff 0%, #f5f0ff 100%);
    border-color: var(--rose-gold);
    transform: scale(1.06);
}

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

.popular-badge {
    position: absolute;
    top: -18px;
    right: 35px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 0.7rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: var(--shadow-medium);
    letter-spacing: 2px;
    z-index: 1;
}

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

.person-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 10px rgba(147, 112, 219, 0.3));
}

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

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

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

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

.price-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-royal);
    -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: 1rem 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(230, 230, 250, 0.3);
}

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

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

.price-notice {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem 2.5rem;
    background: rgba(230, 230, 250, 0.2);
    border-radius: var(--radius-medium);
    border-left: 6px solid var(--deep-lavender);
    box-shadow: var(--shadow-soft);
}

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

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

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

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf8ff 100%);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: all var(--transition-bounce);
    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(230, 230, 250, 0.2) 90deg,
        transparent 180deg
    );
    opacity: 0;
    transition: all 0.8s ease;
}

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

.service-card:hover {
    transform: translateY(-18px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(230, 230, 250, 0.5);
}

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

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

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

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

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

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

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

/* ========================================
   FAQ 섹션
======================================== */
.faq-section {
    background: var(--bg-lavender);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-medium);
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-smooth);
    border: 2px solid rgba(230, 230, 250, 0.3);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(147, 112, 219, 0.4);
}

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

.faq-question:hover {
    background: rgba(230, 230, 250, 0.1);
}

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

.faq-toggle {
    width: 45px;
    height: 45px;
    background: var(--gradient-luxury);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 300;
    transition: all var(--transition-bounce);
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

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

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

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

.faq-answer p {
    padding: 0 3rem 2.3rem 3rem;
    color: var(--text-medium);
    line-height: 2;
    font-size: 1.1rem;
}

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

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

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

.info-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #faf8ff 100%);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
}

.info-item:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(230, 230, 250, 0.5);
}

.info-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 10px rgba(147, 112, 219, 0.3));
}

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

.info-content p {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 1.05rem;
}

.location-contact {
    padding: 3rem;
    background: var(--gradient-royal);
    color: var(--white);
    border-radius: var(--radius-medium);
    text-align: center;
    box-shadow: var(--shadow-strong);
}

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

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

.btn-small {
    padding: 1.2rem 2.5rem;
    background: var(--white);
    color: var(--text-dark);
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-medium);
    font-size: 1.05rem;
}

.btn-small:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-luxury);
}

.location-map {
    background: var(--gradient-pearl);
    border-radius: var(--radius-large);
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    min-height: 550px;
}

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

.map-placeholder svg {
    color: var(--rose-gold);
    margin-bottom: 2rem;
    animation: floatGently 4s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(183, 110, 121, 0.3));
}

.map-placeholder p {
    font-size: 1.2rem;
    line-height: 2;
}

/* ========================================
   연락처 섹션
======================================== */
.contact {
    background: var(--gradient-royal);
    padding: 7rem 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: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
}

.orb-contact-1 {
    background: radial-gradient(circle, rgba(255, 228, 225, 0.3) 0%, transparent 70%);
    top: -250px;
    right: -150px;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-contact-2 {
    background: radial-gradient(circle, rgba(230, 230, 250, 0.25) 0%, transparent 70%);
    bottom: -250px;
    left: -150px;
    animation: floatOrb 25s ease-in-out infinite reverse;
}

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

.contact-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-family: 'Playfair Display', 'Nanum Myeongjo', serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    opacity: 0.97;
    line-height: 2;
}

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

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

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

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

/* ========================================
   푸터
======================================== */
.footer {
    background: linear-gradient(135deg, #4A4A4A 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 5rem 2rem 2.5rem;
}

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

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

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    font-size: 1.1rem;
}

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

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all var(--transition-smooth);
    font-size: 1.05rem;
}

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

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

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

.footer-business {
    background: rgba(230, 230, 250, 0.1);
    border-radius: var(--radius-medium);
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid rgba(230, 230, 250, 0.2);
}

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

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

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

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

.footer-links-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem 1.5rem;
    padding: 2rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(230, 230, 250, 0.2);
    border-bottom: 1px solid rgba(230, 230, 250, 0.2);
}

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

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

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

.footer-keywords {
    background: rgba(230, 230, 250, 0.08);
    border-radius: var(--radius-medium);
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid rgba(230, 230, 250, 0.15);
}

.footer-keywords p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 2.2;
    margin-bottom: 1.5rem;
}

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

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

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 2;
    margin-bottom: 1rem;
    text-align: center;
}

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

/* 모달 */
.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.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease;
}

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

.modal-content {
    background: white;
    margin: 3% auto;
    padding: 0;
    border-radius: var(--radius-large);
    width: 90%;
    max-width: 850px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-luxury);
    animation: slideDown 0.4s ease;
}

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

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

.modal-body {
    padding: 2.5rem;
}

.modal-body h3 {
    color: var(--rose-gold);
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

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

.modal-body p {
    color: var(--text-medium);
    line-height: 2;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

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

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

.modal-body ul li:before {
    content: '✦';
    color: var(--deep-lavender);
    font-weight: bold;
    position: absolute;
    left: -2rem;
}

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

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

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

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

@keyframes floatGently {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(8px);
    }
    50% {
        transform: translateY(0) translateX(15px);
    }
    75% {
        transform: translateY(-15px) translateX(8px);
    }
}

.intro-card,
.price-card,
.service-card,
.benefit-item,
.faq-item {
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards;
}

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

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

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

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

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

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

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

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

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

    .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: 3rem;
    }

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

    .hero-features {
        gap: 2rem;
    }

    .section {
        padding: 5rem 1.5rem;
    }

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

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

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

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

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

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

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

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

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

    .recruit-form-container {
        padding: 2.5rem;
    }
}

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

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

    .section {
        padding: 4rem 1.2rem;
    }

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

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

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

    .btn-large {
        padding: 1.4rem 2.5rem;
        font-size: 1.1rem;
    }

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

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

    .faq-question {
        padding: 2rem;
    }

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

    .location-map {
        padding: 3rem;
        min-height: 350px;
    }

    .recruit-form-container {
        padding: 2rem;
    }
}