/* 골드에그 자산관리 - 12월 시안 스타일 복원 (골드 그라데이션 + 럭셔리) */

/* 골드에그 자산관리 - 럭셔리 골드 베이지 팔레트 */
:root {
    /* 배경 색상 - 웜 베이지 그라데이션 */
    --bg-warm-light: #F5EFE7;
    --bg-warm-lighter: #FAF6F0;
    --bg-gold-beige: #F0E6D8;
    --bg-white: #FFFFFF;
    --bg-cream: #FBF8F3;
    
    /* 텍스트 색상 - 다크 브라운 */
    --text-brown-dark: #3D2F1F;
    --text-brown: #4A3A2A;
    --text-brown-medium: #5C4A3A;
    --text-gray: #6B5D4F;
    
    /* 골드 색상 - 메탈릭 골드 */
    --gold-metallic: #D4AF37;
    --gold-rich: #C9A962;
    --gold-bright: #E8C571;
    --gold-deep: #B8934F;
    --gold-bronze: #A67C52;
    
    /* 서브틀 라인 */
    --line-gold-subtle: rgba(212, 175, 55, 0.25);
    --line-gold-light: rgba(201, 169, 98, 0.15);
    
    /* 그라데이션 - 웜 베이지 + 골드 */
    --gradient-gold-metallic: linear-gradient(135deg, #E8C571 0%, #D4AF37 35%, #C9A962 70%, #B8934F 100%);
    --gradient-hero-warm: linear-gradient(135deg, #FAF6F0 0%, #F5EFE7 25%, #F0E6D8 50%, #F5EFE7 75%, #FAF6F0 100%);
    --gradient-warm-overlay: linear-gradient(180deg, rgba(245, 239, 231, 0) 0%, rgba(240, 230, 216, 0.3) 100%);
    
    /* 그림자 - 서브틀 + 골드 글로우 */
    --shadow-subtle: 0 4px 20px rgba(61, 47, 31, 0.08);
    --shadow-card: 0 8px 30px rgba(61, 47, 31, 0.12);
    --shadow-gold-glow: 0 8px 35px rgba(212, 175, 55, 0.25);
    --shadow-gold-strong: 0 12px 45px rgba(212, 175, 55, 0.35);
    
    /* 기타 */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
    line-height: 1.6;
    color: var(--text-brown-dark);
    background: var(--gradient-hero-warm);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* 헤더 - 럭셔리 골드 */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--line-gold-subtle);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
}

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

.logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(201, 169, 98, 0.3));
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

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

.nav-menu a {
    font-weight: 700;
    color: var(--text-brown);
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold-metallic);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-rich);
}

.cta-btn {
    background: var(--gradient-gold-metallic);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 35px;
    font-weight: 800;
    box-shadow: var(--shadow-gold-glow);
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(61, 47, 31, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-strong);
    filter: brightness(1.05);
}

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

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gold-metallic);
    border-radius: 2px;
    transition: var(--transition);
}

/* 히어로 - 웜 골드 베이지 그라데이션 */
.hero {
    background: var(--gradient-hero-warm);
    padding: 8rem 0 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 서브틀 패턴 - 우아한 라인 */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 120px, var(--line-gold-light) 120px, var(--line-gold-light) 121px),
        repeating-linear-gradient(-45deg, transparent, transparent 120px, var(--line-gold-light) 120px, var(--line-gold-light) 121px);
    opacity: 0.4;
    pointer-events: none;
}

/* 서브틀 글로우 효과 */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: glow 6s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.08); }
}

/* 히어로 텍스트 애니메이션 */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* 로고 애니메이션 */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
    }
}

/* 텍스트 글로우 애니메이션 */
@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 4px 12px rgba(61, 47, 31, 0.15));
    }
    50% {
        filter: drop-shadow(0 4px 16px rgba(61, 47, 31, 0.25));
    }
}

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

/* 히어로 로고 */
.hero-logo-animated {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 0.6s ease-out;
}

.hero-logo-text {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoFloat 3s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
    letter-spacing: -0.02em;
}

.hero-logo-text:hover {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.6));
}

.hero-logo-img {
    height: 120px;
    width: auto;
    animation: logoFloat 3s ease-in-out infinite, logoGlow 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8));
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4A3A2A 0%, #6B5D4F 30%, #8B7355 50%, #6B5D4F 70%, #4A3A2A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.4;
    letter-spacing: -0.03em;
    filter: drop-shadow(0 4px 12px rgba(61, 47, 31, 0.15));
    animation: fadeInDown 0.8s ease-out, textGlow 4s ease-in-out infinite;
    position: relative;
}

.hero-title span {
    background: linear-gradient(135deg, #D4AF37 0%, #E8C571 25%, #F4E9CD 50%, #E8C571 75%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
    font-weight: 900;
}

.hero-subtitle {
    font-size: 2.4rem;
    background: linear-gradient(135deg, #C9A962 0%, #D4AF37 25%, #E8C571 50%, #D4AF37 75%, #C9A962 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 3px 10px rgba(212, 175, 55, 0.35));
    animation: fadeInUp 1s ease-out 0.3s both, pulse 3s ease-in-out 2s infinite;
    text-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 3.5rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 3.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line-gold-subtle);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold-metallic);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
}

.stat-label {
    font-size: 1.15rem;
    color: var(--text-brown);
    font-weight: 700;
}

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

/* 섹션 */
.section {
    padding: 7rem 0;
    background: var(--bg-warm-lighter);
    position: relative;
}

.section-alt {
    background: var(--bg-warm-light);
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.03em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-gold-metallic);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.section-subtitle {
    font-size: 1.35rem;
    color: var(--text-gray);
    margin-top: 2.5rem;
    font-weight: 600;
}

/* 버튼 - 메탈릭 골드 */
.btn {
    display: inline-block;
    padding: 1.3rem 3.2rem;
    border-radius: 40px;
    font-weight: 800;
    font-size: 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--gradient-gold-metallic);
    color: white;
    box-shadow: var(--shadow-gold-glow);
    text-shadow: 0 1px 3px rgba(61, 47, 31, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-gold-strong);
}

.btn-outline {
    background: transparent;
    color: var(--gold-rich);
    border-color: var(--gold-rich);
    border-width: 2px;
}

.btn-outline:hover {
    background: var(--gradient-gold-metallic);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-gold-glow);
}

.btn-lg {
    padding: 1.3rem 3.2rem;
    font-size: 1.1rem;
}

/* 대표소개 */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-brown-medium);
}

.about-text .greeting {
    font-size: 1.65rem;
    font-weight: 800;
    color: #4A4A4A;
    margin-bottom: 1.8rem;
}

.about-text p {
    margin-bottom: 1.8rem;
}

.about-text .highlight {
    color: var(--gold-deep);
    font-weight: 800;
    font-size: 1.35rem;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border-left: 5px solid var(--gold-metallic);
    box-shadow: var(--shadow-card);
}

/* 통계 박스 (인사말 안에 포함) */
.stats-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    border: 1px solid var(--line-gold-subtle);
    box-shadow: var(--shadow-card);
}

.stats-box-item {
    text-align: center;
    padding: 1.3rem 0.8rem;
    background: white;
    border-radius: 18px;
    border: 1px solid var(--line-gold-subtle);
    box-shadow: var(--shadow-subtle);
    position: relative;
    overflow: hidden;
}

.stats-box-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold-metallic);
}

.stats-box-number {
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.2));
}

.stats-box-label {
    font-size: 0.95rem;
    color: var(--text-brown);
    font-weight: 700;
}

/* 대표소개 통계 카드 */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line-gold-subtle);
    position: relative;
    overflow: hidden;
}

.about-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold-metallic);
}

.about-values {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line-gold-subtle);
}

.about-values h3 {
    color: #4A4A4A;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 900;
}

.value-grid {
    display: grid;
    gap: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 18px;
    border: 1px solid var(--line-gold-subtle);
    box-shadow: var(--shadow-subtle);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.25));
}

.value-item h4 {
    color: #4A4A4A;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    font-weight: 800;
}

.value-item p {
    color: var(--text-brown-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 컨설팅 카드 - 메탈릭 골드 */
.consulting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 3rem;
}

.consulting-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line-gold-subtle);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.consulting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold-metallic);
}

.consulting-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-gold-strong);
    border-color: var(--gold-metallic);
}

.consulting-icon {
    font-size: 4.5rem;
    margin-bottom: 1.8rem;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
}

.consulting-card h3 {
    color: #4A4A4A;
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.consulting-card > p {
    color: var(--text-brown-medium);
    margin-bottom: 2rem;
    line-height: 1.9;
    font-size: 1.15rem;
}

.consulting-features {
    list-style: none;
}

.consulting-features li {
    color: var(--text-brown-medium);
    padding: 0.8rem 0;
    padding-left: 2.2rem;
    position: relative;
    font-size: 1.1rem;
}

.consulting-features li::before {
    content: '✓';
    color: var(--gold-metallic);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.5rem;
}

/* 프로세스 타임라인 - 메탈릭 골드 */
.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 55px;
    top: 110px;
    bottom: -4rem;
    width: 3px;
    background: var(--gradient-gold-metallic);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 110px;
    height: 110px;
    background: var(--gradient-gold-metallic);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 900;
    box-shadow: var(--shadow-gold-strong);
    position: relative;
    z-index: 1;
    border: 3px solid white;
    text-shadow: 0 2px 4px rgba(61, 47, 31, 0.3);
}

.process-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line-gold-subtle);
}

.process-content h3 {
    color: #4A4A4A;
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.process-content p {
    color: var(--text-brown-medium);
    line-height: 2;
    font-size: 1.15rem;
}

/* 상담사례 - 메탈릭 골드 */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.case-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--line-gold-subtle);
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold-metallic);
}

.case-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-gold-strong);
    border-color: var(--gold-metallic);
}

.case-tag {
    display: inline-block;
    background: var(--gradient-gold-metallic);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    text-shadow: 0 1px 2px rgba(61, 47, 31, 0.2);
}

.case-card h3 {
    color: #4A4A4A;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    font-weight: 800;
    line-height: 1.5;
}

.case-situation,
.case-solution,
.case-result {
    margin-bottom: 1.8rem;
}

.case-situation strong,
.case-solution strong,
.case-result strong {
    color: var(--gold-deep);
    display: block;
    margin-bottom: 1rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.case-solution ul {
    list-style: none;
    margin-top: 1rem;
}

.case-solution li {
    color: var(--text-brown-medium);
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.case-solution li::before {
    content: '•';
    color: var(--gold-metallic);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.6rem;
}

.cases-note {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--gold-metallic);
    box-shadow: var(--shadow-subtle);
}

.cases-note p {
    color: var(--text-brown-medium);
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

/* 블로그 섹션 */
.blog-section {
    background: linear-gradient(135deg, #FAF6F0 0%, #F5EFE7 50%, #F0E6D8 100%);
}

.blog-content {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.blog-intro h3 {
    font-size: 2.2rem;
    color: #4A4A4A;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.blog-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-brown-medium);
    max-width: 800px;
    margin: 0 auto;
}

.blog-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.blog-feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line-gold-subtle);
    transition: var(--transition);
}

.blog-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-strong);
    border-color: var(--gold-metallic);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.25));
}

.blog-feature-card h4 {
    font-size: 1.05rem;
    color: #4A4A4A;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.blog-feature-card p {
    font-size: 0.85rem;
    color: var(--text-brown-medium);
    line-height: 1.5;
}

.blog-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--line-gold-subtle);
}

.blog-cta .btn {
    font-size: 1.3rem;
    padding: 1.3rem 3rem;
    margin-bottom: 1rem;
}

.blog-cta-note {
    color: var(--text-brown-medium);
    font-size: 1rem;
    margin-top: 1rem;
}

/* 위치 및 문의 - 탭 네비게이션 */
.contact-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-brown);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--line-gold-subtle);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tab-button:hover {
    transform: translateY(-3px);
    border-color: var(--gold-metallic);
    box-shadow: var(--shadow-gold);
}

.tab-button.active {
    background: var(--gradient-gold-metallic);
    color: white;
    border-color: var(--gold-metallic);
    box-shadow: var(--shadow-gold-strong);
}

.tab-button.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
    pointer-events: none;
    z-index: -1;
}

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

/* 탭 컨텐츠 */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

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

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

/* 구글 폼 컨테이너 */
.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line-gold-subtle);
}

.form-container h3 {
    color: #4A4A4A;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-align: center;
}

.form-description {
    color: var(--text-brown-medium);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.form-note {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold-metallic);
    border-radius: 10px;
    color: var(--text-brown-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 구글 폼 iframe 스타일 */
.form-embed-wrapper {
    position: relative;
    width: 100%;
    min-height: 1600px;
    margin-bottom: 2rem;
}

.form-container iframe {
    border: none;
    border-radius: 20px;
    background: white;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    display: block;
    overflow: hidden;
}

/* 대체 링크 스타일 */
.form-link-fallback {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 2px dashed var(--line-gold-subtle);
    margin: 2rem 0;
}

.form-link-fallback p {
    color: var(--text-brown-medium);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-link-fallback .btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

/* 위치 및 문의 - 메탈릭 골드 */
.contact-wrapper {
    display: grid;
    gap: 4rem;
}

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

.contact-method-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line-gold-subtle);
    transition: var(--transition);
}

.contact-method-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-gold-strong);
    border-color: var(--gold-metallic);
}

.primary-contact {
    background: rgba(255, 255, 255, 0.98);
    border-width: 2px;
    border-color: var(--gold-rich);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
}

.contact-method-card h3 {
    color: #4A4A4A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-method-card p {
    color: var(--text-brown-medium);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-link {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-deep);
    margin-top: 1rem;
}

.location-info,
.social-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line-gold-subtle);
}

.location-info h3,
.social-info h3 {
    color: #4A4A4A;
    font-size: 1.9rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.location-details p {
    color: var(--text-brown-medium);
    line-height: 2;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
}

.visit-note {
    background: var(--bg-warm-light);
    padding: 1.8rem;
    border-radius: 15px;
    border-left: 5px solid var(--gold-metallic);
    margin-top: 1.8rem;
}

.map-placeholder {
    background: var(--bg-warm-light);
    border-radius: 20px;
    padding: 3.5rem;
    text-align: center;
    margin-top: 2rem;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--line-gold-subtle);
}

.social-info p {
    color: var(--text-brown-medium);
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
}

.social-links-contact {
    display: grid;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem;
    background: var(--bg-warm-light);
    border-radius: 20px;
    transition: var(--transition);
    color: var(--text-brown-dark);
    font-weight: 800;
    border: 1px solid var(--line-gold-subtle);
    font-size: 1.15rem;
}

.social-link:hover {
    background: var(--gradient-gold-metallic);
    color: white;
    transform: translateX(10px);
    box-shadow: var(--shadow-gold-glow);
    border-color: transparent;
}

.social-icon {
    font-size: 2rem;
}

/* 푸터 - 다크 브라운 + 골드 */
.footer {
    background: linear-gradient(135deg, #3D2F1F 0%, #4A3A2A 100%);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold-metallic);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--gold-metallic);
    margin-bottom: 1rem;
    font-weight: 900;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.footer h4 {
    color: var(--gold-bright);
    margin-bottom: 1.2rem;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

.footer-info p,
.footer-contact p {
    font-size: 0.95rem;
    line-height: 2;
    color: rgba(255,255,255,0.85);
}

.footer h3,
.footer h4 {
    color: var(--gold-metallic);
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: 1.3rem;
}

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

.footer a {
    color: rgba(255,255,255,0.9);
}

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-links a {
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: var(--transition);
    display: inline-block;
}

.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.legal-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.copyright {
    font-size: 1rem;
    opacity: 0.75;
}

/* 맨 위로 버튼 - 메탈릭 골드 */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: var(--gradient-gold-metallic);
    color: white;
    border: 3px solid white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: var(--shadow-gold-strong);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    text-shadow: 0 2px 4px rgba(61, 47, 31, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.45);
}

/* 반응형 */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-gold);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 5rem 0 4rem;
    }
    
    .hero-logo-img {
        height: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-box {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stats-box-number {
        font-size: 2rem;
    }
    
    .consulting-grid,
    .cases-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    /* 블로그 모바일 반응형 */
    .blog-intro h3 {
        font-size: 1.8rem;
    }
    
    .blog-description {
        font-size: 1.05rem;
    }
    
    .blog-features {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .blog-feature-card {
        padding: 1.2rem 0.8rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .blog-feature-card h4 {
        font-size: 1rem;
    }
    
    /* 푸터 모바일 반응형 */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .footer-brand {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 1rem;
    }
    
    .footer h4 {
        font-size: 1.1rem;
    }
    
    .footer-info p,
    .footer-contact p {
        font-size: 0.9rem;
    }
    
    .footer-legal {
        padding-top: 2rem;
        margin-top: 2rem;
    }
    
    .legal-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    }
    
    .blog-feature-card p {
        font-size: 0.8rem;
    }
    
    .blog-cta {
        padding: 2rem 1.5rem;
    }
    
    .blog-cta .btn {
        font-size: 1.15rem;
        padding: 1.1rem 2rem;
    }
    
    /* 탭 모바일 반응형 */
    .contact-tabs {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .tab-button {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
    }
    
    /* 연락 카드 모바일 반응형 */
    .contact-method-card {
        padding: 2.5rem 2rem;
    }
    
    .contact-icon {
        font-size: 3rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-method-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-method-card p {
        font-size: 0.9rem;
    }
    
    .contact-link {
        font-size: 1.15rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 1.1rem 2.5rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-container h3 {
        font-size: 1.7rem;
    }
    
    .form-description {
        font-size: 1rem;
    }
    
    .process-step {
        grid-template-columns: 90px 1fr;
        gap: 2rem;
    }
    
    .process-number {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .process-step::after {
        left: 45px;
    }
}
