/* 기본 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* 네비게이션 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
    transition: background 0.3s ease;
    height: 80px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}



.logo-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 15px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.logo-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    line-height: 1;
}

.logo-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    line-height: 1;
}

.company-name {
    color: #ffd700;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.nav-menu a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-menu a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-menu a.consultation-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000 !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.5);
    min-width: 120px;
    text-align: center;
    justify-content: center;
}

.nav-menu a.consultation-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #000000;
    text-shadow: none;
}

/* 로그인 버튼 스타일 */
.nav-login .login-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000 !important;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 45px;
}

.nav-login .login-btn:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    color: #000000 !important;
    text-shadow: none;
}

.nav-login .login-btn i {
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* 히어로 섹션 */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    padding: 100px 0 50px;
    position: relative;
}

/* 상담신청 히어로 섹션 */
.consultation-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.consultation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.consultation-hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.consultation-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.consultation-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 100%;
    margin: 0 auto;
    white-space: nowrap;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 500px;
    text-align: center;
    margin-left: 2rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 2rem;
}

.hero-logo-large {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-image {
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
    border: 3px solid #ffd700;
    border-radius: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.2),
        0 0 60px rgba(255, 215, 0, 0.1),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.hero-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.3),
        0 0 90px rgba(255, 215, 0, 0.2),
        inset 0 0 30px rgba(255, 215, 0, 0.2);
    border-color: #ffed4e;
}

.hero-logo-icon-large {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 50px;
    border-radius: 20px;
    border: 3px solid #ffd700;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4),
        0 0 90px rgba(255, 215, 0, 0.2),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.neon-logo-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    animation: neonGlowLarge 4s ease-in-out infinite;
}

@keyframes neonGlowLarge {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.hero-logo-number-large {
    font-size: 6rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    line-height: 1;
    margin-bottom: 10px;
}

.hero-logo-text-large {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 4px;
    line-height: 1;
}

.fingerprint-patterns-large {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.fingerprint-pattern-1 {
    position: absolute;
    top: -40px;
    right: -50px;
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.4);
    opacity: 0.6;
    animation: fingerprintFloatLarge 5s ease-in-out infinite;
}

.fingerprint-pattern-2 {
    position: absolute;
    bottom: -35px;
    left: -45px;
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.3);
    opacity: 0.5;
    animation: fingerprintFloatLarge 5s ease-in-out infinite reverse;
}

@keyframes fingerprintFloatLarge {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-15px) rotate(8deg) scale(1.1); }
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 25px;
    border-radius: 15px;
    border: 2px solid #ffd700;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.1),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.neon-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: neonGlow 3s ease-in-out infinite;
}

@keyframes neonGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero-logo-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    line-height: 1;
    margin-bottom: 5px;
}

.hero-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 3px;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.fingerprint-patterns {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.fingerprint-right {
    position: absolute;
    top: -20px;
    right: -30px;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0.8;
    animation: fingerprintFloat 4s ease-in-out infinite;
}

.fingerprint-left {
    position: absolute;
    bottom: -25px;
    left: -35px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    animation: fingerprintFloat 4s ease-in-out infinite reverse;
}

@keyframes fingerprintFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 2px;
}

.hero-main-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-banner {
    margin-bottom: 2rem;
}

.banner-text {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #2c3e50;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.hero-services {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-services span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-phone i {
    color: #ffd700;
    font-size: 1.2rem;
}

.hero-phone span {
    font-weight: 600;
    font-size: 1.1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detective-icon {
    font-size: 15rem;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

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



.fingerprint-patterns-large {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.fingerprint-pattern-1 {
    position: absolute;
    top: -40px;
    right: -50px;
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.4);
    opacity: 0.6;
    animation: fingerprintFloatLarge 5s ease-in-out infinite;
}

.fingerprint-pattern-2 {
    position: absolute;
    bottom: -35px;
    left: -45px;
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.3);
    opacity: 0.5;
    animation: fingerprintFloatLarge 5s ease-in-out infinite reverse;
}

@keyframes fingerprintFloatLarge {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-15px) rotate(8deg) scale(1.1); }
}





.life-work-message {
    margin-top: 1.5rem;
    text-align: center;
}

.life-work-message span {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #2c3e50;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

.safety-notice {
    margin-top: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.safety-notice i {
    color: #27ae60;
    font-size: 1.2rem;
}

.safety-notice span {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.address-info {
    margin-top: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.address-info i {
    color: #ffd700;
    font-size: 1rem;
}

.address-info span {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* 서비스 섹션 */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-icon i {
    color: #ffffff !important;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.service-card p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* 소개 섹션 */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.about-text p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: #e74c3c;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.feature p {
    color: #cccccc;
    font-size: 0.95rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
}

/* 문의 섹션 */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffd700;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: #e74c3c;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #ffd700;
}

.contact-item p {
    color: #e0e0e0;
    line-height: 1.5;
}

/* 복사 가능한 연락처 정보 스타일 */
.contact-item p.copyable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.contact-item p.copyable:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.contact-item p.copyable::after {
    content: '클릭하여 복사';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 215, 0, 0.9);
    color: #000000;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.contact-item p.copyable:hover::after {
    opacity: 1;
}

/* 복사 불가능한 연락처 정보 스타일 */
.contact-item p:not(.copyable) {
    cursor: default;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffd700;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffd700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.4);
    color: white;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

/* 푸터 */
.footer {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    min-width: 60px;
    min-height: 60px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.footer-logo .logo-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

.footer-logo .logo-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    line-height: 1;
    margin-bottom: 2px;
}

.footer-logo .logo-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1.5px;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-logo .company-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ecf0f1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* 지도 정보 정렬 */
.map-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.map-info strong {
    display: inline-block;
    width: 60px;
    text-align: left;
    flex-shrink: 0;
}

/* 폼 헤더 스타일 */
.form-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.form-title {
    margin: 0;
    color: #ffd700;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.lookup-btn {
    position: absolute;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000 !important;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    cursor: pointer;
    z-index: 10;
}

.lookup-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #000000 !important;
}

.lookup-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 신청조회 폼 스타일 */
.lookup-form {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 2rem;
}

.lookup-result {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-top: 2rem;
}

.lookup-result h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.result-content {
    color: #e0e0e0;
    line-height: 1.6;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    /* 모바일 메뉴 - 2열 레이아웃 */
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        padding: 2rem 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(255, 215, 0, 0.3);
        z-index: 999;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    .nav-menu li {
        width: calc(50% - 0.5rem);
        margin: 0;
    }
    
    .nav-menu li:last-child {
        width: 100%;
        margin-top: 1rem;
    }
    
    .nav-menu a {
        padding: 1.2rem 1rem;
        width: 100%;
        text-align: center;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 215, 0, 0.1);
        border: 1px solid rgba(255, 215, 0, 0.3);
        transition: all 0.3s ease;
        min-height: 60px;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 215, 0, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    
    .nav-menu a.consultation-btn {
        margin: 0;
        width: 100%;
        background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
        color: #000000 !important;
        font-weight: 700;
        border: 2px solid rgba(255, 215, 0, 0.5);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    
    .nav-menu a.consultation-btn:hover {
        background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    }
    
    .logo-icon {
        padding: 6px 10px;
    }
    
    .logo-number {
        font-size: 1.5rem;
    }
    
    .logo-text {
        font-size: 0.6rem;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .hero-logo-number {
        font-size: 3rem;
    }
    
    .hero-logo-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .banner-text {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-cta {
        gap: 0.8rem;
    }
    
    .hero-phone {
        padding: 0.6rem 1.2rem;
    }
    
    .hero-phone span {
        font-size: 1rem;
    }
    
    .brand-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .brand-logo-number-large {
        font-size: 4rem;
    }
    
    .brand-logo-text-large {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .fingerprint-pattern-1 {
        font-size: 3rem;
        top: -30px;
        right: -35px;
    }
    
    .fingerprint-pattern-2 {
        font-size: 2.5rem;
        bottom: -25px;
        left: -30px;
    }
    
    .fingerprint-right {
        font-size: 2rem;
        top: -15px;
        right: -20px;
    }
    
    .fingerprint-left {
        font-size: 1.5rem;
        bottom: -20px;
        left: -25px;
    }
    

    
    .life-work-message span {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .safety-notice span {
        font-size: 0.7rem;
        padding: 0.5rem 0.8rem;
    }
    
    .address-info span {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 50px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-left: 0;
        padding-bottom: 2rem;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero-text {
        text-align: center;
        width: 100%;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-visual {
        padding-right: 0;
    }
    
    .hero-logo-number-large {
        font-size: 4rem;
    }
    
    .hero-logo-text-large {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .fingerprint-pattern-1 {
        font-size: 3rem;
        top: -30px;
        right: -35px;
    }
    
    .fingerprint-pattern-2 {
        font-size: 2.5rem;
        bottom: -25px;
        left: -30px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-services {
        justify-content: center !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
        max-width: 320px !important;
        margin: 0 auto 2rem auto !important;
        flex-wrap: nowrap !important;
    }
    
    .hero-services span {
        text-align: center !important;
        padding: 0.8rem 0.5rem !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        display: block !important;
        width: 100% !important;
    }
    
    .detective-icon {
        font-size: 8rem;
        margin-top: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-logo .logo-icon {
        min-width: 70px;
        min-height: 70px;
        padding: 12px 18px;
    }
    
    .footer-logo .logo-number {
        font-size: 2rem;
    }
    
    .footer-logo .logo-text {
        font-size: 0.8rem;
    }
    
    .footer-logo .company-name {
        font-size: 1.4rem;
    }
    
    .hero-logo-image {
        max-width: 180px;
    }
    

    

}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        text-align: center;
        width: 100%;
    }
    
    .hero-subtitle {
        text-align: center;
        width: 100%;
    }
    
    .hero-main-text {
        text-align: center;
        width: 100%;
    }
    
    .hero-cta {
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    
    .hero-services {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.8rem !important;
        max-width: 300px !important;
        margin: 0 auto 2rem auto !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
    }
    
    .hero-services span {
        text-align: center !important;
        padding: 0.8rem 0.5rem !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        display: block !important;
        width: 100% !important;
    }
    
    .services h2,
    .about-text h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-logo-image {
        max-width: 150px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .success-message-content {
        padding: 1.5rem;
    }
    
    .success-details {
        flex-direction: column;
        gap: 0.5rem;
    }
} 

/* 성공 메시지 스타일 */
.success-message {
    margin-top: 2rem;
    animation: slideInUp 0.5s ease;
}

.success-message-content {
    background: linear-gradient(135deg, #8e44ad 0%, #3498db 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.success-message-content i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.success-message-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.success-message-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

.success-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.9rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    line-height: 1.2;
}

.detail-item i {
    color: #ffffff;
    font-size: 1rem;
    flex-shrink: 0;
    vertical-align: baseline;
}

/* 폼 개선 스타일 */
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ffd700;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    font-weight: 700;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* 동적 필드 스타일 */
.dynamic-fields {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    animation: slideInDown 0.4s ease;
}

.dynamic-fields .form-group {
    margin-bottom: 1.2rem;
}

.dynamic-fields .form-group:last-child {
    margin-bottom: 0;
}

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

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

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

/* 지도 마커 애니메이션 */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Leaflet 지도 커스텀 스타일 */
.leaflet-container {
    border-radius: 8px;
    font-family: 'Noto Sans KR', sans-serif;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.leaflet-popup-tip {
    background: white;
}

/* 지도 버튼 호버 효과 */
.map-buttons a {
    transition: all 0.3s ease;
}

.map-buttons a:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* 복사 가능한 텍스트 스타일 */
.copyable {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 8px;
    border-radius: 5px;
    background: rgba(255, 215, 0, 0.1);
}

    .copyable:hover {
        background: rgba(255, 215, 0, 0.2);
        transform: scale(1.02);
    }

/* 추가 모바일 최적화 - 모든 모바일 기기에서 2열 레이아웃 보장 */
@media (max-width: 768px) {
    .hero-services {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        max-width: 350px !important;
        margin: 0 auto 2rem auto !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-services span {
        text-align: center !important;
        padding: 0.9rem 0.6rem !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .hero-services {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        max-width: 300px !important;
        margin: 0 auto 2rem auto !important;
    }
}