/* Travel Design 페이지 스타일 */

/* 메인 비주얼 섹션 */
.main-visual {
    background-color: #f8f9fa;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,123,255,0.1) 0%, rgba(0,123,255,0.05) 100%);
    z-index: 0;
}

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

.main-title {
    font-family: 'Alex Brush', cursive;
    font-size: 4rem;
    color: #333;
    margin-bottom: 1.5rem;
    white-space: nowrap;
    font-weight: 400;
}

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

.description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* 서비스 섹션 */
.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1.5rem;
    background: rgba(0, 123, 255, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

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

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

/* 진행 과정 섹션 */
.process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(to right, #007bff, #00bfff);
    z-index: 1;
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #00bfff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.process-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.process-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* 상담 신청 섹션 */
.consultation-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #007bff, #00bfff);
    border: none;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0069d9, #00a8ff);
}

/* 반응형 스타일 */
@media (max-width: 991px) {
    .main-title {
        font-size: 2.8rem;
        white-space: normal;
    }
    
    .lead {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .main-visual {
        padding: 80px 0;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
    }
}

.notice {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1.5rem;
    font-weight: 300;
} 