/* 기본 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* 헤더 */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.logo {
    position: absolute;
    left: 0;
}

.logo h1 {
    color: #000;
    font-size: 28px;
    font-weight: 900;
}

.logo-image {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* 메인 네비게이션 */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ffd700;
}

.main-nav a:active,
.main-nav a.active {
    color: #ff0000 !important;
}

/* 드롭다운 메뉴 */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.4;
}

.dropdown-menu a:hover {
    background: #ffd700;
    color: #000;
    transform: translateX(5px);
}

.dropdown-menu a:active,
.dropdown-menu a.active {
    color: #ff0000 !important;
}

.quote-btn {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* 히어로 섹션 */
.hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    margin-bottom: 60px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight {
    color: #f39c12;
}

.consultation-btn {
    background: #f39c12;
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.consultation-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

/* 통계 섹션 */
.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #ffd700 !important;
    margin-bottom: 10px;
    background: none !important;
    padding: 0 !important;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* 애니메이션 텍스트 */
.animated-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    overflow: hidden;
    white-space: nowrap;
}

.animated-text span {
    display: inline-block;
    animation: scroll 20s linear infinite;
    font-size: 14px;
    opacity: 0.7;
    font-weight: 300;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* 서비스 소개 섹션 */
.services-intro {
    padding: 80px 0;
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

.about-btn {
    background: transparent;
    border: 2px solid #ddd;
    color: #333;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.about-btn:hover {
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-2px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: #ffd700;
    border-color: #ffd700;
}

.service-card:hover .card-title,
.service-card:hover .card-description {
    color: rgb(0, 0, 0);
}

.service-card:hover .card-number {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.service-card:hover .card-icon i {
    color: white;
}

.service-card.featured {
    background: #ffd700;
    color: #000;
    border-color: #ffd700;
}

.service-card.featured .card-title,
.service-card.featured .card-description {
    color: white;
}

.card-number {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    background: rgba(0, 0, 0, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card.featured .card-number {
    color: rgb(0, 0, 0);
    background: rgba(255, 255, 255, 0.2);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 40px;
    line-height: 1.3;
}

.card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-icon {
    text-align: center;
    margin-top: 20px;
}

.card-icon i {
    font-size: 32px;
    color: #000000;
    opacity: 0.8;
}

.service-card.featured .card-icon i {
    color: white;
}

/* 서비스 슬라이더 */
/* 기존 awards-slider는 다른 용도로 사용 */
.awards-slider:not(.awards-slider-container .awards-slider) {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
}

.service-slide {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.slide:hover .slide-overlay {
    transform: translateY(0);
}

.slide:hover .slide-image {
    transform: scale(1.05);
}

.slide-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.slide-description {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.slide-link {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.slide-link:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* 슬라이더 네비게이션 */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.5);
    color: #ffd700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffd700;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 215, 0, 0.7);
}

/* 페이지별 스타일 */
.page-hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.company-intro {
    padding: 80px 0;
    background: #fff;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-text {
    flex: 1;
}

.intro-text h3 {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 10px;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #000;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}

.intro-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.core-values {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.core-values h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #000;
    font-size: 32px;
}

.value-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.value-item p {
    color: #000;
    line-height: 1.6;
}

.team-intro {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.team-intro h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-item i {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-item p {
    color: #666;
}

.service-intro {
    padding: 80px 0;
    background: #fff;
}

.service-intro .intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-intro .intro-text {
    flex: 1;
}

.service-intro .intro-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-intro .intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}

.service-intro .service-image {
    flex: 1;
}

.service-features {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.service-features h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.case-studies {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.case-studies h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.case-item {
    text-align: center;
}

.case-number {
    font-size: 48px;
    font-weight: 900;
    color: #e74c3c;
    margin-bottom: 10px;
}

.case-description {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    text-align: center;
}

.contact-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.consultation-btn {
    background: #f39c12;
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.consultation-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}


/* 서비스 섹션 */
.services {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.section-header h3 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-description {
    max-width: 800px;
    margin: 0 auto;
}

.service-description p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #666;
}

/* 플레이스 마케팅 섹션 */
.place-marketing {
    padding: 80px 0;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    text-align: center;
}

.marketing-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.marketing-content p {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.free-consultation-btn {
    background: #f39c12;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.free-consultation-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

/* 문의 폼 섹션 */
.contact-form {
    padding: 80px 0;
    background: #fff;
}

.contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
}

.contact-right {
    flex: 1;
}

/* 일러스트레이션 */
.contact-illustration {
    margin-bottom: 40px;
}

.illustration-container {
    position: relative;
    width: 100%;
    height: 300px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
}

.illustration-person {
    position: absolute;
}

.illustration-person.woman {
    left: 20px;
    top: 50px;
}

.illustration-person.man {
    right: 20px;
    top: 60px;
}

.person-head {
    width: 30px;
    height: 30px;
    background: #8B4513;
    border-radius: 50%;
    margin-bottom: 5px;
}

.person-body {
    width: 40px;
    height: 50px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.person-body.yellow {
    background: #FFD700;
}

.person-body.blue {
    background: #87CEEB;
}

.person-skirt {
    width: 45px;
    height: 30px;
    background: #87CEEB;
    border-radius: 0 0 8px 8px;
}

.person-arm {
    position: absolute;
    left: 45px;
    top: 10px;
    width: 20px;
    height: 3px;
    background: #8B4513;
    border-radius: 2px;
}

.person-hand {
    position: absolute;
    right: -5px;
    top: 15px;
    width: 15px;
    height: 15px;
    background: #8B4513;
    border-radius: 50%;
}

.illustration-shapes {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.main-rectangle {
    width: 120px;
    height: 80px;
    background: #D2B48C;
    border-radius: 10px;
    position: relative;
    padding: 10px;
}

.shape {
    position: absolute;
    border-radius: 4px;
}

.shape.pink {
    width: 20px;
    height: 15px;
    background: #FFB6C1;
    top: 10px;
    left: 10px;
}

.shape.blue {
    width: 25px;
    height: 20px;
    background: #87CEEB;
    top: 30px;
    left: 15px;
}

.shape.yellow {
    width: 18px;
    height: 12px;
    background: #FFD700;
    top: 50px;
    left: 20px;
}

.pencil {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: #FFD700;
    border-radius: 4px;
}

.pencil::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #808080;
    border-radius: 50%;
}

.decoration-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.thumbs-up {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 20px;
}

.dots {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.blue-dot {
    background: #87CEEB;
    top: 100px;
    left: 30px;
}

.yellow-dot {
    background: #FFD700;
    bottom: 50px;
    right: 40px;
}

.dashed-lines {
    position: absolute;
    top: 150px;
    left: 10px;
    width: 40px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #ccc 0px,
        #ccc 5px,
        transparent 5px,
        transparent 10px
    );
}

.contact-intro h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* 폼 스타일 */
.contact-form-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

/* 전화번호 입력 */
.phone-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-inputs input {
    flex: 1;
    text-align: center;
}

.phone-separator {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

/* 개인정보 동의 */
.privacy-agreement {
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
}

.privacy-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.required {
    color: #e74c3c;
    font-weight: 700;
    margin-right: 5px;
}

/* .privacy-content {
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 12px;
    line-height: 1.5;
    color: #666;
} */

.privacy-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 15px 0 10px 0;
}

.privacy-details ul {
    margin: 10px 0;
    padding-left: 20px;
}

.privacy-details li {
    margin-bottom: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.2);
}

.submit-btn {
    width: 100%;
    background: #ffd700;
    color: #000;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* 푸터 */
.footer {
    background: #000;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.company-info p {
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    justify-content: center;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-links span {
    color: #fff;
    margin: 0 10px;
    opacity: 0.5;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.6;
}

/* 모달 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    z-index: 10;
}

.modal-header h3 {
    margin: 0;
    color: #fff;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.modal-body {
    padding: 20px;
}



.confirm-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 20px;
}

/* 반응형 디자인 */
/* 햄버거 메뉴 버튼 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

/* 햄버거 버튼이 항상 보이도록 */
.mobile-menu-toggle.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 0px 0;
    }
    
    .logo-image {
        height: 150px;
        max-width: 100%;
    }
    
    /* 햄버거 메뉴 버튼 표시 */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
        position: relative;
        padding: 20px 0;
        min-height: 100px;
    }
    
    .mobile-menu-toggle {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10005;
    }
    
    /* 모바일 메뉴가 열렸을 때도 햄버거 버튼이 보이도록 */
    .mobile-menu-toggle.active {
        z-index: 10006;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* 모바일에서 메인 네비게이션 숨김 */
    .main-nav {
        display: none;
    }
    
    /* 모바일 메뉴가 열렸을 때 */
    .main-nav.mobile-open {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 10002;
        padding: 80px 30px 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    
    .main-nav.mobile-open.active {
        transform: translateX(0);
    }
    
    .main-nav.mobile-open ul {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        width: 100%;
    }
    
    .main-nav.mobile-open li {
        width: 100%;
    }
    
    .main-nav.mobile-open li a {
        display: block;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        pointer-events: auto;
        cursor: pointer;
        z-index: 10004;
        position: relative;
    }
    
    .main-nav.mobile-open li a:active,
    .main-nav.mobile-open li a.active {
        color: #ff0000 !important;
    }
    
    .main-nav.mobile-open .dropdown {
        position: relative;
    }
    
    .main-nav.mobile-open .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        pointer-events: auto;
        cursor: pointer;
        z-index: 10004;
        position: relative;
    }
    
    .main-nav.mobile-open .dropdown-toggle:active,
    .main-nav.mobile-open .dropdown.active .dropdown-toggle {
        color: #ff0000 !important;
    }
    
    .main-nav.mobile-open .dropdown-menu {
        position: static;
        display: none;
        background: #f8f9fa;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        width: 100%;
        max-height: none;
        overflow: visible;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }
    
    .main-nav.mobile-open .dropdown.active .dropdown-menu {
        display: block;
        max-height: none;
        overflow: visible;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .main-nav.mobile-open .dropdown-menu li {
        border-bottom: none;
    }
    
    .main-nav.mobile-open .dropdown-menu a {
        padding: 10px 20px;
        font-size: 14px;
        color: #666;
        border-bottom: none;
        pointer-events: auto;
        cursor: pointer;
        z-index: 10004;
        position: relative;
    }
    
    .main-nav.mobile-open .dropdown-menu a:active,
    .main-nav.mobile-open .dropdown-menu a.active {
        color: #ff0000 !important;
    }
    
    .main-nav.mobile-open .dropdown-menu a:hover {
        background: #e9ecef;
        color: #333;
    }
    
    .main-nav.mobile-open .quote-btn {
        margin: 15px 0 0 0 !important;
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        background: #ffd700;
        color: #333;
        border: none;
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
        transition: all 0.3s ease;
        display: block;
        pointer-events: auto;
        cursor: pointer;
        z-index: 10004;
        position: relative;
    }
    
    .main-nav.mobile-open .quote-btn:hover {
        background: #ffed4e;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
    }
    
    
    /* 모바일 메뉴 오버레이 */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        z-index: 10001;
        pointer-events: none;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    /* 모바일 드롭다운 */
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        margin-top: 10px;
        border-radius: 5px;
        display: none;
        transition: all 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-toggle i {
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    /* 모바일에서 드롭다운 기본 상태는 숨김 */
    .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
        overflow: visible;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-header h3 {
        font-size: 28px;
    }
    
    .marketing-content h3 {
        font-size: 28px;
    }
    
    .contact-form h3 {
        font-size: 28px;
    }
    
    /* 서비스 섹션 반응형 */
    .services-header h2 {
        font-size: 36px;
    }
    
    .services-header p {
        font-size: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .card-title {
        font-size: 18px;
        margin-top: 35px;
    }
    
    .card-description {
        font-size: 13px;
    }
    
    .card-icon i {
        font-size: 28px;
    }
    
    /* 슬라이더 반응형 */
    .service-slide {
        height: 300px;
    }
    
    .slide-overlay {
        padding: 30px 20px 20px;
    }
    
    .slide-title {
        font-size: 22px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .slide-link {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .slider-nav {
        gap: 15px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* 회사소개 페이지 모바일 스타일 */
    .company-intro {
        padding: 40px 0;
    }
    
    .intro-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .intro-text h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .intro-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .intro-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .intro-description {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        padding: 0 5px !important;
        text-align: justify;
        word-break: keep-all;
    }
    
    .intro-stats {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    
    .stat-item {
        min-width: 70px;
        padding: 10px 5px;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(255, 215, 0, 0.3);
    }
    
    .stat-number {
        font-size: 20px;
        margin-bottom: 3px;
        font-weight: 800;
    }
    
    .stat-label {
        font-size: 11px;
        font-weight: 500;
        color: #555;
    }
    
    .core-values {
        padding: 40px 0;
    }
    
    .core-values h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
    }
    
    .value-icon i {
        font-size: 24px;
    }
    
    .value-item h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .value-item p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .services, .place-marketing, .contact-form {
        padding: 60px 0;
    }
    
    /* 회사소개 페이지 초소형 모바일 스타일 */
    .company-intro {
        padding: 30px 0;
    }
    
    .intro-text h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .intro-text h2 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .intro-description {
        font-size: 12px !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
        padding: 0 3px !important;
    }
    
    .intro-stats {
        gap: 10px;
        margin-top: 15px;
    }
    
    .stat-item {
        min-width: 60px;
        padding: 8px 3px;
    }
    
    .stat-number {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .consultation-btn, .free-consultation-btn {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    /* 서비스 섹션 모바일 */
    .services-header h2 {
        font-size: 28px;
    }
    
    .services-header p {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .card-title {
        font-size: 16px;
        margin-top: 30px;
    }
    
    .card-description {
        font-size: 12px;
    }
    
    .card-icon i {
        font-size: 24px;
    }
    
    /* 문의 폼 반응형 */
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-illustration {
        margin-bottom: 30px;
    }
    
    .illustration-container {
        height: 250px;
    }
    
    .contact-intro h3 {
        font-size: 28px;
    }
    
    .contact-form-content {
        padding: 30px 20px;
    }
    
    .phone-inputs {
        flex-direction: column;
        gap: 10px;
    }
    
    .phone-separator {
        display: none;
    }
    
    .privacy-content {
        max-height: 150px;
        font-size: 11px;
    }
}

/* 새로 추가된 섹션 스타일 */

/* 관리 프로세스 스타일 */
.management-process {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.management-process h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.step-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.large-modal {
    width: 700px;
    height: 500px;
    max-width: 85vw;
    max-height: 70vh;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid #e9ecef;
    height: 60px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    border-radius: 15px 15px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 25px;
    height: calc(500px - 60px);
    overflow-y: auto;
    box-sizing: border-box;
}

/* 스크롤바 스타일 통일 */
.modal-body::-webkit-scrollbar {
    width: 10px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 5px;
    border: 1px solid #e6c200;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
    border: 1px solid #d4b800;
}

.modal-body::-webkit-scrollbar-thumb:active {
    background: #e6c200;
}

/* Firefox 스크롤바 스타일 */
.modal-body {
    scrollbar-width: thin;
    scrollbar-color: #ffd700 #f5f5f5;
}

/* 모든 브라우저에서 스크롤바 통일 */
.modal-body {
    overflow-y: scroll !important;
}

.privacy-content,
.terms-content {
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.privacy-content h4,
.terms-content h4 {
    color: #2c3e50;
    margin: 20px 0 12px 0;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 5px;
}

.privacy-content p,
.terms-content p {
    margin-bottom: 16px;
    color: #444;
    text-align: justify;
}

.privacy-content ul,
.terms-content ul {
    margin: 15px 0 20px 25px;
}

.privacy-content li,
.terms-content li {
    margin-bottom: 8px;
    color: #444;
    line-height: 1.6;
}

}

.privacy-content h4:first-child,
.terms-content h4:first-child {
    margin-top: 0;
}

.privacy-content p,
.terms-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.privacy-content ul,
.terms-content ul {
    margin: 10px 0 15px 20px;
}

.privacy-content li,
.terms-content li {
    margin-bottom: 8px;
    font-size: 14px;
}

.privacy-content strong,
.terms-content strong {
    color: #000;
    font-weight: 700;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* 언론보도자료 섹션 */
.press-release {
    padding: 80px 0;
    background: #f8f9fa;
}

.press-release .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.press-release h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.press-release p {
    font-size: 18px;
    color: #000;
}

.press-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.press-slide {
    display: none;
    text-align: center;
}

.press-slide.active {
    display: block;
}

.press-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 상품안내 섹션 */
.product-information {
    padding: 80px 0;
    background: #fff;
}

.product-information .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.product-information h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.product-information p {
    font-size: 18px;
    color: #000;
}

.product-image-container {
    text-align: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 상품안내이미지 섹션 */
.product-images {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-images h3 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.product-images p {
    text-align: center;
    font-size: 18px;
    color: #000;
    margin-bottom: 50px;
}

.product-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.product-placeholder {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px dashed #ddd;
}

.product-placeholder i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.product-placeholder p {
    color: #999;
    font-size: 16px;
    margin: 0;
}

/* 문의하기 섹션 */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
}

.contact-section h3 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section > .container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.kakao-contact {
    text-align: center;
}

.kakao-contact h4 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 280px;
    height: 70px;
    justify-content: center;
    font-size: 18px;
    box-sizing: border-box;
}

.kakao-btn {
    background: #fee500;
    color: #3c1e1e;
    border: 2px solid #fee500;
}

.kakao-btn:hover {
    background: #ffed4e;
    border-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 229, 0, 0.3);
}

.phone-btn {
    background: #00ff00;
    color: #000000;
    border: 2px solid #000;
}

.phone-btn:hover {
    background: #39ff14; /* 연한초록색 */
    color: #000; /* 가독성을 위해 검정색 유지 */
    border-color: #39ff14;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}

.contact-btn i {
    font-size: 28px;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255,255,255,0.9);
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #ffd700;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 마지막 메시지 섹션 */
.final-message {
    padding: 80px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.message-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
    color: #ffd700;
}

.message-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .product-images {
        padding: 60px 0;
    }
    
    .product-images h3 {
        font-size: 28px;
    }
    
    .product-placeholder {
        padding: 40px 20px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section h3 {
        font-size: 28px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-buttons {
        gap: 15px;
    }
    
    .contact-btn {
        width: 240px;
        height: 65px;
        padding: 20px 36px;
        font-size: 17px;
    }
    
    .contact-btn i {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* 플로팅 버튼 */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.floating-btn i {
    font-size: 26px;
    margin-bottom: 3px;
}

.floating-btn .btn-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.floating-btn:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.kakao-float {
    background: #fee500 !important;
    color: #3c1e1e !important;
    border: 2px solid #3c1e1e !important;
}

.kakao-float:hover {
    background: #ffed4e !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(254, 229, 0, 0.4);
}

.phone-float {
    background: #00ff00 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
}

.phone-float:hover {
    background: #39ff14 !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.4);
}

/* 플로팅 버튼 모바일 */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
    
    .floating-btn i {
        font-size: 22px;
    }
    
    .floating-btn .btn-text {
        font-size: 10px;
    }
}
    
    .final-message {
        padding: 60px 0;
    }
    
    .message-content h3 {
        font-size: 24px;
    }
    
    .message-content p {
        font-size: 16px;
    }
    
    /* 언론보도자료 반응형 */
    .press-release {
        padding: 60px 0;
    }
    
    .press-release h2 {
        font-size: 28px;
    }
    
    /* 상품안내 반응형 */
    .product-information {
        padding: 60px 0;
    }
    
    .product-information h2 {
        font-size: 28px;
    }
    
    /* 히어로 서브타이틀 반응형 */
    .hero-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    /* 모달 반응형 */
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }
    
    .large-modal {
        width: 90vw;
        height: 70vh;
        max-width: 90vw;
        max-height: 70vh;
    }
    
    .modal-header {
        padding: 12px 18px;
        height: 50px;
        box-sizing: border-box;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 18px;
        height: calc(70vh - 50px);
        overflow-y: auto;
        box-sizing: border-box;
    }
    
    .privacy-content,
    .terms-content {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .privacy-content h4,
    .terms-content h4 {
        font-size: 17px;
        margin: 18px 0 10px 0;
        border-bottom: 1px solid #ffd700;
        padding-bottom: 3px;
    }
    
    .privacy-content p,
    .terms-content p {
        margin-bottom: 15px;
        text-align: left;
    }
    
    .privacy-content ul,
    .terms-content ul {
        margin: 12px 0 15px 20px;
    }
    
    .privacy-content li,
    .terms-content li {
        margin-bottom: 6px;
    }
    
    /* 모바일 스크롤바 스타일 통일 */
    .modal-body::-webkit-scrollbar {
        width: 8px;
    }
    
    .modal-body::-webkit-scrollbar-track {
        background: #f5f5f5;
        border-radius: 4px;
    }
    
    .modal-body::-webkit-scrollbar-thumb {
        background: #ffd700;
        border-radius: 4px;
        border: 1px solid #e6c200;
    }
    
    .modal-body::-webkit-scrollbar-thumb:hover {
        background: #ffed4e;
    }

/* 상품안내 페이지 스타일 */
.product-intro {
    padding: 80px 0;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ffd700;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #000;
    font-size: 32px;
}

.product-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.product-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.product-features li {
    padding: 8px 0;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

/* 패키지 섹션 */
.package-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.premium {
    border: 3px solid #ffd700;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-header h4 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.package-price {
    font-size: 36px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 30px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features i {
    color: #ffd700;
    font-size: 16px;
}

.package-btn {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.package-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

/* 수상 내역 섹션 */
.awards-section {
    padding: 80px 0;
    background: #fff;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.award-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 5px solid #ffd700;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.award-year {
    font-size: 24px;
    font-weight: 900;
    color: #ffd700;
    min-width: 80px;
    text-align: center;
}

.award-content {
    flex: 1;
}

.award-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.award-category {
    font-size: 16px;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 8px;
}

.award-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.award-icon {
    font-size: 32px;
    color: #ffd700;
}

/* 수상 이미지 슬라이드 */
.awards-slider-container {
    margin-top: 60px !important;
    position: relative !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 30px !important;
    background: #fff !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    border: 3px solid #ffd700 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.slider-title {
    text-align: center;
    margin-bottom: 30px;
}

.slider-title h4 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.slider-title p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* 수상 이미지 슬라이드 - 강제로 슬라이드 작동 */
.awards-slider-container .awards-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 400px;
}

.awards-slider-container .award-slide {
    display: none !important;
    text-align: center;
    width: 100% !important;
    height: 100% !important;
}

.awards-slider-container .award-slide.active {
    display: block !important;
}

.awards-slider-container .award-image {
    max-width: 80% !important;
    height: 350px !important;
    object-fit: contain !important;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block !important;
    margin: 0 auto !important;
}

.simple-award-slider {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    overflow: hidden;
}

.award-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.award-img.active {
    opacity: 1;
}

.award-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.award-controls button {
    background: #ffd700;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.award-controls button:hover {
    background: #ffed4e;
    transform: scale(1.1);
}

/* 이미지 로드 실패 시 대체 스타일 */
.award-image:not([src]),
.award-image[src=""] {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.award-image:not([src])::before,
.award-image[src=""]::before {
    content: "수상 내역 이미지";
}

/* 수상 슬라이드 컨트롤 전용 */
.awards-slider-container .slider-controls {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
    pointer-events: none !important;
    z-index: 10 !important;
}

.awards-slider-container .slider-btn {
    background: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    pointer-events: auto !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.awards-slider-container .slider-btn:hover {
    background: #fff !important;
    transform: scale(1.1) !important;
}

.awards-slider-container .slider-btn i {
    font-size: 18px !important;
    color: #333 !important;
}

.awards-slider-container .slider-dots {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 20px !important;
}

.awards-slider-container .dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #ddd !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.awards-slider-container .dot.active {
    background: #ffd700 !important;
    transform: scale(1.2) !important;
}

.awards-slider-container .dot:hover {
    background: #ffd700 !important;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .award-image {
        height: 250px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn i {
        font-size: 14px;
    }
    
    .slider-controls {
        padding: 0 10px;
    }
}

/* 고객 성과 섹션 */
.client-results {
    padding: 80px 0;
    background: #f8f9fa;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.result-item {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.result-number {
    font-size: 48px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 15px;
}

.result-label {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.result-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 인증서 섹션 */
.certifications {
    padding: 80px 0;
    background: #fff;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cert-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ffd700;
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #000;
    font-size: 32px;
}

.cert-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.cert-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card.premium {
        transform: none;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .award-card {
        flex-direction: column;
        text-align: center;
    }
    
    .award-year {
        min-width: auto;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .result-number {
        font-size: 36px;
    }
    
    .package-header h4 {
        font-size: 24px;
    }
    
    .package-price {
        font-size: 28px;
    }
}

/* 팝업 스타일 */
.popup-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: transparent !important;
    z-index: 1 !important;
    display: flex !important; /* 기본적으로 표시 */
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    padding: 20px !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important; /* 클릭 이벤트 비활성화 */
}

.popup {
    position: relative !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    max-width: 350px !important;
    width: 90% !important;
    min-width: 280px !important;
    animation: popupFadeIn 0.5s ease-out !important;
    display: block !important; /* 기본적으로 표시 */
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2 !important;
    pointer-events: auto !important; /* 팝업은 클릭 이벤트 활성화 */
}

.popup.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    z-index: -1 !important;
}

.popup-content {
    padding: 20px;
    text-align: center;
}

.popup-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.popup-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.popup-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.close-btn {
    background-color: #6c757d;
    color: white;
}

.close-btn:hover {
    background-color: #5a6268;
}

.dont-show-btn {
    background-color: #007bff;
    color: white;
}

.dont-show-btn:hover {
    background-color: #0056b3;
}

/* 팝업 위치 조정 */
.popup-1 {
    position: absolute !important;
    top: 10% !important;
    left: 10% !important;
    display: block !important;
    visibility: visible !important;
}

.popup-2 {
    position: absolute !important;
    top: 10% !important;
    right: 10% !important;
    display: block !important;
    visibility: visible !important;
}

.popup-3 {
    position: absolute !important;
    bottom: 10% !important;
    left: 10% !important;
    display: block !important;
    visibility: visible !important;
}

.popup-4 {
    position: absolute !important;
    bottom: 10% !important;
    right: 10% !important;
    display: block !important;
    visibility: visible !important;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .popup-overlay {
        flex-direction: column;
        justify-content: flex-start;
        padding: 10px;
        gap: 10px;
    }
    
    .popup {
        position: static !important;
        max-width: 95% !important;
        width: 95% !important;
        margin: 0 auto !important;
    }
    
    .popup-1, .popup-2, .popup-3, .popup-4 {
        position: static !important;
        margin-bottom: 10px !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .popup-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .popup-btn {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .popup {
        max-width: 95%;
    }
    
    .popup-content {
        padding: 15px;
    }
    
    .popup-image {
        margin-bottom: 10px;
    }
}