/* Contact 페이지 전용 스타일 - 다크 네이비 테마 */
        body, html {
            margin: 0;
            padding: 0;
            overflow: auto;
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
        }

        .contact-page {
            padding-top: 100px;
            padding-bottom: 200px;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            min-height: 100vh;
            color: white;
            position: relative;
        }

        .contact-page::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
                linear-gradient(45deg, transparent 48%, rgba(148, 163, 184, 0.02) 50%, transparent 52%);
            z-index: -1;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* 히어로 섹션 */
        .contact-hero {
            text-align: center;
            padding: 80px 0;
            background: linear-gradient(135deg, #1e40af 0%, #3730a3 50%, #1e293b 100%);
            margin: -100px -20px 80px -20px;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    120deg,
                    transparent,
                    transparent 60px,
                    rgba(255, 255, 255, 0.02) 60px,
                    rgba(255, 255, 255, 0.02) 61px
                ),
                repeating-linear-gradient(
                    60deg,
                    transparent,
                    transparent 60px,
                    rgba(255, 255, 255, 0.02) 60px,
                    rgba(255, 255, 255, 0.02) 61px
                );
        }

        .contact-hero__content {
            position: relative;
            z-index: 2;
        }

        .contact-hero__title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #60a5fa, #06b6d4, #10b981);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
        }

        .contact-hero__subtitle {
            font-size: clamp(0.8rem, 2.5vw, 1.8rem);
            margin-bottom: 30px;
            color: #e2e8f0;
            opacity: 0.9;
        }

        .contact-hero__description {
            font-size: clamp(0.8rem, 2vw, 1.3rem)
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            color: #cbd5e1;
            opacity: 0.8;
        }

        /* 메인 콘텐츠 그리드 */
        .contact-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        /* 연락처 정보 섹션 */
        .contact-info {
            background: rgba(30, 41, 59, 0.4);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(148, 163, 184, 0.1);
            padding: 45px;
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #60a5fa, transparent);
            animation: scanning 4s infinite;
        }

        @keyframes scanning {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .contact-info__title {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 30px;
            color: #60a5fa;
            text-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
            padding: 20px;
            background: rgba(59, 130, 246, 0.05);
            border-radius: 16px;
            border: 1px solid rgba(59, 130, 246, 0.1);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(59, 130, 246, 0.08);
            transform: translateX(8px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-right: 20px;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
            flex-shrink: 0;
        }

        .contact-details h3 {
            font-size: clamp(1.2rem, 1.8vw, 1.4rem);
            font-weight: 700;
            margin-bottom: 8px;
            color: #e2e8f0;
        }

        .contact-details p {
            color: #cbd5e1;
            line-height: 1.6;
            margin: 0;
            font-size: clamp(0.95rem, 1.4vw, 1.05rem);
        }

        .contact-details a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: #93c5fd;
            text-decoration: underline;
        }

        /* 문의 폼 섹션 */
        .contact-form {
            background: rgba(30, 41, 59, 0.4);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(148, 163, 184, 0.1);
            padding: 45px;
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #10b981, transparent);
            animation: scanning 4s infinite 2s;
        }

        .contact-form__title {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 30px;
            color: #10b981;
            text-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #e2e8f0;
            font-size: clamp(0.95rem, 1.4vw, 1.05rem);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid rgba(148, 163, 184, 0.2);
            border-radius: 12px;
            background: rgba(15, 23, 42, 0.6);
            color: #e2e8f0;
            font-size: clamp(0.95rem, 1.4vw, 1.05rem);
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3b82f6;
            background: rgba(15, 23, 42, 0.8);
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        }

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

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #94a3b8;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: clamp(1.1rem, 1.6vw, 1.3rem);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #059669, #047857);
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.35);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* 지도 섹션 */
        .map-section {
            background: rgba(30, 41, 59, 0.4);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(148, 163, 184, 0.1);
            overflow: hidden;
            margin-bottom: 80px;
            position: relative;
        }

        .map-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #06b6d4, transparent);
            animation: scanning 4s infinite 1s;
        }

        .map-header {
            padding: 35px 45px;
            border-bottom: 1px solid rgba(148, 163, 184, 0.1);
        }

        .map-header__title {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 15px;
            color: #06b6d4;
            text-shadow: 0 2px 10px rgba(6, 182, 212, 0.3);
        }

        .map-header__description {
            color: #cbd5e1;
            line-height: 1.6;
            font-size: clamp(1rem, 1.5vw, 1.1rem);
        }

        .map-placeholder {
            height: 400px;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 20px,
                    rgba(148, 163, 184, 0.03) 20px,
                    rgba(148, 163, 184, 0.03) 40px
                );
        }

        .map-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .map-content__icon {
            font-size: 4rem;
            color: #06b6d4;
            margin-bottom: 20px;
            display: block;
            animation: float 3s ease-in-out infinite;
        }

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

        .map-content__text {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            font-weight: 600;
            color: #e2e8f0;
            margin-bottom: 10px;
        }

        .map-content__address {
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            color: #94a3b8;
        }

        /* FAQ 섹션 */
        .faq-section {
            background: rgba(30, 41, 59, 0.4);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(148, 163, 184, 0.1);
            padding: 45px;
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
            animation: scanning 4s infinite 3s;
        }

        .faq-section__title {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 40px;
            color: #8b5cf6;
            text-align: center;
            text-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(148, 163, 184, 0.1);
            border-radius: 16px;
            overflow: hidden;
            background: rgba(59, 130, 246, 0.03);
        }

        .faq-question {
            padding: 20px 25px;
            background: rgba(30, 41, 59, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            width: 100%;
            text-align: left;
            font-size: clamp(1.1rem, 1.6vw, 1.3rem);
            font-weight: 600;
            color: #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background: rgba(59, 130, 246, 0.08);
        }

        .faq-question.active {
            background: rgba(59, 130, 246, 0.1);
            color: #60a5fa;
        }

        .faq-icon {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-question.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #cbd5e1;
            line-height: 1.6;
        }

        .faq-answer.active {
            padding: 20px 25px;
            max-height: 200px;
        }

        /* 애니메이션 */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

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

        .slide-in-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* 반응형 */
        @media (max-width: 768px) {
            .contact-container {
                padding: 0 15px;
            }

            .contact-main {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-info,
            .contact-form,
            .faq-section {
                padding: 30px;
            }

            .map-header {
                padding: 25px 30px;
            }

            .contact-item {
                flex-direction: column;
                text-align: center;
            }

            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .map-placeholder {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .contact-page {
                padding-top: 80px;
            }

            .contact-hero {
                margin: -80px -15px 60px -15px;
                padding: 60px 0;
            }

            .contact-info,
            .contact-form,
            .faq-section {
                padding: 25px;
            }

            .map-header {
                padding: 20px 25px;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 14px 16px;
            }

            .submit-btn {
                padding: 16px;
            }
        }