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

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

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

/* 헤더 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 70px;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.nav-brand h2 {
    color: #2c5aa0;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    position: relative;
    letter-spacing: 0.2px;
}

.nav-link:hover {
    color: #2c5aa0;
    background: rgba(44, 90, 160, 0.08);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #2c5aa0;
    background: rgba(44, 90, 160, 0.12);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #2c5aa0, #667eea);
    border-radius: 1px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    background: rgba(44, 90, 160, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    border: 1px solid rgba(44, 90, 160, 0.1);
    margin-left: 0.8rem;
}

.lang-link {
    text-decoration: none;
    color: #666;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.lang-link:hover {
    color: #2c5aa0;
    background: rgba(44, 90, 160, 0.1);
}

.lang-link.active {
    color: #2c5aa0;
    background: rgba(44, 90, 160, 0.15);
    font-weight: 600;
}

.lang-separator {
    color: #ccc;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* 메인 콘텐츠 */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* 페이지 헤더 */
.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 회사소개 페이지 헤더: 배경 이미지 */
.page-header--about {
    position: relative;
    min-height: 280px;
    padding: 100px 0 80px;
    background: url(/images/AD0Ivdr2BRACGAAg9r6MwwUopJespAMwhAM4Xw.jpg) center / cover no-repeat;
}
.page-header--about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.75) 0%, rgba(30, 60, 110, 0.85) 100%);
    pointer-events: none;
}
.page-header--about .container {
    position: relative;
    z-index: 1;
}
.page-header--about h1 {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.page-header--about p {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
    opacity: 0.95;
}

/* 업무소개 페이지 헤더: 배경 이미지 */
.page-header--services {
    position: relative;
    min-height: 280px;
    padding: 100px 0 80px;
    background: url(/images/Transportation-logistics-company-from-China-to-Canada-2026-Guide.jpg) center / cover no-repeat;
}
.page-header--services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.72) 0%, rgba(30, 60, 110, 0.82) 100%);
    pointer-events: none;
}
.page-header--services .container {
    position: relative;
    z-index: 1;
}
.page-header--services h1 {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.page-header--services p {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
    opacity: 0.95;
}

/* 이용안내 페이지 헤더: 배경 이미지 */
.page-header--guide {
    position: relative;
    min-height: 280px;
    padding: 100px 0 80px;
    background: url(/images/images.jpeg) center / cover no-repeat;
}
.page-header--guide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.75) 0%, rgba(30, 60, 110, 0.85) 100%);
    pointer-events: none;
}
.page-header--guide .container {
    position: relative;
    z-index: 1;
}
.page-header--guide h1 {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.page-header--guide p {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
    opacity: 0.95;
}

/* 온라인주문 페이지 헤더: 배경 이미지 */
.page-header--order {
    position: relative;
    min-height: 280px;
    padding: 100px 0 80px;
    background: url(/images/dinggou.jpeg) center / cover no-repeat;
}
.page-header--order::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.75) 0%, rgba(30, 60, 110, 0.85) 100%);
    pointer-events: none;
}
.page-header--order .container {
    position: relative;
    z-index: 1;
}
.page-header--order h1 {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.page-header--order p {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
    opacity: 0.95;
}
.page-header--order .order-status-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.page-header--order .order-status-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* 커뮤니티 페이지 헤더: 배경 이미지 */
.page-header--community {
    position: relative;
    min-height: 280px;
    padding: 100px 0 80px;
    background: url(/images/online-community-background_13339-211366.avif) center / cover no-repeat;
}
.page-header--community::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.75) 0%, rgba(30, 60, 110, 0.85) 100%);
    pointer-events: none;
}
.page-header--community .container {
    position: relative;
    z-index: 1;
}
.page-header--community h1 {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.page-header--community p {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
    opacity: 0.95;
}

/* 고객센터 페이지 헤더: 배경 이미지 */
.page-header--support {
    position: relative;
    min-height: 280px;
    padding: 100px 0 80px;
    background: url(/images/unnamed.jpg) center / cover no-repeat;
}
.page-header--support::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.75) 0%, rgba(30, 60, 110, 0.85) 100%);
    pointer-events: none;
}
.page-header--support .container {
    position: relative;
    z-index: 1;
}
.page-header--support h1 {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.page-header--support p {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
    opacity: 0.95;
}

/* 히어로 섹션 */
.hero {
    padding: 80px 0 60px 0;
    color: white;
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(44, 90, 160, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e6f3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
}

.highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff8dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.hero-description {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.hero-description p {
    font-size: 0.9rem;
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-description p::before {
    content: '✨';
    color: #ffd700;
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    width: 100%;
}

.hero-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.hero-card:hover::before {
    left: 100%;
}

.hero-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 215, 0, 0.4);
}

.hero-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff8dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    display: block;
}

.hero-card:hover i {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.hero-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-card p {
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.hero-card {
    animation: float 6s ease-in-out infinite;
}

.hero-card:nth-child(2) {
    animation-delay: -2s;
}

.hero-card:nth-child(3) {
    animation-delay: -4s;
}

.hero-card:nth-child(4) {
    animation-delay: -6s;
}

/* 버튼 */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #ffd700;
    color: #333;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* 섹션 공통 */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c5aa0;
    position: relative;
}

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

/* 서비스 섹션 */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-content {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.service-content i {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: block;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 프로세스 섹션 */
.process {
    padding: 80px 0;
    background: #e9ecef;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.step-image-small img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    position: absolute;
    top: -10px;
    left: -10px;
    box-shadow: 0 5px 15px rgba(107, 114, 128, 0.3);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.step p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* 뉴스 섹션 */
.news-section {
    padding: 80px 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.news-main h2,
.news-sidebar h2 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e9ecef;
}

.news-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-item.featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #2c5aa0;
}

.news-item img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.news-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-date {
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item-small {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
    transition: all 0.3s ease;
}

.news-item-small:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.news-item-small h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-item-small .news-date {
    font-size: 0.8rem;
    color: #666;
}

/* 연락처 섹션 */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #2c5aa0;
    width: 50px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* 마이페이지 스타일 */
.mypage-menu {
    padding: 30px 0;
    background: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.menu-item {
    background: white;
    padding: 1rem 0.75rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.menu-item i {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    display: block;
}

.menu-item h3 {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.menu-item-logout {
    border: 2px solid #dc3545;
}

.menu-item-logout i {
    color: #dc3545;
}

.menu-item-logout h3 {
    color: #dc3545;
}

.menu-item-logout:hover {
    background: #dc3545;
}

.menu-item-logout:hover i,
.menu-item-logout:hover h3 {
    color: white;
}

/* 프로필 페이지 */
.profile-breadcrumb {
    margin-bottom: 0.75rem;
}

.profile-breadcrumb a {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 0.9rem;
}

.profile-breadcrumb a:hover {
    text-decoration: underline;
}

.profile-breadcrumb .fa-arrow-left {
    margin-right: 0.35rem;
}

.profile-section {
    padding: 0 0 60px;
    background: #f8f9fa;
}

.profile-card {
    max-width: 560px;
    margin: 0 auto;
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.profile-form .form-field {
    margin-bottom: 1.25rem;
}

.profile-form .form-field label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.profile-form .form-field input,
.profile-form .form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.profile-form .form-field input:focus,
.profile-form .form-field textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.12);
}

.profile-form .input-readonly {
    background: #f5f5f5;
    color: #666;
    cursor: not-allowed;
}

.profile-form .field-hint {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.35rem;
}

.profile-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.profile-form-actions .btn-outline {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.profile-form-actions .btn-outline:hover {
    background: #2c5aa0;
    color: white;
}

.profile-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
}

.profile-message-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.profile-message-error {
    background: #ffebee;
    color: #c62828;
}

.recent-activity {
    padding: 60px 0;
    background: #f8f9fa;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.activity-item i {
    font-size: 2rem;
    color: #2c5aa0;
    width: 50px;
    text-align: center;
}

.activity-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.activity-content p {
    color: #666;
    margin-bottom: 0.25rem;
}

.activity-time {
    font-size: 0.9rem;
    color: #999;
}

/* 이용내역 테이블 */
.orders-section {
    padding: 60px 0;
    background: white;
}

.orders-table {
    overflow-x: auto;
}

.orders-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.orders-table th,
.orders-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.orders-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-shipping {
    background: #d1ecf1;
    color: #0c5460;
}

.status-processing {
    background: #fff3cd;
    color: #856404;
}

/* 배송추적 스타일 */
.tracking-search {
    padding: 60px 0;
    background: white;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2c5aa0;
}

.tracking-result {
    padding: 60px 0;
    background: #f8f9fa;
}

.tracking-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tracking-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.tracking-number {
    font-size: 1.1rem;
    color: #666;
}

.tracking-status {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #2c5aa0;
    color: white;
    border-radius: 20px;
    font-weight: 600;
}

.tracking-timeline {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #2c5aa0;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #e9ecef;
}

.timeline-content h5 {
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    margin-bottom: 0.25rem;
}

.timeline-time {
    font-size: 0.9rem;
    color: #999;
}

.timeline-description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.recent-tracking {
    padding: 60px 0;
    background: white;
}

.tracking-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tracking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.tracking-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.tracking-info p {
    color: #666;
}

.tracking-actions {
    display: flex;
    gap: 0.5rem;
}

/* 푸터 */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

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

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

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

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

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section i {
    color: #ffd700;
    margin-right: 0.5rem;
}

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

/* 추가 스타일 */
.company-overview {
    padding: 80px 0;
    background: white;
}

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

.overview-text h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.overview-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.overview-image {
    text-align: center;
}

/* 회사 전경 슬라이드쇼 */
.about-slideshow {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    aspect-ratio: 4/3;
    max-height: 360px;
    background: #f0f0f0;
}
.about-slideshow__track {
    position: relative;
    width: 100%;
    height: 100%;
}
.about-slideshow__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.about-slideshow__slide--active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.about-slideshow__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-slideshow__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #2c5aa0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.about-slideshow__btn:hover {
    background: #fff;
    color: #1a4a7a;
}
.about-slideshow__btn--prev { left: 12px; }
.about-slideshow__btn--next { right: 12px; }
.about-slideshow__dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.about-slideshow__dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.about-slideshow__dot:hover {
    background: rgba(255, 255, 255, 0.8);
}
.about-slideshow__dot--active {
    background: #fff;
    transform: scale(1.2);
}

.image-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 4rem 2rem;
    color: #999;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
}

.services-menu {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-menu-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-menu-item i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.service-menu-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-menu-item p {
    color: #666;
    line-height: 1.6;
}

.error-page {
    padding: 120px 0;
    background: #f8f9fa;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 5rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.error-content h1 {
    font-size: 6rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.error-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* 서비스 상세 페이지 */
.service-detail {
    padding: 80px 0;
    background: white;
}

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

.service-overview {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.service-icon i {
    font-size: 3rem;
    color: white;
}

.service-info h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 서비스 갤러리 */
.service-gallery {
    margin-bottom: 4rem;
}

.service-gallery h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item.main-image {
    grid-row: 1 / 3;
}

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

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.service-features {
    margin-bottom: 4rem;
}

.service-features h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

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

/* 특송 등 특징 5개인 서비스: 한 줄에 5개 */
.features-grid--five {
    grid-template-columns: repeat(5, 1fr);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    color: #28a745;
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.service-process {
    margin-bottom: 4rem;
}

.service-process h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

.service-process .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    position: relative;
}

.step-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-step .step-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.process-step:hover .step-image img {
    transform: scale(1.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(107, 114, 128, 0.3);
}

.step-content h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.service-benefits {
    margin-bottom: 4rem;
}

.service-benefits h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.quote-request {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.quote-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.quote-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.quote-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quote-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-buttons .btn-primary {
    background: #ffd700;
    color: #333;
}

.quote-buttons .btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

.quote-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.quote-buttons .btn-secondary:hover {
    background: white;
    color: #333;
}

.related-services {
    background: #f8f9fa;
    padding: 60px 0;
}

.related-services h3 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

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

.related-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-item:hover {
    color: #2c5aa0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-item.active {
    color: #2c5aa0;
    border-color: #2c5aa0;
    background: rgba(44, 90, 160, 0.05);
}

.related-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.related-item span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* 이용안내 페이지 */
.guide-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.guide-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-step-arrow {
    display: none;
}

.guide-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.guide-step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.guide-step-icon {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.guide-step h3 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.guide-step p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}


.guide-cards-section {
    padding: 80px 0;
    background: white;
}

.guide-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.guide-card {
    padding: 2.5rem 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-top: 4px solid #2c5aa0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.guide-card-icon {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.guide-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.guide-card ul {
    list-style: none;
    padding: 0;
}

.guide-card ul li {
    padding: 0.6rem 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.guide-card ul li:last-child {
    border-bottom: none;
}

.guide-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.guide-notice-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.guide-notice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.guide-notice-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.guide-notice-item i {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.guide-notice-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.guide-notice-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.guide-faq-section {
    padding: 80px 0;
    background: white;
}

.guide-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.guide-faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.guide-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
}

.guide-faq-question:hover {
    background: #e9ecef;
}

.guide-faq-question i {
    transition: transform 0.3s ease;
    color: #667eea;
}

.guide-faq-item.active .guide-faq-question i {
    transform: rotate(180deg);
}

.guide-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.guide-faq-item.active .guide-faq-answer {
    max-height: 200px;
}

.guide-faq-answer p {
    padding: 1.2rem 1.5rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.guide-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.guide-cta-content {
    text-align: center;
    color: white;
}

.guide-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guide-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.guide-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.guide-cta-buttons .btn-primary {
    background: white;
    color: #667eea;
}

.guide-cta-buttons .btn-primary:hover {
    background: #f0f0f0;
}

.guide-cta-buttons .btn-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.guide-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* 온라인 주문 페이지 */
.order-services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.order-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.order-service-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.order-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.order-service-card.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.order-service-icon {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.order-service-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.order-service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.order-service-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

.order-form-section {
    padding: 80px 0;
    background: white;
}

.order-form {
    max-width: 1000px;
    margin: 0 auto;
}

.order-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.order-form-group {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
}

.order-form-group h3 {
    font-size: 1.2rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #e9ecef;
}

.order-form-group h3 i {
    margin-right: 0.5rem;
}

.order-form-full {
    margin-bottom: 2rem;
}

.form-field {
    margin-bottom: 1.2rem;
}

.form-field label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.order-form-submit {
    text-align: center;
    padding-top: 1rem;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.btn-lg i {
    margin-right: 0.5rem;
}

.order-form-note {
    margin-top: 1rem;
    color: #999;
    font-size: 0.85rem;
}

.order-info-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.order-info-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.order-info-item i {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.order-info-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.order-info-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.order-info-detail {
    display: block;
    color: #2c5aa0;
    font-weight: 600;
    font-size: 1rem;
}

/* 커뮤니티 페이지 */
.community-section {
    padding: 60px 0 80px;
    background: white;
}

.community-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.community-tabs {
    display: flex;
    gap: 0.5rem;
}

.community-tab {
    padding: 0.6rem 1.5rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s ease;
}

.community-tab:hover {
    border-color: #667eea;
    color: #667eea;
}

.community-tab.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-sm i {
    margin-right: 0.3rem;
}

.community-board {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.board-header {
    display: grid;
    grid-template-columns: 60px 80px 1fr 100px 110px 80px;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 2px solid #e9ecef;
}

.board-row {
    display: grid;
    grid-template-columns: 60px 80px 1fr 100px 110px 80px;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.board-row:hover {
    background: #f8f9fa;
}

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

.board-col-no {
    text-align: center;
    color: #999;
}

.board-col-category {
    text-align: center;
}

.board-col-title {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.board-col-author {
    text-align: center;
    color: #666;
}

.board-col-date {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
}

.board-col-views {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
}

.board-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-notice {
    background: #e3f2fd;
    color: #1565c0;
}

.badge-review {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-qna {
    background: #fff3e0;
    color: #e65100;
}

.community-search {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.search-select {
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
}

.search-input {
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    width: 300px;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

/* 고객센터 페이지 */
.support-quick-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.support-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.support-quick-card {
    display: block;
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.support-quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-bottom-color: #667eea;
}

.support-quick-icon {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.support-quick-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.support-quick-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.support-contact-section {
    padding: 80px 0;
    background: white;
}

.support-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.support-contact-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.support-contact-card:hover {
    transform: translateY(-3px);
}

.support-contact-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.support-contact-card h4 {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.support-contact-value {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.support-contact-sub {
    font-size: 0.8rem;
    color: #999;
}

.support-inquiry-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.support-inquiry-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.inquiry-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.inquiry-form-submit {
    text-align: center;
    margin-top: 1.5rem;
}

/* 로그인/회원가입 */
.auth-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.auth-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.auth-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: white;
}

.auth-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.auth-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
}

.auth-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.auth-wrapper {
    display: flex;
    max-width: 960px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: authSlideUp 0.6s ease-out;
}

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

.auth-side {
    flex: 0 0 360px;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.auth-side::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

.auth-side::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -60px;
    left: -60px;
}

.auth-side-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.auth-side-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: #667eea;
}

.auth-side-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.auth-side-content p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.auth-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.auth-benefits li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.auth-benefits li i {
    color: #4ade80;
    font-size: 0.85rem;
}

.auth-card {
    flex: 1;
    min-width: 0;
}

.auth-tabs {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
}

.auth-tab {
    flex: 1;
    padding: 1.2rem;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    border-radius: 3px 3px 0 0;
    transition: background 0.3s ease;
}

.auth-tab.active {
    background: transparent;
    color: #2c5aa0;
}

.auth-tab.active::after {
    background: #2c5aa0;
}

.auth-tab:hover:not(.active) {
    color: #666;
    background: #fafafa;
}

.auth-form-wrap {
    padding: 2rem 2.5rem 2.5rem;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.auth-avatar i {
    font-size: 2rem;
    color: white;
}

.auth-avatar-register {
    background: linear-gradient(135deg, #4ade80, #22d3ee);
}

.auth-form-wrap h2 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.auth-subtitle {
    font-size: 0.85rem;
    color: #999;
}

.auth-field {
    position: relative;
    margin-bottom: 1rem;
}

.auth-field input {
    width: 100%;
    padding: 0.85rem 0.85rem 0.85rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

.auth-field input:focus {
    border-color: #667eea;
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.auth-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    z-index: 1;
}

.auth-field input:focus ~ .auth-input-icon,
.auth-field:focus-within .auth-input-icon {
    color: #667eea;
}

.auth-pw-toggle {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    padding: 0.3rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.auth-pw-toggle:hover {
    color: #667eea;
}

.auth-captcha-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
    border-radius: 12px;
    border: 2px dashed #c5d5f5;
}

.captcha-display {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: #2c5aa0;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.captcha-display i {
    color: #667eea;
    font-size: 1.1rem;
}

.captcha-refresh {
    background: white;
    border: 2px solid #c5d5f5;
    border-radius: 8px;
    padding: 0.5rem 0.7rem;
    cursor: pointer;
    color: #667eea;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #666;
    cursor: pointer;
}

.auth-remember input[type="checkbox"] {
    accent-color: #667eea;
    width: 16px;
    height: 16px;
}

.btn-auth-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-auth-register {
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

.btn-auth-register:hover {
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.5);
}

.auth-message {
    display: none;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
    animation: authMsgFade 0.3s ease-out;
}

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

.auth-msg-error {
    background: #fff5f5;
    color: #dc3545;
    border: 1px solid #ffdddd;
}

.auth-msg-success {
    background: #f0fff4;
    color: #22c55e;
    border: 1px solid #bbf7d0;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .auth-wrapper {
        flex-direction: column;
    }

    .auth-side {
        flex: none;
        padding: 2rem 1.5rem;
    }

    .auth-side-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .auth-side-content h2 {
        font-size: 1.3rem;
    }

    .auth-benefits {
        display: none;
    }

    .auth-form-wrap {
        padding: 1.5rem;
    }

    .auth-section {
        padding: 80px 0 40px;
    }

    .support-quick-grid,
    .support-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inquiry-form-grid {
        grid-template-columns: 1fr;
    }

    .support-inquiry-form {
        padding: 2rem;
    }

    .order-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-top {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .community-tabs {
        flex-wrap: wrap;
    }

    .board-header {
        display: none;
    }

    .board-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        padding: 1rem;
    }

    .board-col-no,
    .board-col-views {
        display: none;
    }

    .board-col-category,
    .board-col-author,
    .board-col-date {
        text-align: left;
        font-size: 0.8rem;
    }

    .community-search {
        flex-direction: column;
    }

    .search-input {
        width: 100%;
    }

    .order-form-grid {
        grid-template-columns: 1fr;
    }

    .order-info-grid {
        grid-template-columns: 1fr;
    }

    .guide-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .guide-cards {
        grid-template-columns: 1fr;
    }

    .guide-notice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* 뉴스 섹션 반응형 */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-main h2,
    .news-sidebar h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .news-item {
        flex-direction: column;
        gap: 1rem;
    }

    .news-item img {
        width: 100%;
        height: 200px;
    }

    .news-sidebar {
        border-top: 2px solid #e9ecef;
        padding-top: 2rem;
    }

    /* 푸터 반응형 */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        padding-bottom: 1.2rem;
        border-bottom: 1px solid #555;
        margin-bottom: 0.5rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .footer-section p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .footer-section ul li {
        margin-bottom: 0.4rem;
        font-size: 0.85rem;
    }

    .footer-section i {
        display: none;
    }

    .footer-bottom {
        padding-top: 1.2rem;
        font-size: 0.85rem;
    }

    .nav {
        padding: 0.6rem 1.5rem;
        height: 60px;
    }

    .nav-brand h2 {
        font-size: 1.1rem;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        margin: 0.2rem 0;
        width: 180px;
    }

    .hero {
        padding: 60px 0 40px 0;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .hero-description {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-description p {
        font-size: 0.95rem;
        margin: 0.4rem 0;
        justify-content: center;
        text-align: center;
    }

    .hero-buttons {
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-card {
        padding: 1.2rem 0.8rem;
    }

    .hero-card i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}

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

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 50px 0 30px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        padding: 1.2rem 0.8rem;
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .hero-description p {
        font-size: 0.85rem;
        margin: 0.3rem 0;
        justify-content: center;
        text-align: center;
    }

    .hero-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-top: 2rem;
    }

    .hero-card {
        padding: 1rem 0.5rem;
    }

    .hero-card i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .hero-card p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    /* 서비스 상세 페이지 반응형 */
    .service-overview {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .service-icon {
        width: 100px;
        height: 100px;
    }

    .service-icon i {
        font-size: 2.5rem;
    }

    .service-info h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .service-process .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .step-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .quote-request {
        padding: 2rem;
    }

    .quote-buttons {
        flex-direction: column;
        align-items: center;
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .related-item {
        padding: 1rem 0.5rem;
    }

    .related-item i {
        font-size: 1.5rem;
    }

    .related-item span {
        font-size: 0.8rem;
    }

    /* 갤러리 반응형 */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        height: auto;
        gap: 0.8rem;
    }

    .gallery-item.main-image {
        grid-column: 1 / 3;
        grid-row: 1;
        height: 200px;
    }

    .gallery-item {
        height: 150px;
    }

    .image-overlay {
        padding: 1rem;
    }

    .image-overlay h4 {
        font-size: 1rem;
    }

    .image-overlay p {
        font-size: 0.8rem;
    }

    .language-selector {
        margin-left: 0;
        margin-top: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .lang-link {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .hero-card {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .menu-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .menu-item {
        padding: 0.75rem 0.5rem;
    }

    .menu-item i {
        font-size: 1.25rem;
    }

    .menu-item h3 {
        font-size: 0.75rem;
    }

    .tracking-status {
        grid-template-columns: 1fr;
    }

    .tracking-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .tracking-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-cards {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .nav {
        padding: 1rem 15px;
    }

    /* 푸터 480px 이하 */
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.8rem;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        margin-bottom: 0;
        padding-bottom: 1rem;
    }

    .footer-section {
        padding-bottom: 0;
        border-bottom: none;
    }

    .footer-section h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .footer-section ul li,
    .footer-section p {
        font-size: 0.78rem;
    }
}
