/* 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', 'Malgun Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #000000;
    background-color: #fafafa;
    letter-spacing: -0.02em;
}

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

/* 네비게이션 */
.navbar {
    background-color: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    display: block;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #ffffff !important;
}

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

/* 메인 배너 */
.hero {
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.hero h1 {
    font-size: 56px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    color: #333;
    margin-bottom: 40px;
}

.hero-slogan {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.slogan-item {
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 8px;
    position: relative;
    animation: fadeInUp 1s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        4px 4px 8px rgba(0, 0, 0, 0.6),
        6px 6px 12px rgba(0, 0, 0, 0.4);
    transform: perspective(500px);
    transition: all 0.3s ease;
    z-index: 1;
}

.slogan-item:hover {
    transform: perspective(500px) translateY(-5px) scale(1.05);
    text-shadow:
        3px 3px 6px rgba(0, 0, 0, 0.9),
        6px 6px 12px rgba(0, 0, 0, 0.7),
        9px 9px 18px rgba(0, 0, 0, 0.5);
}

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

.slogan-item:nth-child(2) {
    animation-delay: 0.3s;
}

.slogan-item:nth-child(3) {
    animation-delay: 0.5s;
}

.slogan-item:nth-child(4) {
    animation-delay: 0.7s;
}

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

.cta-button {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 20px 60px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #000000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: #ffffff;
    color: #000000;
}

/* 섹션 공통 */
.section {
    padding: 120px 20px;
    background-color: #ffffff;
}

.section-gray {
    background-color: #fafafa;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.6), transparent);
}

/* 회사소개 */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.about-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.6), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.15);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card .icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.about-card p {
    font-size: 18px;
    color: #555555;
    line-height: 1.8;
}

/* 지점안내 */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.branch-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.branch-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #000000;
    transform: translateY(-8px);
}

.branch-card h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.branch-info {
    font-size: 17px;
    margin: 15px 0;
    color: #444;
    line-height: 1.9;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.branch-info:last-child {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

/* 소속선수 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.team-photo {
    font-size: 80px;
    margin-bottom: 20px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
}

.player-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: smooth;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.team-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: bold;
}

.team-role {
    font-size: 18px;
    color: #555;
    margin-bottom: 8px;
}

.team-exp {
    font-size: 14px;
    color: #777;
    font-weight: 400;
    display: block;
}

/* 금액안내 */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: #000000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 0 auto;
    max-width: 250px;
}

.pricing-features li {
    font-size: 17px;
    margin: 12px 0;
    color: #333;
    line-height: 1.6;
}

.pricing-note {
    text-align: center;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

/* 문의하기 */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-item {
    font-size: 19px;
    margin: 15px 0;
    color: #333;
    line-height: 1.8;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    font-size: 17px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-button {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background-color: #333;
    transform: scale(1.02);
}

/* 푸터 */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #333333;
}

.footer p {
    margin: 10px 0;
    font-size: 15px;
    letter-spacing: -0.01em;
}

/* 홈페이지 추가 스타일 */
.company-intro {
    text-align: center;
    margin-bottom: 60px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.9;
    color: #555555;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.subsection-title {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin: 80px 0 50px 0;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    justify-items: center;
}

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

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

@media (max-width: 480px) {
    .service-gallery {
        grid-template-columns: 1fr;
    }
}

.service-item {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.1);
}

.service-image {
    font-size: 70px;
    margin-bottom: 20px;
}

.service-item img.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: bold;
}

.service-item p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

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

.quick-link-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.quick-link-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.6), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.quick-link-card:hover::after {
    transform: scaleX(1);
}

.quick-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.quick-link-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: bold;
}

.quick-link-card p {
    font-size: 17px;
    color: #555555;
}

/* 페이지 헤더 */
.page-header {
    background: #000000;
    padding: 40px 20px 30px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-en {
    font-size: 36px;
    font-weight: 600;
    color: #666;
    display: block;
    margin-top: 10px;
}

.page-header p {
    font-size: 20px;
    color: #cccccc;
}

.subtitle-en {
    font-size: 18px;
    color: #777;
    font-style: italic;
    margin-top: 10px;
}

/* 지점 페이지 추가 스타일 */
.branch-features {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #1a1a1a;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.branch-notice, .team-notice, .pricing-notice {
    background: #f9f9f9;
    padding: 35px;
    border-radius: 15px;
    margin-top: 50px;
    border-left: 5px solid #1a1a1a;
}

.branch-notice h3, .team-notice h3, .pricing-notice h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.branch-notice ul, .pricing-notice ul {
    list-style: none;
    font-size: 17px;
    line-height: 2;
    color: #333;
}

.team-notice p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

/* 소속선수 페이지 추가 스타일 */
.team-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    background-color: #ffffff;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #1a1a1a;
    background-color: #f5f5f5;
}

.filter-btn.active {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.team-card.hidden {
    display: none;
}

.team-detail {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: left;
    display: none;
}

.team-detail p {
    font-size: 15px;
    color: #666;
    margin: 8px 0;
    line-height: 1.6;
}

/* 팀원 모달 */
.team-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.team-modal.active {
    display: flex;
    opacity: 1;
}

.team-modal-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.team-modal-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.team-modal-left {
    flex-shrink: 0;
    width: 350px;
    text-align: center;
}

.team-modal-right {
    flex-grow: 1;
    text-align: left;
}

.team-modal.active .team-modal-content {
    transform: translateY(0);
}

.team-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    color: #1a1a1a;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.team-modal-close:hover {
    color: #666;
}

.team-modal-photo {
    font-size: 100px;
    margin-bottom: 20px;
    text-align: center;
}

/* 사진 슬라이더 */
.photo-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 10px;
}

.slider-container {
    display: flex;
    transition: transform 0.4s ease;
}

.slider-image {
    min-width: 100%;
    height: 450px;
    object-fit: contain;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
}

.slider-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: smooth;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: #1a1a1a;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator-dot.active {
    background: #1a1a1a;
    width: 30px;
    border-radius: 5px;
}

.team-modal-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.team-modal-role {
    font-size: 20px;
    color: #666;
    margin-bottom: 10px;
    text-align: center;
}

.team-modal-exp {
    font-size: 16px;
    color: #888;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
}

.team-modal-details {
    text-align: left;
    margin-top: 30px;
}

.team-modal-details h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.team-modal-details ul {
    list-style: none;
    padding: 0;
}

.team-modal-details ul li {
    font-size: 17px;
    color: #444;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.team-modal-details ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 20px;
}

/* 금액 페이지 추가 스타일 */
.pricing-time {
    margin-top: 20px;
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.additional-services {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
}

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

.service-row:last-child {
    border-bottom: none;
}

.service-name {
    font-size: 19px;
    color: #333;
    font-weight: 500;
}

.service-price {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: bold;
}

.discount-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.discount-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #1a1a1a;
}

.discount-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.discount-rate {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 15px 0;
}

.discount-desc {
    font-size: 16px;
    color: #666;
}

/* 문의 페이지 추가 스타일 */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.faq-item {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-q {
    font-size: 17px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.faq-a {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-form select {
    padding: 15px;
    font-size: 17px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
    background-color: #ffffff;
}

.contact-form select:focus {
    outline: none;
    border-color: #1a1a1a;
}

/* 스토어 페이지 스타일 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #1a1a1a;
}

.product-image {
    font-size: 80px;
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: bold;
}

.product-brand {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.product-price {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
}

.form-notice {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .hero {
        min-height: 400px;
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .slogan-item {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .subsection-title {
        font-size: 28px;
        margin: 50px 0 30px 0;
    }

    .page-header {
        padding: 30px 15px 25px 15px;
    }

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

    .page-header p {
        font-size: 16px;
    }

    .intro-text {
        font-size: 17px;
    }

    .about-card,
    .branch-card,
    .team-card,
    .pricing-card {
        padding: 30px 25px;
    }

    .about-card h3 {
        font-size: 22px;
    }

    .about-card p {
        font-size: 16px;
    }

    .branch-card h3 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .branch-info {
        font-size: 15px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-card h3 {
        font-size: 20px;
    }

    .team-role {
        font-size: 16px;
    }

    .team-exp {
        font-size: 13px;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card h3 {
        font-size: 18px;
    }

    .price {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .pricing-features li {
        font-size: 15px;
    }

    .service-name {
        font-size: 16px;
    }

    .service-price {
        font-size: 17px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 24px;
    }

    .contact-item {
        font-size: 16px;
    }

    .service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 0;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 15px;
    }

    .team-modal-wrapper {
        flex-direction: column;
    }

    .team-modal-left {
        width: 100%;
    }

    .team-modal-content {
        padding: 30px 20px;
    }

    .slider-image {
        height: 300px;
    }

    .footer {
        padding: 40px 15px;
    }

    .footer p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo-img {
        height: 35px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .nav-menu a {
        font-size: 13px;
    }

    .hero {
        min-height: 350px;
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .slogan-item {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .subsection-title {
        font-size: 24px;
        margin: 40px 0 25px 0;
    }

    .page-header {
        padding: 25px 15px 20px 15px;
    }

    .page-header h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .page-header p {
        font-size: 14px;
    }

    .intro-text {
        font-size: 15px;
    }

    .about-card,
    .branch-card,
    .team-card,
    .pricing-card {
        padding: 25px 20px;
    }

    .about-card h3 {
        font-size: 20px;
    }

    .about-card p {
        font-size: 15px;
    }

    .branch-card h3 {
        font-size: 24px;
    }

    .branch-info {
        font-size: 14px;
    }

    .team-card h3 {
        font-size: 18px;
    }

    .team-role {
        font-size: 15px;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .pricing-card {
        padding: 20px 15px;
    }

    .pricing-card h3 {
        font-size: 16px;
    }

    .price {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .pricing-features li {
        font-size: 14px;
    }

    .service-name {
        font-size: 15px;
    }

    .service-price {
        font-size: 16px;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 22px;
    }

    .contact-item {
        font-size: 15px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .quick-link-card {
        padding: 30px 25px;
    }

    .quick-icon {
        font-size: 50px;
    }

    .quick-link-card h3 {
        font-size: 20px;
    }

    .quick-link-card p {
        font-size: 15px;
    }
}

/* 서비스 모달 */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.service-modal.active {
    opacity: 1;
}

.modal-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.service-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #1a1a1a;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #666;
}

.modal-content h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    text-align: center;
}

.modal-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.modal-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.modal-content ul li {
    font-size: 15px;
    color: #444;
    padding: 8px 0;
    padding-left: 22px;
    position: relative;
    line-height: 1.6;
}

.modal-content ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 18px;
}
