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

html {
    scroll-behavior: smooth;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    max-width: 414px;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    position: relative;
    width: 100%;
}

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

/* 헤더 스타일 */
header {
    background-color: transparent !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-left: 4px solid #000;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    backdrop-filter: none;
    width: 100%;
}

header.scrolled {
    background-color: #fff !important;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.logo-en {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-bottom: 2px;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

header.scrolled .logo-en {
    color: #8B7355;
}

.logo-en::after {
    content: '—';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 14px;
    transition: color 0.3s ease;
}

header.scrolled .logo-en::after {
    color: #8B7355;
}

.logo-ko {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-top: 2px;
    transition: color 0.3s ease;
}

header.scrolled .logo-ko {
    color: #333;
}

.main-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.main-nav ul li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    position: relative;
    text-align: center;
}

header.scrolled .main-nav ul li a {
    color: #333;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #fff;
}

header.scrolled .main-nav ul li a:hover,
header.scrolled .main-nav ul li a.active {
    color: #333;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease, background-color 0.3s ease;
}

header.scrolled .main-nav ul li a::after {
    background-color: #333;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.submenu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 150px;
    padding: 10px 0;
    z-index: 1000;
}

.has-submenu:hover .submenu {
    display: block !important;
}

.submenu li {
    display: block;
}

.submenu li a {
    padding: 10px 20px;
}

/* 메인 컨텐츠 */
main {
    min-height: calc(100vh - 200px);
}

/* 캐러셀 */
.main-carousel {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 섹션 스타일 */
.intro-section,
.service-section,
.map-section,
.customer-service {
    padding: 60px 0;
}

.intro-section {
    background: #fff;
    color: #333;
    text-align: center;
    padding-bottom: 20px;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.service-section {
    background: #fff;
}

/* 이미지 갤러리 섹션 */
.image-gallery-section {
    padding: 20px 0;
    margin-top: -40px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.gallery-scroll-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 20px;
    box-sizing: border-box;
}

.gallery-scroll-wrapper {
    display: flex;
    gap: 15px;
    width: fit-content;
    animation: scrollGallery 30s linear infinite;
}

.gallery-scroll-wrapper .gallery-image-item {
    width: calc((100vw - 40px - 15px) / 2);
    max-width: calc((414px - 40px - 15px) / 2);
    aspect-ratio: 16 / 9;
    min-height: 280px;
}

.gallery-scroll-wrapper:hover {
    animation-play-state: paused;
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 갤러리 페이지 전용 그리드 */
.gallery-content-wrapper .image-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* 메인 페이지 갤러리 그리드 (스크롤용) - 갤러리 페이지가 아닌 경우 */
.gallery-scroll-container .image-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 115%;
    margin: 0 auto 0 -30px;
    padding: 0 20px;
}

.gallery-image-item {
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 280px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

/* 갤러리 페이지 전용 이미지 아이템 크기 */
.gallery-content-wrapper .image-gallery-grid .gallery-image-item {
    aspect-ratio: 4 / 3;
    min-height: 200px;
    border-radius: 12px;
}

.gallery-scroll-wrapper .gallery-image-item {
    opacity: 1;
    transform: none;
}

.gallery-image-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(139, 115, 85, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-image-item.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: gallerySlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.gallery-scroll-wrapper .gallery-image-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.gallery-image-item:hover::before {
    opacity: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1);
}

.gallery-scroll-wrapper .gallery-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery-image-item:hover .gallery-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* 이미지 오버레이 스타일 */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 2;
    transition: all 0.4s ease;
}

.gallery-image-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
}

.gallery-text {
    margin-bottom: 15px;
    width: 100%;
}

.gallery-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.gallery-btn {
    background-color: #8B7355;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-btn:hover {
    background-color: #6b5a3f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes gallerySlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 서비스 피처 이미지 좌우 슬라이드 애니메이션 */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px) scale(0.9) rotateY(-15deg);
    }
    60% {
        transform: translateX(10px) scale(1.02) rotateY(2deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0deg);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(80px) scale(0.9) rotateY(15deg);
    }
    60% {
        transform: translateX(-10px) scale(1.02) rotateY(-2deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0deg);
    }
}

@media (max-width: 1024px) {
    .image-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-content-wrapper {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .gallery-page-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .gallery-image-item {
        width: 100%;
        height: 280px;
    }
    
    .gallery-scroll-wrapper .gallery-image {
        height: 280px;
    }
    
    .gallery-scroll-wrapper {
        gap: 12px;
    }
    
    .image-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .gallery-content-wrapper .image-gallery-grid {
        gap: 8px;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .gallery-content-wrapper .image-gallery-grid .gallery-image-item {
        aspect-ratio: 4 / 3;
        min-height: 180px;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .gallery-content-wrapper .gallery-image {
        height: 100%;
    }
}

/* 갤러리 페이지 전용 스타일 */
.gallery-content-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.gallery-page-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

/* 갤럭시 S8+ 기준 (360px) */
@media (max-width: 360px) {
    .gallery-content-wrapper {
        max-width: 100%;
        margin: 25px auto;
        padding: 0 10px;
    }
    
    .gallery-page-title {
        font-size: 20px;
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .gallery-scroll-container {
        padding: 0 10px;
    }
    
    .gallery-scroll-wrapper .gallery-image-item {
        width: calc((100vw - 20px - 8px) / 2);
        max-width: calc((360px - 20px - 8px) / 2);
        aspect-ratio: 16 / 9;
        min-height: 200px;
        border-radius: 10px;
    }
    
    .gallery-scroll-wrapper .gallery-image {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .gallery-scroll-wrapper {
        gap: 8px;
    }
    
    .image-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .gallery-content-wrapper .image-gallery-grid {
        gap: 8px;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .gallery-content-wrapper .image-gallery-grid .gallery-image-item {
        aspect-ratio: 4 / 3;
        min-height: 150px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-content-wrapper .gallery-image {
        height: 100%;
    }
    
    .map-title {
        font-size: 24px;
    }
    
    .map-title-en {
        font-size: 12px;
        display: inline;
        margin-left: 0;
        margin-top: 3px;
    }
    
    .map-description {
        font-size: 14px;
    }
    
    .map-phone,
    .map-mobile {
        font-size: 16px;
    }
}

.service-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2f66ed;
}

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

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2f66ed;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
}

/* 버튼 스타일 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2c5aa0;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #2f66ed;
}

/* 지도 섹션 */
.map-section {
    padding: 0 0 100px 0;
    background: #fff;
}

.map-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.map-wrapper {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 40px;
    position: relative;
}

.map-iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.map-info-top {
    text-align: center;
    padding: 0;
    margin-bottom: 0;
}

.map-title {
    font-size: 36px;
    text-align: center;
    color: #333;
    font-weight: 700;
}

.map-title-en {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-left: 8px;
    letter-spacing: 1px;
    display: inline;
}

.map-description {
    margin: 0 0 25px 0;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.map-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.map-phone,
.map-mobile {
    margin: 0;
    font-size: 28px;
    color: #000;
    font-weight: 700;
}

.map-phone strong,
.map-mobile strong {
    color: #000;
    margin-right: 10px;
    font-weight: 700;
}

/* 고객센터 */
.customer-service {
    background: #2c5aa0;
    color: #fff;
    text-align: center;
}

.customer-service h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.customer-service .phone {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

/* 히어로 이미지 섹션 */
.hero-image-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: auto;
    min-height: 60vh;
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    z-index: 1;
}

.hero-image-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-section .hero-main-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    padding-top: 80px;
}

.hero-title-main {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-subtitle {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.hero-title.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

/* 페이지 헤더 */
.page-header {
    background: #fff;
    color: #333;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
}

/* 페이지 컨텐츠 */
.page-content {
    padding: 40px 0;
    background: #fff;
}

/* 컨텐츠 섹션 */
.content-section {
    padding: 40px 0;
    background: #fff;
    margin-bottom: 20px;
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5aa0;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.content-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section .lead {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-left: 0;
}

.feature-list li {
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.activity-list {
    list-style: none;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.activity-list li {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #000;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.info-item h3 {
    margin-top: 0;
    color: #2c5aa0;
    font-size: 18px;
}

.contact-info {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
}

.about-content,
.service-content,
.location-content {
    max-width: 800px;
    margin: 0 auto;
}

/* 센터소개 메인 이미지 */
.about-hero-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-hero-image .hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.about-content h2,
.service-content h2,
.location-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5aa0;
}

.about-content h3,
.service-content h3,
.location-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.about-content ul,
.service-content ul,
.location-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.about-content li,
.service-content li,
.location-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.about-content ol,
.service-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.contact-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

.contact-box h3 {
    margin-bottom: 15px;
}

.contact-box .phone {
    font-size: 20px;
    font-weight: bold;
    color: #2c5aa0;
    margin: 15px 0;
}

/* 공지사항 테이블 */
.notice-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.notice-table th,
.notice-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.notice-table th {
    background-color: #2c5aa0;
    color: #fff;
    font-weight: bold;
}

.notice-table td a {
    color: #333;
    text-decoration: none;
}

.notice-table td a:hover {
    color: #2c5aa0;
    text-decoration: underline;
}

/* 문의 폼 */
.inquiry-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-group button {
    width: 100%;
}

.contact-info {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 15px;
}

.contact-info .phone {
    font-size: 24px;
    font-weight: bold;
    color: #2c5aa0;
    margin: 10px 0;
}

/* 갤러리 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* 위치 정보 */
.address-info {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.address-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.map-container {
    margin: 30px 0;
}

.transport-info {
    margin-top: 30px;
}

.transport-info ul {
    margin-left: 30px;
}

.transport-info li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* 푸터 */
footer {
    background-color: #fff;
    color: #000;
    padding: 40px 0 20px 0;
    margin-top: 60px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    width: 100%;
    box-sizing: border-box;
    display: block;
}

.footer-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #000;
}

.footer-copyright {
    text-align: left;
    margin-top: 20px;
    color: #000;
    font-size: 14px;
}

/* 애니메이션 효과 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

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

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

/* 스크롤 애니메이션 기본 클래스 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 페이드인 효과 - 즉시 실행 */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

/* slide-in-left와 slide-in-right가 즉시 실행되도록 */
.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
    animation-fill-mode: both;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
    animation-fill-mode: both;
}

/* animate-on-scroll와 함께 사용되는 애니메이션 클래스들은 즉시 실행 */
.animate-on-scroll.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-on-scroll.scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.6s ease-out forwards;
}

/* 애니메이션 클래스만 있을 때는 즉시 실행 */
.fade-in-up:not(.animate-on-scroll) {
    animation: fadeInUp 0.8s ease-out both;
}

.slide-in-left:not(.animate-on-scroll) {
    animation: slideInLeft 0.8s ease-out both;
}

.slide-in-right:not(.animate-on-scroll) {
    animation: slideInRight 0.8s ease-out both;
}

.scale-in:not(.animate-on-scroll) {
    animation: scaleIn 0.6s ease-out both;
}

/* 호버 애니메이션 강화 */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.link-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* 버튼 애니메이션 */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

/* 헤더 스크롤 애니메이션 */
header.scrolled {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* 로고 애니메이션 */
.logo a {
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

/* 메뉴 아이템 애니메이션은 위에서 이미 정의됨 */

/* 히어로 이미지 애니메이션 */
.hero-image-section {
    animation: fadeIn 1s ease-out;
}

.hero-image-section img {
    transition: transform 0.5s ease;
}

.hero-image-section:hover img {
    transform: scale(1.05);
}

/* 섹션 스크롤 애니메이션 */
.intro-section,
.service-section,
.quick-links {
    overflow: hidden;
}

/* 페이지 로드 시 즉시 실행되는 애니메이션 */
.intro-section .container {
    animation: fadeInUp 1s ease-out both;
}

.intro-section .container h2 {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.intro-section .container p {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.intro-section .container .btn {
    animation: scaleIn 0.6s ease-out 0.6s both;
}

/* 통계 섹션 스타일 */
.statistics-section {
    background: #fff;
    padding: 80px 0;
    margin: 0;
    margin-top: -20px;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: transparent;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.stat-label {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.stat-value {
    font-size: 48px;
    font-weight: bold;
    color: #2c5aa0;
    line-height: 1.2;
}

.stat-value .count {
    display: inline-block;
}

.stat-value .unit {
    font-size: 36px;
    margin-left: 5px;
}

/* 통계 애니메이션 */
.stat-item.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.stat-item.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: scaleIn 0.8s ease-out forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* 카드 그리드 애니메이션 */
.service-grid .service-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.service-grid .service-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.link-grid .link-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.link-grid .link-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.link-grid .link-card:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.link-grid .link-card:nth-child(4) {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* 통계 섹션 반응형 */
@media (max-width: 768px) {
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-value .unit {
        font-size: 28px;
    }
}

/* 모바일 전용 스타일 - 기본 스타일로 적용 */
header {
    height: auto;
    min-height: auto;
}

.header-container {
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
    height: auto;
    min-height: auto;
}

.logo {
    width: 100%;
    justify-content: center;
    height: auto;
}

.logo a {
    width: 100%;
    align-items: center;
    height: auto;
}

.logo-ko {
    font-size: 18px;
    word-break: keep-all;
    white-space: nowrap;
    overflow: visible;
}

.main-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.main-nav ul li a {
    font-size: 13px;
    padding: 5px 0;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    header {
        height: auto;
        min-height: auto;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px 15px;
        height: auto;
        min-height: auto;
    }

    .logo {
        width: 100%;
        justify-content: center;
        height: auto;
    }

    .logo a {
        width: 100%;
        align-items: center;
        height: auto;
    }

    .logo-en {
        font-size: 12px;
    }

    .logo-ko {
        font-size: 18px;
        word-break: keep-all;
        white-space: nowrap;
        overflow: visible;
    }

    .logo-en::after {
        width: 12px;
        right: -15px;
    }

    .main-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        width: 100%;
    }

    .main-nav ul li a {
        font-size: 14px;
        padding: 5px 0;
    }

    .submenu {
        position: static;
        display: none !important;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .has-submenu.active .submenu {
        display: block !important;
    }

    .main-carousel {
        height: 300px;
    }

    .intro-section h2 {
        font-size: 28px;
    }

    .service-grid,
    .link-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .hero-image-section {
        margin: 0;
        height: auto;
        min-height: 50vh;
        aspect-ratio: 4 / 3;
    }

    .hero-image-section .hero-main-image {
        height: 100%;
    }
    
    .hero-title-main {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
}

/* 카카오톡 플로팅 버튼 */
.kakao-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #FEE500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.kakao-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background-color: #FFD700;
}

.kakao-floating-btn svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .kakao-floating-btn {
        display: none;
    }
}

/* 프로그램 소개 섹션 */
.program-intro-section {
    padding: 30px 0 10px 0;
    background: #fff;
    text-align: center;
}

.program-title {
    font-size: 24px;
    font-weight: 700;
    color: #999;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.program-description {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

/* 서비스 소개 섹션 */
.service-intro-section {
    padding: 50px 0 20px 0;
    background: #fff;
}

.service-intro-subtitle {
    text-align: center;
    font-size: 24px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.service-intro-section .service-intro-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000 !important;
    margin-bottom: 20px;
    margin-top: 10px;
    display: block !important;
    visibility: visible !important;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* 서비스 소개 섹션 애니메이션 */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-up-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.animate-fade-in-up-delay-2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.animate-fade-in-up-delay-3 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.animate-card-1 {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: cardSlideIn 0.6s ease-out 0.5s forwards;
}

.animate-card-2 {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: cardSlideIn 0.6s ease-out 0.7s forwards;
}

.animate-card-3 {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: cardSlideIn 0.6s ease-out 0.9s forwards;
}

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9) rotateX(10deg);
    }
    60% {
        transform: translateY(-5px) scale(1.05) rotateX(-2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

/* 서비스 카드 래퍼 */
.service-cards-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    margin: 0 auto 40px auto;
    gap: 10px;
    max-width: 100%;
    padding: 0;
    flex-wrap: wrap;
    width: 100%;
}

.service-card {
    flex: 0 1 auto;
    width: 180px;
    height: 120px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    padding: 0 12px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-card:hover::before {
    width: 300px;
    height: 300px;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
}

/* 서비스 피처 박스 */
.service-feature-box {
    position: relative;
    margin-top: 60px;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
}

.service-feature-content {
    flex: 1;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    padding: 50px;
    border-radius: 15px;
    color: #fff;
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.service-feature-image-main3 {
    position: relative;
}

.service-feature-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.85) 0%, rgba(25, 118, 210, 0.85) 100%);
    padding: 50px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.service-feature-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-feature-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    font-weight: 500;
}

.service-feature-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-feature-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.service-feature-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-feature-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

/* 서비스 피처 이미지 */
.service-feature-images {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0;
}

.service-feature-image-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 280px;
    display: block;
    text-decoration: none;
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* 첫 번째 이미지: 왼쪽에서 슬라이드 인 + 스케일 */
.service-feature-image-item.slide-in-left {
    opacity: 0;
    transform: translateX(-80px) scale(0.9) rotateY(-15deg);
}

.service-feature-image-item.slide-in-left.animated {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    animation: slideInFromLeft 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 두 번째 이미지: 오른쪽에서 슬라이드 인 + 스케일 */
.service-feature-image-item.slide-in-right {
    opacity: 0;
    transform: translateX(80px) scale(0.9) rotateY(15deg);
}

.service-feature-image-item.slide-in-right.animated {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    animation: slideInFromRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-feature-image-item.slide-in-left.animated {
    animation-delay: 0.1s;
}

.service-feature-image-item.slide-in-right.animated {
    animation-delay: 0.2s;
}

.service-feature-image-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.service-feature-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.service-feature-image-item:hover img {
    transform: scale(1.1);
}

.service-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: background 0.5s ease;
    opacity: 1;
    will-change: background;
}

.service-feature-image-item:hover .service-feature-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.service-feature-text {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    will-change: transform;
}

.service-feature-image-item:hover .service-feature-text {
    transform: translateY(-3px);
}

.service-feature-subtext {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    will-change: transform;
}

.service-feature-image-item:hover .service-feature-subtext {
    transform: translateY(-3px);
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .service-feature-box {
        flex-direction: column;
    }
    
    .service-feature-content {
        max-width: 100%;
    }
    
    .service-feature-images {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .program-title {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .program-description {
        font-size: 20px;
    }
    
    .service-intro-subtitle {
        font-size: 20px;
    }
    
    .service-intro-section .service-intro-title {
        font-size: 25px;
        margin-top: 10px;
        color: #000 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .service-feature-text {
        font-size: 22px;
    }
    
    .service-feature-subtext {
        font-size: 12px;
    }
    
    .service-card {
        width: 100px;
        height: 100px;
        font-size: 20px;
    }
    
    .service-card-icon {
        font-size: 16px;
    }
    
    .service-card-connector {
        width: 40px;
        margin: 0 5px;
    }
    
    .service-feature-title {
        font-size: 32px;
    }
    
    .service-feature-content {
        padding: 30px;
    }
    
    .service-cards-wrapper {
        flex-direction: row;
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: center !important;
        margin: 0 auto 60px auto;
        padding: 0;
        width: 100%;
    }
    
    .service-feature-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0;
    }
    
    .service-feature-box {
        margin-left: -10px;
        margin-right: -10px;
        width: calc(100% + 20px);
    }
}

@media (max-width: 480px) {
    .service-card {
        width: 130px;
        height: 110px;
        font-size: 18px;
        padding: 10px;
    }
    
    /* 회사 소개 페이지 갤럭시 S8 기준 (360px) */
    .page-content .content-section div[style*="max-width: 800px"] h2[style*="font-size: 28px"] {
        font-size: 21px !important;
        margin-bottom: 24px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] p[style*="font-size: 18px"] {
        font-size: 14px !important;
        margin-bottom: 16px !important;
        line-height: 1.7 !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] {
        margin: 30px auto !important;
        padding: 0 15px !important;
    }
    
    /* 갤러리 페이지 갤럭시 S8 기준 */
    .page-content .content-section div[style*="max-width: 800px"] h2[style*="font-size: 28px"] {
        font-size: 21px !important;
    }
    
    /* 고객센터 페이지 갤럭시 S8 기준 */
    .page-content .content-section div[style*="max-width: 800px"] h3[style*="font-size: 24px"] {
        font-size: 20px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] h3[style*="font-size: 22px"] {
        font-size: 18px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] p[style*="font-size: 32px"] {
        font-size: 26px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] h4[style*="font-size: 20px"] {
        font-size: 17px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] p[style*="font-size: 18px"] {
        font-size: 15px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] p[style*="font-size: 16px"] {
        font-size: 14px !important;
    }
    
    /* 오시는길 페이지 갤럭시 S8 기준 */
    .page-content .content-section div[style*="max-width: 800px"] h3[style*="font-size: 22px"] {
        font-size: 19px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] p[style*="font-size: 20px"] {
        font-size: 17px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] p[style*="font-size: 18px"] {
        font-size: 15px !important;
    }
    
    .service-card-icon {
        font-size: 14px;
        padding: 10px;
    }
    
    .service-card-connector {
        display: none;
    }
    
    .service-cards-wrapper {
        flex-direction: row;
        gap: 6px;
        justify-content: center !important;
        margin: 0 auto 60px auto;
        padding: 0;
        width: 100%;
        flex-wrap: nowrap;
    }
}

/* 갤럭시 S8 기준 (360px) */
@media (max-width: 360px) {
    /* 서비스 카드 갤럭시 S8+ 최적화 */
    .service-cards-wrapper {
        flex-direction: row;
        gap: 6px;
        justify-content: center !important;
        margin: 0 auto 40px auto;
        padding: 0 10px;
        width: 100%;
        flex-wrap: nowrap;
    }
    
    .service-card {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        height: 100px;
        font-size: 16px;
        padding: 8px 6px;
        border-radius: 8px;
        line-height: 1.3;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] h2[style*="font-size: 28px"] {
        font-size: 19px !important;
        margin-bottom: 20px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] p[style*="font-size: 18px"] {
        font-size: 13px !important;
        margin-bottom: 14px !important;
        line-height: 1.65 !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] {
        margin: 25px auto !important;
        padding: 0 12px !important;
    }
    
    /* 갤러리 페이지 갤럭시 S8 기준 */
    .gallery-page-title {
        font-size: 19px !important;
        margin-bottom: 20px !important;
    }
    
    /* 고객센터 페이지 갤럭시 S8 기준 */
    .page-content .content-section div[style*="max-width: 800px"] h3[style*="font-size: 24px"] {
        font-size: 18px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] h3[style*="font-size: 22px"] {
        font-size: 17px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] p[style*="font-size: 32px"] {
        font-size: 24px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] h4[style*="font-size: 20px"] {
        font-size: 16px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] p[style*="font-size: 18px"] {
        font-size: 14px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] p[style*="font-size: 16px"] {
        font-size: 13px !important;
    }
    
    /* 오시는길 페이지 갤럭시 S8 기준 */
    .page-content .content-section div[style*="max-width: 800px"] h3[style*="font-size: 22px"] {
        font-size: 18px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] p[style*="font-size: 20px"] {
        font-size: 16px !important;
    }
    
    .page-content .content-section div[style*="max-width: 800px"] p[style*="font-size: 18px"] {
        font-size: 14px !important;
    }
    
    /* 갤러리 페이지 갤럭시 S8+ 최적화 */
    .gallery-content-wrapper {
        padding: 0 10px !important;
        margin: 20px auto !important;
    }
    
    .gallery-content-wrapper .image-gallery-grid {
        margin-top: 20px !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
    }
    
    .gallery-page-title {
        font-size: 19px !important;
        margin-bottom: 20px !important;
    }
}

/* 모바일 전용 문의 버튼 */
.mobile-contact-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 12px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    gap: 8px;
    justify-content: space-around;
    align-items: center;
}

.mobile-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    cursor: pointer;
}

.mobile-btn svg {
    width: 24px;
    height: 24px;
}

.mobile-btn-call {
    color: #2c5aa0;
}

.mobile-btn-call:active {
    background: rgba(44, 90, 160, 0.1);
}

.mobile-btn-sms {
    color: #926e06;
}

.mobile-btn-sms:active {
    background: rgba(146, 110, 6, 0.1);
}

.mobile-btn-share {
    color: #666;
}

.mobile-btn-share:active {
    background: rgba(0, 0, 0, 0.05);
}

@media (min-width: 769px) {
    .mobile-contact-buttons {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .about-intro-text {
        padding: 35px 0;
        margin-bottom: 45px;
    }
    
    .about-icon {
        font-size: 56px;
        margin-bottom: 18px;
    }
    
    .about-title {
        font-size: 36px;
        margin-bottom: 14px;
    }
    
    .about-subtitle {
        font-size: 19px;
        margin-bottom: 22px;
    }
    
    .about-description {
        font-size: 16px;
        line-height: 1.9;
    }
    
    .service-intro-text {
        padding: 35px 0;
        margin-bottom: 45px;
    }
    
    .service-intro-text .service-intro-title {
        font-size: 36px;
        margin-bottom: 18px;
    }
    
    .service-intro-description {
        font-size: 16px;
        line-height: 1.9;
    }
    
    .mobile-contact-buttons {
        display: flex;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .about-title-break {
        display: block;
    }
    
    .about-title-second {
        display: block;
    }
}

/* 데스크톱에서는 줄바꿈 숨김 */
.about-title-break {
    display: none;
}

.about-title-second {
    display: inline;
}

/* ============================================
   회사소개 페이지 스타일 (모바일 최적화)
   ============================================ */

.about-intro-text {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
}

.about-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.about-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.about-subtitle {
    font-size: 20px;
    margin-bottom: 24px;
    color: #555;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-description {
    font-size: 18px;
    line-height: 2.2;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.3px;
    word-spacing: 1px;
}

.about-values {
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:active {
    transform: scale(0.98);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.value-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.about-advantages {
    margin-bottom: 30px;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.advantage-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.advantage-item:active {
    transform: scale(0.98);
}

.advantage-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.advantage-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.advantage-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.about-cta {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
    margin-top: 30px;
}

.about-cta h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #f5576c;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.cta-button:active {
    transform: scale(0.95);
}

/* ============================================
   서비스안내 페이지 스타일 (모바일 최적화)
   ============================================ */

.service-intro-text {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
}

.service-intro-text .service-intro-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.service-intro-description {
    font-size: 18px;
    line-height: 2.2;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.3px;
    word-spacing: 1px;
}

.service-list {
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.service-card-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    margin: 0 0 16px 0;
    width: 100%;
    max-width: 100%;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    text-align: center;
}

.service-card-item:hover {
    border-color: #4facfe;
    box-shadow: 0 4px 20px rgba(79, 172, 254, 0.1);
    transform: translateY(-2px);
}

.service-card-icon {
    font-size: 48px;
    text-align: center;
    margin: 0 auto 16px auto;
    display: block;
    width: auto;
}

.service-card-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
    text-align: center;
    width: 100%;
}

.service-card-item > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    text-align: center;
    width: 100%;
}

.service-features {
    list-style: none;
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 15px;
    margin-right: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

.service-features li {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    padding: 5px 0;
    text-align: center;
}

.service-process {
    margin-bottom: 30px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.process-step {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.process-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.process-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.process-arrow {
    text-align: center;
    font-size: 28px;
    color: #4facfe;
    font-weight: 700;
    margin: 5px 0;
    padding: 5px 0;
}

.service-cta {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.3);
    margin-top: 30px;
}

.service-cta h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.service-cta p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.95;
    color: white;
}

.cta-button-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    border: 2px solid white;
    transition: background 0.3s ease;
}

.cta-button-secondary:active {
    background: rgba(255, 255, 255, 0.5);
}

/* 모바일 반응형 조정 */
@media (max-width: 480px) {
    .gallery-content-wrapper {
        margin: 25px auto;
        padding: 0 10px;
    }
    
    .gallery-page-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .gallery-scroll-container {
        padding: 0 10px;
    }
    
    .gallery-scroll-wrapper .gallery-image-item {
        width: calc((100vw - 20px - 8px) / 2);
        max-width: calc((414px - 20px - 8px) / 2);
        aspect-ratio: 16 / 9;
        min-height: 220px;
    }
    
    .gallery-scroll-wrapper .gallery-image {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .image-gallery-grid {
        gap: 8px;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .gallery-content-wrapper .image-gallery-grid {
        gap: 8px;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .gallery-content-wrapper .image-gallery-grid .gallery-image-item {
        aspect-ratio: 4 / 3;
        min-height: 170px;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .gallery-content-wrapper .gallery-image {
        height: 100%;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .value-card {
        padding: 15px 10px;
    }
    
    .value-icon {
        font-size: 35px;
    }
    
    .value-card h4 {
        font-size: 14px;
    }
    
    .value-card p {
        font-size: 12px;
    }
    
    .advantage-item {
        padding: 15px;
    }
    
    .advantage-number {
        min-width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .advantage-content h4 {
        font-size: 16px;
    }
    
    .advantage-content p {
        font-size: 13px;
    }
    
    .service-intro-text {
        padding: 35px 0;
        margin-bottom: 45px;
    }
    
    .service-intro-text .service-intro-title {
        font-size: 36px;
        margin-bottom: 18px;
    }
    
    .service-intro-description {
        font-size: 16px;
        line-height: 1.9;
    }
    
    .service-card-item {
        padding: 24px 20px;
        margin-bottom: 14px;
    }
    
    .service-card-icon {
        font-size: 42px;
        margin-bottom: 14px;
    }
    
    .service-card-item h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .service-card-item > p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .process-step {
        padding: 15px;
    }
    
    .process-number {
        min-width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* ============================================
   고객센터 페이지 스타일 (모바일 최적화)
   ============================================ */

.inquiry-header-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.inquiry-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.inquiry-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.inquiry-subtitle {
    font-size: 18px;
    opacity: 0.95;
    color: white;
}

.phone-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.phone-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.phone-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
    color: white;
}

.phone-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.phone-number:active {
    transform: scale(0.95);
}

.phone-desc {
    font-size: 16px;
    opacity: 0.9;
    color: white;
}

.inquiry-methods {
    margin-bottom: 25px;
}

.inquiry-methods .method-card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.method-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 0;
}

.method-card:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.method-icon {
    font-size: 50px;
    text-align: center;
    margin-bottom: 15px;
}

.method-content {
    text-align: center;
}

.method-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.method-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.method-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.method-button span {
    margin-right: 8px;
}

.method-button-call {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.method-button-sms {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.method-button:active {
    transform: scale(0.95);
}

.service-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.info-card:active {
    transform: scale(0.98);
}

.info-icon {
    font-size: 35px;
    margin-bottom: 10px;
}

.info-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.emergency-notice {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.3);
}

.emergency-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.emergency-notice h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.emergency-notice p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
    color: white;
}

.emergency-button {
    display: inline-block;
    background: white;
    color: #fa709a;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.emergency-button:active {
    transform: scale(0.95);
}

.hours-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hours-list {
    margin-top: 20px;
    margin-bottom: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.hours-time {
    font-size: 16px;
    font-weight: 700;
    color: #667eea;
}

.hours-note {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

/* 고객센터 모바일 반응형 */
@media (max-width: 480px) {
    .inquiry-title {
        font-size: 24px;
    }
    
    .inquiry-subtitle {
        font-size: 16px;
    }
    
    .phone-number {
        font-size: 28px;
    }
    
    .method-content h4 {
        font-size: 18px;
    }
    
    .method-content p {
        font-size: 14px;
    }
    
    .method-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .method-card {
        padding: 20px 15px;
    }
    
    .method-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .inquiry-methods .method-card-wrapper {
        gap: 10px;
    }
    
    .service-info-cards {
        gap: 10px;
    }
    
    .info-card {
        padding: 15px 8px;
    }
    
    .info-icon {
        font-size: 30px;
    }
    
    .info-card h4 {
        font-size: 12px;
    }
    
    .info-card p {
        font-size: 11px;
    }
    
    .emergency-notice h3 {
        font-size: 20px;
    }
    
    .emergency-notice p {
        font-size: 14px;
    }
    
    .emergency-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .hours-day,
    .hours-time {
        font-size: 14px;
    }
}

/* ============================================
   오시는길 페이지 스타일 (모바일 최적화)
   ============================================ */

.location-header-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.location-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.location-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.location-subtitle {
    font-size: 18px;
    opacity: 0.95;
    color: white;
}

.address-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.address-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.address-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
    color: white;
}

.address-text {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    line-height: 1.5;
}

.address-company {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: white;
}

.address-button {
    display: block;
    background: white;
    color: #4facfe;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    margin: 8px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    max-width: 250px;
}

.address-button span {
    margin-right: 8px;
}

.address-button-kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.address-button:active {
    transform: scale(0.95);
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-list {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 30px;
    min-width: 40px;
    text-align: center;
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 14px;
    color: #999;
}

.contact-value {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.contact-value[href] {
    color: #4facfe;
}

.map-section-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-wrapper-custom {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: 0;
    position: relative;
}

.location-info-section {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.location-info-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
    text-align: center;
}

.location-info-divider {
    width: 100%;
    height: 1px;
    background: #000;
    margin: 0 0 16px 0;
}

.location-info-company {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    text-align: center;
}

.location-info-address {
    font-size: 15px;
    color: #666;
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.6;
}

.location-info-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.location-info-btn {
    display: block;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
}

.location-info-btn-naver {
    background: #1E88E5;
    color: white;
}

.location-info-btn-naver:hover {
    background: #1565C0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

.location-info-btn-kakao {
    background: #fee500;
    color: #000;
}

.location-info-btn-kakao:hover {
    background: #fdd835;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 229, 0, 0.3);
}

.transport-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.transport-list {
    margin-top: 20px;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.transport-item:last-child {
    border-bottom: none;
}

.transport-icon {
    font-size: 40px;
    min-width: 50px;
    text-align: center;
}

.transport-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.transport-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.visit-notice {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.3);
}

.visit-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.visit-notice h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.visit-notice p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
    color: white;
}

.visit-button {
    display: inline-block;
    background: white;
    color: #fa709a;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.visit-button:active {
    transform: scale(0.95);
}

/* 오시는길 모바일 반응형 */
@media (max-width: 480px) {
    .location-title {
        font-size: 24px;
    }
    
    .location-subtitle {
        font-size: 16px;
    }
    
    .address-text {
        font-size: 20px;
    }
    
    .address-button {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .contact-icon {
        font-size: 25px;
        min-width: 35px;
    }
    
    .contact-value {
        font-size: 15px;
    }
    
    .map-wrapper-custom {
        height: 400px;
    }
    
    .location-info-section {
        padding: 20px 25px;
        margin-bottom: 25px;
    }
    
    .location-info-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .location-info-company {
        font-size: 16px;
    }
    
    .location-info-address {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .location-info-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 140px;
    }
    
    .transport-icon {
        font-size: 35px;
        min-width: 45px;
    }
    
    .transport-content h4 {
        font-size: 16px;
    }
    
    .transport-content p {
        font-size: 14px;
    }
    
    .visit-notice h3 {
        font-size: 20px;
    }
    
    .visit-notice p {
        font-size: 14px;
    }
    
    .visit-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* ============================================
   디자인 개선 - 추가 스타일
   ============================================ */

/* 회사소개 페이지 개선 */

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.value-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.25);
}

.advantage-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 4px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.advantage-item:hover::before {
    transform: scaleY(1);
}

.advantage-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.advantage-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.about-cta {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #f093fb 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.about-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: rotate 15s linear infinite reverse;
}

.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(245, 87, 108, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
}

/* 서비스안내 페이지 개선 */

.service-card-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-item:hover::before {
    opacity: 1;
}

.service-card-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.25);
}

.service-card-icon {
    transition: all 0.4s ease;
    display: block;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.service-card-item:hover .service-card-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(79, 172, 254, 0.3));
}

.service-features {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 3px solid #4facfe;
    transition: all 0.3s ease;
}

.service-card-item:hover .service-features {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left-color: #00f2fe;
}

.process-step {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.process-step:hover::before {
    transform: scaleY(1);
}

.process-step:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.2);
}

.process-number {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.5);
}

.process-arrow {
    transition: all 0.3s ease;
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* 고객센터 페이지 개선 */
.service-info-cards .info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-info-cards .info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-info-cards .info-card:hover::before {
    opacity: 1;
}

.service-info-cards .info-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.25);
}

.service-info-cards .info-card:hover .info-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

.info-icon {
    transition: all 0.4s ease;
    display: inline-block;
}

.emergency-notice {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 50%, #fa709a 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.emergency-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.emergency-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.emergency-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(250, 112, 154, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.emergency-button:hover::before {
    width: 300px;
    height: 300px;
}

.emergency-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 112, 154, 0.4);
}

.hours-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.hours-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.hours-item {
    transition: all 0.3s ease;
    position: relative;
}

.hours-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.hours-item:hover::after {
    width: 100%;
}

.hours-item:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05), transparent);
    padding-left: 10px;
}

/* 오시는길 페이지 개선 */
.address-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #4facfe 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.address-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: rotate 18s linear infinite;
}

.address-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.address-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(79, 172, 254, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.address-button:hover::before {
    width: 300px;
    height: 300px;
}

.address-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.address-button-kakao {
    background: linear-gradient(135deg, #FEE500 0%, #FFD700 100%);
    color: #3C1E1E;
}

.address-button-kakao::before {
    background: rgba(254, 229, 0, 0.2);
}

.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.contact-item {
    transition: all 0.3s ease;
    position: relative;
}

.contact-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    transition: width 0.3s ease;
}

.contact-item:hover::after {
    width: 100%;
}

.contact-item:hover {
    background: linear-gradient(90deg, rgba(79, 172, 254, 0.05), transparent);
    padding-left: 10px;
    transform: translateX(5px);
}

.contact-icon {
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
}

.map-section-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.map-section-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.map-wrapper-custom {
    border: none;
}

.map-wrapper-custom:hover {
    transform: none;
    box-shadow: none;
}

/* 섹션 타이틀 개선 */
.section-title {
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.6s ease;
}

.section-title:hover::before {
    width: 100px;
}

/* 전반적인 애니메이션 개선 */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    animation: fadeInScale 0.6s ease-out forwards;
}

/* 호버 효과 개선 */
.value-card,
.service-card-item,
.advantage-item,
.process-step,
.info-card,
.contact-item {
    cursor: pointer;
}

/* 반응형 개선 */
@media (max-width: 480px) {
    .about-intro-text {
        padding: 30px 0;
        margin-bottom: 40px;
    }
    
    .about-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }
    
    .about-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .about-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 15px;
        line-height: 1.8;
        padding: 0 10px;
    }
    
    .service-intro-text {
        padding: 30px 0;
        margin-bottom: 40px;
    }
    
    .service-intro-text .service-intro-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .service-intro-description {
        font-size: 15px;
        line-height: 1.8;
        padding: 0 10px;
    }
    
    .address-card,
    .emergency-notice,
    .about-cta {
        padding: 25px 15px;
    }
    
    .service-card-item {
        padding: 20px 16px;
        margin-bottom: 12px;
    }
    
    .service-card-icon {
        font-size: 38px;
        margin-bottom: 12px;
    }
    
    .service-card-item h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .service-card-item > p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .value-card,
    .advantage-item,
    .process-step {
        padding: 18px 15px;
    }
    
    .location-info-section {
        padding: 18px 20px;
        margin-bottom: 20px;
    }
    
    .location-info-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .location-info-divider {
        margin-bottom: 12px;
    }
    
    .location-info-company {
        font-size: 15px;
    }
    
    .location-info-address {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .location-info-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .location-info-btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 100%;
    }
}

